diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm index bedc8234d9c9..79f40c89bb53 100644 --- a/code/__DEFINES/job.dm +++ b/code/__DEFINES/job.dm @@ -12,6 +12,7 @@ #define SQUAD_MARINE_INTEL "Intel" #define SQUAD_SOF "SOF" #define SQUAD_CBRN "CBRN" +#define SQUAD_FORECON "FORECON" // Job name defines #define JOB_SQUAD_MARINE "Rifleman" diff --git a/code/__pragmas.dm b/code/__pragmas.dm index 84fcc0dfc307..309883fbda20 100644 --- a/code/__pragmas.dm +++ b/code/__pragmas.dm @@ -21,6 +21,7 @@ #pragma InvalidOverride error #pragma DanglingVarType error #pragma MissingInterpolatedExpression error +#pragma InvalidIndexOperation error //3000-3999 #pragma EmptyBlock error diff --git a/code/_globalvars/global_lists.dm b/code/_globalvars/global_lists.dm index c054b9a4bf1f..c6957eefd22c 100644 --- a/code/_globalvars/global_lists.dm +++ b/code/_globalvars/global_lists.dm @@ -119,6 +119,34 @@ GLOBAL_LIST(chemical_reactions_filtered_list) //List of all /datum/chemical_reac GLOBAL_LIST(chemical_reactions_list) //List of all /datum/chemical_reaction datums indexed by reaction id. Used to search for the result instead of the components. GLOBAL_LIST(chemical_reagents_list) //List of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff GLOBAL_LIST(chemical_properties_list) //List of all /datum/chem_property datums indexed by property name +//list of all properties that conflict with each other. +GLOBAL_LIST_INIT_TYPED(conflicting_properties, /list, list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\ + PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\ + PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\ + PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\ + PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\ + PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\ + PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\ + PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING, + PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC, + PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \ + PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC, PROPERTY_MUSCLESTIMULATING = PROPERTY_NERVESTIMULATING)) +//list of all properties that combine into something else, now featured in global list +GLOBAL_LIST_INIT_TYPED(combining_properties, /list, list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\ + PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\ + PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\ + PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\ + PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\ + PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\ + PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\ + PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING),\ + PROPERTY_FIRE_PENETRATING = list(PROPERTY_OXYGENATING, PROPERTY_VISCOUS),\ + PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\ + PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\ + PROPERTY_ENCEPHALOPHRASIVE = list(PROPERTY_NERVESTIMULATING, PROPERTY_PSYCHOSTIMULATING))) //List of all id's from classed /datum/reagent datums indexed by class or tier. Used by chemistry generator and chem spawners. GLOBAL_LIST_INIT_TYPED(chemical_gen_classes_list, /list, list("C" = list(),"C1" = list(),"C2" = list(),"C3" = list(),"C4" = list(),"C5" = list(),"C6" = list(),"T1" = list(),"T2" = list(),"T3" = list(),"T4" = list(),"tau", list())) //properties generated in chemicals, helps to make sure the same property doesn't show up 10 times diff --git a/code/controllers/subsystem/communications.dm b/code/controllers/subsystem/communications.dm index c245b1012900..7397d98a0d52 100644 --- a/code/controllers/subsystem/communications.dm +++ b/code/controllers/subsystem/communications.dm @@ -115,6 +115,7 @@ Radiochat range: 1441 to 1489 (most devices refuse to be tune to other frequency #define SOF_FREQ 1472 #define PVST_FREQ 1473 #define CBRN_FREQ 1474 +#define FORECON_FREQ 1475 //Ship department channels #define SENTRY_FREQ 1480 @@ -171,6 +172,7 @@ GLOBAL_LIST_INIT(radiochannels, list( SQUAD_MARINE_CRYO = CRYO_FREQ, SQUAD_SOF = SOF_FREQ, SQUAD_CBRN = CBRN_FREQ, + SQUAD_FORECON = FORECON_FREQ, RADIO_CHANNEL_ALAMO = DS1_FREQ, RADIO_CHANNEL_NORMANDY = DS2_FREQ, @@ -278,6 +280,7 @@ SUBSYSTEM_DEF(radio) "[ECHO_FREQ]" = "echoradio", "[CRYO_FREQ]" = "cryoradio", "[CBRN_FREQ]" = "hcradio", + "[FORECON_FREQ]" = "hcradio", "[SOF_FREQ]" = "hcradio", "[HC_FREQ]" = "hcradio", "[PVST_FREQ]" = "pvstradio", diff --git a/code/datums/components/_component.dm b/code/datums/components/_component.dm index f356fc5c1077..24cf93ed119f 100644 --- a/code/datums/components/_component.dm +++ b/code/datums/components/_component.dm @@ -362,7 +362,8 @@ var/datum/component/C = dc[c_type] if(C) if(length(C)) - C = C[1] + var/list/component_list = C + C = component_list[1] if(C.type == c_type) return C return null diff --git a/code/datums/emergency_calls/cbrn.dm b/code/datums/emergency_calls/cbrn.dm index fc20f98f20b3..c5e97bfb2ccf 100644 --- a/code/datums/emergency_calls/cbrn.dm +++ b/code/datums/emergency_calls/cbrn.dm @@ -1,8 +1,8 @@ /datum/emergency_call/cbrn name = "CBRN (Squad)" - arrival_message = "A CBRN squad has been dispatched to your ship. Stand by." + arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival." objectives = "Handle the chemical, biological, radiological, or nuclear threat. Further orders may be provided." - home_base = /datum/lazy_template/ert/weyland_station + home_base = /datum/lazy_template/ert/uscm_station mob_min = 3 mob_max = 5 max_heavies = 0 @@ -41,7 +41,7 @@ /datum/emergency_call/cbrn/ert name = "CBRN (Distress)" - arrival_message = "Your distress signal has been received and we are dispatching the nearest CBRN squad to board with you now. Stand by." + arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival." probability = 10 /datum/emergency_call/cbrn/ert/New() diff --git a/code/datums/emergency_calls/contractor.dm b/code/datums/emergency_calls/contractor.dm index 05d6ab7b4671..6721abdf1862 100644 --- a/code/datums/emergency_calls/contractor.dm +++ b/code/datums/emergency_calls/contractor.dm @@ -87,7 +87,7 @@ /datum/emergency_call/contractors/covert name = "Military Contractors (Covert) (Hostile to WY)" mob_max = 7 - probability = 0 + probability = 20 max_medics = 1 max_engineers = 1 max_heavies = 1 diff --git a/code/datums/emergency_calls/ert_stations.dm b/code/datums/emergency_calls/ert_stations.dm index 312ceeaf9eed..5a129723bad0 100644 --- a/code/datums/emergency_calls/ert_stations.dm +++ b/code/datums/emergency_calls/ert_stations.dm @@ -15,3 +15,6 @@ /datum/lazy_template/ert/pizza_station map_name = "pizza_ert_station" + +/datum/lazy_template/ert/uscm_station + map_name = "uscm_ert_station" diff --git a/code/datums/emergency_calls/forecon.dm b/code/datums/emergency_calls/forecon.dm new file mode 100644 index 000000000000..98e6a1c27ec2 --- /dev/null +++ b/code/datums/emergency_calls/forecon.dm @@ -0,0 +1,62 @@ +/datum/emergency_call/forecon + name = "FORECON (Squad)" + arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by." + objectives = "Handle whatever threat is present. Further orders may be provided." + home_base = /datum/lazy_template/ert/weyland_station + probability = 0 + mob_min = 3 + mob_max = 6 + + max_heavies = 1 + max_medics = 1 + max_smartgunners = 1 + +/datum/emergency_call/forecon/create_member(datum/mind/new_mind, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/mob = new(spawn_loc) + new_mind.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/squad_leader, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Squad Leader!")) + + else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) + medics++ + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/tech, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Support Technician!")) + + else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN)) + smartgunners++ + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Smartgunner!")) + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/smartgunner, TRUE, TRUE) + + else if(heavies < max_heavies && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(mob.client, JOB_SQUAD_SPECIALIST)) + heavies++ + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Designated Marskman!")) + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/marksman, TRUE, TRUE) + + else + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/standard, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Rifleman!")) + + to_chat(mob, SPAN_ROLE_BODY("You are a member of the USCM's Force Reconnisance. FORECON is a force that specializes in special operations behind enemy lines, or conducting reconnisance in situations regular Marines are not expected to handle.")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + +/datum/emergency_call/forecon/platoon + name = "FORECON (Platoon)" + mob_min = 6 + mob_max = 30 + probability = 0 + max_medics = 6 + max_heavies = 1 + max_smartgunners = 2 + +/datum/emergency_call/forecon/platoon/New() + ..() + arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by." + objectives = "Handle whatever threat is present. Further orders may be provided." diff --git a/code/datums/supply_packs/restricted_equipment.dm b/code/datums/supply_packs/restricted_equipment.dm index 7979d21f9743..bc13d0fbd610 100644 --- a/code/datums/supply_packs/restricted_equipment.dm +++ b/code/datums/supply_packs/restricted_equipment.dm @@ -21,3 +21,23 @@ containertype = /obj/structure/closet/crate containername = "M4 pattern marine armor crate" group = "Restricted Equipment" + +/datum/supply_packs/intel_kit + name = "Field Intelligence Support Kit crate (x1 fulton pack, x1 data detector, x1 intel pamphlet, x1 large document pouch, 1x intel radio key)" + contains = list( + /obj/item/storage/box/kit/mini_intel, + ) + cost = 20 + containertype = /obj/structure/closet/crate + containername = "Field Intelligence Support Kit crate" + group = "Restricted Equipment" + +/datum/supply_packs/jtac_kit + name = "JTAC Radio Kit crate (x1 full flare gun belt, x2 M89-S signal flare packs, 1x laser designator, 1x jtac radio key, 1x radiopack)" + contains = list( + /obj/item/storage/box/kit/mini_jtac, + ) + cost = 30 + containertype = /obj/structure/closet/crate + containername = "JTAC Radio Kit crate" + group = "Restricted Equipment" diff --git a/code/game/area/admin_level.dm b/code/game/area/admin_level.dm index 49bbc43c0b9c..9dc43256f4de 100644 --- a/code/game/area/admin_level.dm +++ b/code/game/area/admin_level.dm @@ -125,6 +125,10 @@ name = "Weyland-Yutani Station" icon_state = "red" +/area/adminlevel/ert_station/uscm_station + name = "USCM Station" + icon_state = "green" + /area/adminlevel/ert_station/freelancer_station name = "Freelancer Station" icon_state = "yellow" diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm index 419f7d545fcf..75f6622506a9 100644 --- a/code/game/jobs/job/marine/squads.dm +++ b/code/game/jobs/job/marine/squads.dm @@ -221,6 +221,18 @@ roundstart = FALSE locked = TRUE +/datum/squad/marine/forecon + name = SQUAD_FORECON + equipment_color = "#32CD32" + chat_color = "#32CD32" + radio_freq = FORECON_FREQ + minimap_color = "#32CD32" + + active = FALSE + roundstart = FALSE + locked = TRUE + + //############################### UPP Squads /datum/squad/upp name = "Root" diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm index 58b3d8ea5e64..9288033d61d5 100644 --- a/code/game/machinery/computer/HolodeckControl.dm +++ b/code/game/machinery/computer/HolodeckControl.dm @@ -14,6 +14,12 @@ /turf/open/floor/holofloor/attackby(obj/item/W as obj, mob/user as mob) return +/turf/open/floor/holofloor/cult + icon_state = "cult" + +/turf/open/floor/holofloor/cult/south + dir = SOUTH + /turf/open/floor/holofloor/grass name = "lush grass" icon_state = "grass1" diff --git a/code/game/machinery/telecomms/presets.dm b/code/game/machinery/telecomms/presets.dm index 3997484f39e7..0c9e875534da 100644 --- a/code/game/machinery/telecomms/presets.dm +++ b/code/game/machinery/telecomms/presets.dm @@ -458,7 +458,7 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) id = "CentComm Receiver" network = "tcommsat" autolinkers = list("receiverCent") - freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ) + freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ, FORECON_FREQ) //Buses diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm index d4f56504be72..db173e7b1608 100644 --- a/code/game/machinery/vending/cm_vending.dm +++ b/code/game/machinery/vending/cm_vending.dm @@ -1307,7 +1307,8 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( var/obj/item/item_ref = myprod[3] var/priority = myprod[priority_index] if(islist(item_ref)) // multi-vending - item_ref = item_ref[1] + var/list/ref_list = item_ref + item_ref = ref_list[1] var/is_category = item_ref == null diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm index ac7b22b4e0a0..1e21f2f7256d 100644 --- a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm +++ b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm @@ -18,6 +18,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list( list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Bayonet", 0, /obj/item/attachable/bayonet, null, VENDOR_ITEM_REGULAR), list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null), list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), @@ -68,6 +69,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list( list("OTHER SUPPLIES", 0, null, null, null), list("Medical Helmet Optic", 5, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), + list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_REGULAR), list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED), list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), @@ -78,6 +80,10 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list( list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR), + list("Blowtorch", 5, /obj/item/tool/weldingtool, null, VENDOR_ITEM_REGULAR), + list("Wrench", 1, /obj/item/tool/wrench, null, VENDOR_ITEM_REGULAR), + list("Crowbar", 1, /obj/item/tool/crowbar, null, VENDOR_ITEM_REGULAR), + list("Entrenching Tool", 1, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_REGULAR), list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR) )) diff --git a/code/game/machinery/vending/vendor_types/intelligence_officer.dm b/code/game/machinery/vending/vendor_types/intelligence_officer.dm index 9baa685032de..73d54cbbffca 100644 --- a/code/game/machinery/vending/vendor_types/intelligence_officer.dm +++ b/code/game/machinery/vending/vendor_types/intelligence_officer.dm @@ -52,6 +52,9 @@ GLOBAL_LIST_INIT(cm_vending_gear_intelligence_officer, list( list("RADIO KEYS", 0, null, null, null), list("Intel Radio Encryption Key", 5, /obj/item/device/encryptionkey/intel, null, VENDOR_ITEM_REGULAR), + + list("SPARE INTEL KIT", 0, null, null, null), + list("Field Intelligence Support Kit (For untrained personnel)", 20, /obj/item/storage/box/kit/mini_intel, null, VENDOR_ITEM_REGULAR), )) /obj/structure/machinery/cm_vending/gear/intelligence_officer diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 320e44f3f503..e414ca3dafdd 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -897,6 +897,14 @@ ignore_z = TRUE has_hud = TRUE +/obj/item/device/radio/headset/distress/forecon + name = "\improper Force Recon headset" + desc = "A headset given to FORECON marines. Channels are as follows: :g - public, :v - marine command, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel" + frequency = FORECON_FREQ + initial_keys = list(/obj/item/device/encryptionkey/public, /obj/item/device/encryptionkey/mcom) + ignore_z = TRUE + has_hud = TRUE + /obj/item/device/radio/headset/distress/pmc/hvh desc = "A special headset used by corporate personnel. Channels are as follows: :o - colony." initial_keys = list(/obj/item/device/encryptionkey/colony, /obj/item/device/encryptionkey/WY) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 309c7ff20f8b..8c507dad18e3 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -340,6 +340,21 @@ FORENSIC SCANNER ex_potential = 0 int_potential = 0 rad_potential = 0 + + if(istype(O, /obj/item/ammo_magazine/flamer_tank)) + var/obj/item/ammo_magazine/flamer_tank/tank = O + if(!length(tank.reagents.reagent_list)) + to_chat(user, SPAN_NOTICE("No fuel detected in [O]")) + return + var/result + var/datum/reagent/chem = tank.reagents.reagent_list[1] + result += SPAN_BLUE("Fuel Statistics:") + result += SPAN_BLUE("
Intensity: [min(chem.intensityfire, tank.max_intensity)]") + result += SPAN_BLUE("
Duration: [min(chem.durationfire, tank.max_duration)]") + result += SPAN_BLUE("
Range: [min(chem.rangefire, tank.max_range)]") + to_chat(user, SPAN_NOTICE("[result]")) + return + if(istype(O,/obj/item/explosive)) var/obj/item/explosive/E = O if(!E.customizable) diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index c5a675b531d2..53b64cbedfad 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -1115,7 +1115,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new()) else if (href_list["rreq"]) var/ordernum = text2num(href_list["rreq"]) temp = "Invalid Request.
" - for(var/i=1, length(i<=GLOB.supply_controller.requestlist), i++) + for(var/i=1, i<=length(GLOB.supply_controller.requestlist), i++) var/datum/supply_order/SO = GLOB.supply_controller.requestlist[i] if(SO.ordernum == ordernum) GLOB.supply_controller.requestlist.Cut(i,i+1) diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index 0a1842134480..096b39e988d2 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -90,12 +90,124 @@ /turf/open/floor/plating/make_plating() return +/turf/open/floor/plating/burnt_platingdmg3 + burnt = TRUE + icon_state = "platingdmg3" + +/turf/open/floor/plating/burnt_platingdmg3/west + dir = WEST + +/turf/open/floor/plating/asteroidwarning + icon_state = "asteroidwarning" + +/turf/open/floor/plating/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/warnplate + icon_state = "warnplate" + +/turf/open/floor/plating/warnplate/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/plating/asteroidfloor/north + dir = NORTH + +/turf/open/floor/plating/asteroidwarning/north + dir = NORTH + +/turf/open/floor/plating/warnplate/north + dir = NORTH + +/turf/open/floor/plating/warnplatecorner + icon_state = "warnplatecorner" + +/turf/open/floor/plating/warnplatecorner/north + dir = NORTH + +/turf/open/floor/plating/asteroidwarning/east + dir = EAST + +/turf/open/floor/plating/warnplate/east + dir = EAST + +/turf/open/floor/plating/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/plating/warnplate/northeast + dir = NORTHEAST + +/turf/open/floor/plating/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/warnplate/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/asteroidwarning/west + dir = WEST + +/turf/open/floor/plating/platingdmg2 + icon_state = "platingdmg2" + +/turf/open/floor/plating/platingdmg2/west + dir = WEST + +/turf/open/floor/plating/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/plating/platingdmg3/west + dir = WEST + +/turf/open/floor/plating/warnplate/west + dir = WEST + +/turf/open/floor/plating/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/plating/warnplate/northwest + dir = NORTHWEST + +/turf/open/floor/plating/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/plating/platebot + icon_state = "platebot" + +/turf/open/floor/plating/platebotc + icon_state = "platebotc" + +/turf/open/floor/plating/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/plating/wood + icon_state = "wood" + +/turf/open/floor/plating/wood_broken2 + icon_state = "wood-broken2" + +/turf/open/floor/plating/wood_broken3 + icon_state = "wood-broken3" + +/turf/open/floor/plating/wood_broken4 + icon_state = "wood-broken4" + +/turf/open/floor/plating/wood_broken5 + icon_state = "wood-broken5" + +/turf/open/floor/plating/wood_broken6 + icon_state = "wood-broken6" + /turf/open/floor/plating/prison icon = 'icons/turf/floors/prison.dmi' /turf/open/floor/plating/almayer icon = 'icons/turf/almayer.dmi' +/turf/open/floor/plating/almayer/no_build + allow_construction = FALSE + /turf/open/floor/plating/airless icon_state = "plating" name = "airless plating" @@ -112,6 +224,33 @@ . = ..() name = "plating" +/turf/open/floor/plating/icefloor/warnplate + icon_state = "warnplate" + +/turf/open/floor/plating/icefloor/warnplate/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/icefloor/warnplate/north + dir = NORTH + +/turf/open/floor/plating/icefloor/warnplate/east + dir = EAST + +/turf/open/floor/plating/icefloor/warnplate/northeast + dir = NORTHEAST + +/turf/open/floor/plating/icefloor/warnplate/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/icefloor/warnplate/west + dir = WEST + +/turf/open/floor/plating/icefloor/warnplate/northwest + dir = NORTHWEST + +/turf/open/floor/plating/icefloor/asteroidplating + icon_state = "asteroidplating" + /// Visually like plating+catwalks but without overlaying or interactions - mainly for Reqs Elevator /turf/open/floor/plating/bare_catwalk name = "catwalk" @@ -218,6 +357,368 @@ icon_state = "default" plating_type = /turf/open/floor/plating/almayer +/turf/open/floor/almayer/pod_landing_floor + desc = "There's a hatch above it, presumably to allow pods to drop in." + icon_state = "test_floor4" + name = "pod landing floor" + +/turf/open/floor/almayer/blue + icon_state = "blue" + +/turf/open/floor/almayer/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/cargo + icon_state = "cargo" + +/turf/open/floor/almayer/cargo/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/emerald + icon_state = "emerald" + +/turf/open/floor/almayer/emerald/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/green + icon_state = "green" + +/turf/open/floor/almayer/green/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/orange + icon_state = "orange" + +/turf/open/floor/almayer/orange/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/red + icon_state = "red" + +/turf/open/floor/almayer/red/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/silver + icon_state = "silver" + +/turf/open/floor/almayer/silver/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/sterile_green_side + icon_state = "sterile_green_side" + +/turf/open/floor/almayer/sterile_green_side/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/blue/north + dir = NORTH + +/turf/open/floor/almayer/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/almayer/bluecorner/north + dir = NORTH + +/turf/open/floor/almayer/cargo_arrow + icon_state = "cargo_arrow" + +/turf/open/floor/almayer/cargo_arrow/north + dir = NORTH + +/turf/open/floor/almayer/emerald/north + dir = NORTH + +/turf/open/floor/almayer/emeraldcorner + icon_state = "emeraldcorner" + +/turf/open/floor/almayer/emeraldcorner/north + dir = NORTH + +/turf/open/floor/almayer/green/north + dir = NORTH + +/turf/open/floor/almayer/greencorner + icon_state = "greencorner" + +/turf/open/floor/almayer/greencorner/north + dir = NORTH + +/turf/open/floor/almayer/orange/north + dir = NORTH + +/turf/open/floor/almayer/orangecorner + icon_state = "orangecorner" + +/turf/open/floor/almayer/orangecorner/north + dir = NORTH + +/turf/open/floor/almayer/plating_striped + icon_state = "plating_striped" + +/turf/open/floor/almayer/plating_striped/north + dir = NORTH + +/turf/open/floor/almayer/red/north + dir = NORTH + +/turf/open/floor/almayer/redcorner + icon_state = "redcorner" + +/turf/open/floor/almayer/redcorner/north + dir = NORTH + +/turf/open/floor/almayer/silver/north + dir = NORTH + +/turf/open/floor/almayer/silvercorner + icon_state = "silvercorner" + +/turf/open/floor/almayer/silvercorner/north + dir = NORTH + +/turf/open/floor/almayer/sterile_green_corner + icon_state = "sterile_green_corner" + +/turf/open/floor/almayer/sterile_green_corner/north + dir = NORTH + +/turf/open/floor/almayer/sterile_green_side/north + dir = NORTH + +/turf/open/floor/almayer/w_y0 + icon_state = "w-y0" + +/turf/open/floor/almayer/w_y0/north + dir = NORTH + +/turf/open/floor/almayer/w_y1 + icon_state = "w-y1" + +/turf/open/floor/almayer/w_y1/north + dir = NORTH + +/turf/open/floor/almayer/w_y2 + icon_state = "w-y2" + +/turf/open/floor/almayer/w_y2/north + dir = NORTH + +/turf/open/floor/almayer/green/south + dir = SOUTH + +/turf/open/floor/almayer/blue/east + dir = EAST + +/turf/open/floor/almayer/bluecorner/east + dir = EAST + +/turf/open/floor/almayer/cargo_arrow/east + dir = EAST + +/turf/open/floor/almayer/emerald/east + dir = EAST + +/turf/open/floor/almayer/emeraldcorner/east + dir = EAST + +/turf/open/floor/almayer/green/east + dir = EAST + +/turf/open/floor/almayer/greencorner/east + dir = EAST + +/turf/open/floor/almayer/orange/east + dir = EAST + +/turf/open/floor/almayer/orangecorner/east + dir = EAST + +/turf/open/floor/almayer/plating_striped/east + dir = EAST + +/turf/open/floor/almayer/red/east + dir = EAST + +/turf/open/floor/almayer/redcorner/east + dir = EAST + +/turf/open/floor/almayer/silver/east + dir = EAST + +/turf/open/floor/almayer/silvercorner/east + dir = EAST + +/turf/open/floor/almayer/sterile_green_corner/east + dir = EAST + +/turf/open/floor/almayer/sterile_green_side/east + dir = EAST + +/turf/open/floor/almayer/blue/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/emerald/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/green/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/orange/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/plating + icon_state = "plating" + +/turf/open/floor/almayer/plating/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/red/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/silver/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/sterile_green_side/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/emerald/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/green/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/orange/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/red/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/silver/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/sterile_green_side/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/blue/west + dir = WEST + +/turf/open/floor/almayer/bluecorner/west + dir = WEST + +/turf/open/floor/almayer/cargo_arrow/west + dir = WEST + +/turf/open/floor/almayer/emerald/west + dir = WEST + +/turf/open/floor/almayer/emeraldcorner/west + dir = WEST + +/turf/open/floor/almayer/green/west + dir = WEST + +/turf/open/floor/almayer/greencorner/west + dir = WEST + +/turf/open/floor/almayer/orange/west + dir = WEST + +/turf/open/floor/almayer/orangecorner/west + dir = WEST + +/turf/open/floor/almayer/plating_striped/west + dir = WEST + +/turf/open/floor/almayer/red/west + dir = WEST + +/turf/open/floor/almayer/redcorner/west + dir = WEST + +/turf/open/floor/almayer/silver/west + dir = WEST + +/turf/open/floor/almayer/silvercorner/west + dir = WEST + +/turf/open/floor/almayer/sterile_green_corner/west + dir = WEST + +/turf/open/floor/almayer/sterile_green_side/west + dir = WEST + +/turf/open/floor/almayer/blue/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/emerald/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/green/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/orange/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/red/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/silver/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/sterile_green_side/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/ai_floors + icon_state = "ai_floors" + +/turf/open/floor/almayer/bluefull + icon_state = "bluefull" + +/turf/open/floor/almayer/dark_sterile + icon_state = "dark_sterile" + +/turf/open/floor/almayer/emeraldfull + icon_state = "emeraldfull" + +/turf/open/floor/almayer/floor + icon_state = "floor" + +/turf/open/floor/almayer/greenfull + icon_state = "greenfull" + +/turf/open/floor/almayer/mono + icon_state = "mono" + +/turf/open/floor/almayer/orangefull + icon_state = "orangefull" + +/turf/open/floor/almayer/plate + icon_state = "plate" + +/turf/open/floor/almayer/redfull + icon_state = "redfull" + +/turf/open/floor/almayer/silverfull + icon_state = "silverfull" + +/turf/open/floor/almayer/sterile + icon_state = "sterile" + +/turf/open/floor/almayer/sterile_green + icon_state = "sterile_green" + +/turf/open/floor/almayer/tcomms + icon_state = "tcomms" + +/turf/open/floor/almayer/test_floor4 + icon_state = "test_floor4" + +/turf/open/floor/almayer/test_floor5 + icon_state = "test_floor5" + /// Admin level thunderdome floor. Doesn't get damaged by explosions and such for pristine testing /turf/open/floor/tdome icon = 'icons/turf/almayer.dmi' @@ -225,6 +726,39 @@ plating_type = /turf/open/floor/tdome hull_floor = TRUE +/turf/open/floor/tdome/w_y0 + icon_state = "w-y0" + +/turf/open/floor/tdome/w_y0/north + dir = NORTH + +/turf/open/floor/tdome/w_y1 + icon_state = "w-y1" + +/turf/open/floor/tdome/w_y1/north + dir = NORTH + +/turf/open/floor/tdome/w_y2 + icon_state = "w-y2" + +/turf/open/floor/tdome/w_y2/north + dir = NORTH + +/turf/open/floor/tdome/northeast + dir = NORTHEAST + +/turf/open/floor/tdome/bluefull + icon_state = "bluefull" + +/turf/open/floor/tdome/redfull + icon_state = "redfull" + +/turf/open/floor/tdome/tcomms + icon_state = "tcomms" + +/turf/open/floor/tdome/test_floor4 + icon_state = "test_floor4" + /// Base type of the requisitions and vehicle bay elevator pits. /turf/open/floor/almayer/empty name = "\proper empty space" @@ -314,10 +848,49 @@ /turf/open/floor/almayer/uscm/directional icon_state = "logo_directional" +/turf/open/floor/almayer/uscm/directional/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/uscm/directional/north + dir = NORTH + +/turf/open/floor/almayer/uscm/directional/east + dir = EAST + +/turf/open/floor/almayer/uscm/directional/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/uscm/directional/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/uscm/directional/logo_c + icon_state = "logo_c" + +/turf/open/floor/almayer/uscm/directional/logo_c/west + dir = WEST + +/turf/open/floor/almayer/uscm/directional/west + dir = WEST + +/turf/open/floor/almayer/uscm/directional/northwest + dir = NORTHWEST + /turf/open/floor/almayer/no_build allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/no_build/ai_floors + icon_state = "ai_floors" + +/turf/open/floor/almayer/no_build/plating + icon_state = "plating" + +/turf/open/floor/almayer/no_build/plate + icon_state = "plate" + +/turf/open/floor/almayer/no_build/test_floor4 + icon_state = "test_floor4" + /turf/open/floor/almayer/aicore icon = 'icons/turf/floors/aicore.dmi' icon_state = "ai_floor1" @@ -344,10 +917,44 @@ allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/aicore/no_build/ai_arrow + icon_state = "ai_arrow" + +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east + dir = EAST + +/turf/open/floor/almayer/aicore/no_build/ai_silver + icon_state = "ai_silver" + +/turf/open/floor/almayer/aicore/no_build/ai_silver/east + dir = EAST + +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west + dir = WEST + +/turf/open/floor/almayer/aicore/no_build/ai_silver/west + dir = WEST + +/turf/open/floor/almayer/aicore/no_build/ai_cargo + icon_state = "ai_cargo" + +/turf/open/floor/almayer/aicore/no_build/ai_floor2 + icon_state = "ai_floor2" + +/turf/open/floor/almayer/aicore/no_build/ai_plates + icon_state = "ai_plates" + /turf/open/floor/almayer/aicore/glowing/no_build allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range + icon_state = "ai_floor3" + light_range = 4 + +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3 + icon_state = "ai_floor3" + // RESEARCH STUFF /turf/open/floor/almayer/research/containment/entrance icon_state = "containment_entrance" @@ -379,7 +986,26 @@ /turf/open/floor/almayer/research/containment/corner_var2 icon_state = "containment_corner_variant_2" +/turf/open/floor/almayer/research/containment/corner_var1/east + dir = EAST +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2 + icon_state = "containment_corner_variant_2" + +/turf/open/floor/almayer/research/containment/corner/north + dir = NORTH + +/turf/open/floor/almayer/research/containment/corner/east + dir = EAST + +/turf/open/floor/almayer/research/containment/entrance/west + dir = WEST + +/turf/open/floor/almayer/research/containment/floor2/north + dir = NORTH + +/turf/open/floor/almayer/research/containment/floor2/west + dir = WEST @@ -392,7 +1018,29 @@ name = "hull" hull_floor = TRUE +/turf/open/floor/almayer_hull/outerhull_dir + icon_state = "outerhull_dir" + +/turf/open/floor/almayer_hull/outerhull_dir/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer_hull/outerhull_dir/north + dir = NORTH +/turf/open/floor/almayer_hull/outerhull_dir/east + dir = EAST + +/turf/open/floor/almayer_hull/outerhull_dir/northeast + dir = NORTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir/west + dir = WEST + +/turf/open/floor/almayer_hull/outerhull_dir/northwest + dir = NORTHWEST @@ -413,14 +1061,34 @@ . = ..() name = "floor" +/turf/open/floor/airless/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/airless/asteroidfloor/northeast + dir = NORTHEAST + /turf/open/floor/icefloor icon_state = "floor" name = "ice colony floor" plating_type = /turf/open/floor/plating/icefloor -/turf/open/floor/icefloor/Initialize(mapload, ...) - . = ..() - name = "floor" +/turf/open/floor/icefloor/shuttle_floor6 + icon = 'icons/turf/shuttle.dmi' + icon_state = "floor6" + +/turf/open/floor/icefloor/shuttle_floor7 + icon = 'icons/turf/shuttle.dmi' + icon_state = "floor7" + +/turf/open/floor/icefloor/shuttle_vfloor + icon = 'icons/turf/shuttle.dmi' + icon_state = "vfloor" + +/turf/open/floor/icefloor/ramptop + icon_state = "ramptop" + +/turf/open/floor/icefloor/rockvault + icon_state = "rockvault" /turf/open/floor/wood name = "wooden floor" @@ -436,6 +1104,27 @@ desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high-pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know." tile_type = /obj/item/stack/tile/wood/fake +/turf/open/floor/wood/wood_broken + icon_state = "wood-broken" + +/turf/open/floor/wood/wood_broken2 + icon_state = "wood-broken2" + +/turf/open/floor/wood/wood_broken3 + icon_state = "wood-broken3" + +/turf/open/floor/wood/wood_broken4 + icon_state = "wood-broken4" + +/turf/open/floor/wood/wood_broken5 + icon_state = "wood-broken5" + +/turf/open/floor/wood/wood_broken6 + icon_state = "wood-broken6" + +/turf/open/floor/wood/wood_broken7 + icon_state = "wood-broken7" + /turf/open/floor/vault icon_state = "rockvault" @@ -453,6 +1142,9 @@ burnable_tile = FALSE baseturfs = /turf/open/floor +/turf/open/floor/engine/simulator_center + color = "#AAAAAA" + /turf/open/floor/engine/make_plating() return @@ -505,6 +1197,18 @@ icon = 'icons/turf/floors/floors.dmi' icon_state = "bcircuit" +/turf/open/floor/bluegrid/bcircuitoff + icon_state = "bcircuitoff" + +/turf/open/floor/bluegrid/damaged3 + icon_state = "damaged3" + +/turf/open/floor/bluegrid/damaged4 + icon_state = "damaged4" + +/turf/open/floor/bluegrid/damaged5 + icon_state = "damaged5" + /turf/open/floor/greengrid icon = 'icons/turf/floors/floors.dmi' icon_state = "gcircuit" @@ -543,6 +1247,7 @@ /turf/open/floor/carpet name = "carpet" + desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft." icon_state = "carpet" tile_type = /obj/item/stack/tile/carpet tool_flags = REMOVE_SCREWDRIVER @@ -616,9 +1321,48 @@ FF.update_icon() // So siding get updated properly return ..() +/turf/open/floor/carpet/bcarpet01 + icon_state = "bcarpet01" + +/turf/open/floor/carpet/bcarpet02 + icon_state = "bcarpet02" + +/turf/open/floor/carpet/bcarpet03 + icon_state = "bcarpet03" + +/turf/open/floor/carpet/bcarpet07 + icon_state = "bcarpet07" + +/turf/open/floor/carpet/bcarpet08 + icon_state = "bcarpet08" + +/turf/open/floor/carpet/bcarpet09 + icon_state = "bcarpet09" + /turf/open/floor/carpet/edge icon_state = "carpetside" +/turf/open/floor/carpet/edge/southwest + dir = SOUTHWEST + +/turf/open/floor/carpet/edge/north + dir = NORTH + +/turf/open/floor/carpet/edge/east + dir = EAST + +/turf/open/floor/carpet/edge/northeast + dir = NORTHEAST + +/turf/open/floor/carpet/edge/southeast + dir = SOUTHEAST + +/turf/open/floor/carpet/edge/west + dir = WEST + +/turf/open/floor/carpet/edge/northwest + dir = NORTHWEST + // Start Prison tiles /turf/open/floor/prison @@ -633,8 +1377,713 @@ icon = 'icons/turf/floors/carpet_manual.dmi'//I dunno man, CM-ified carpet sprites are placed manually and I can't be bothered to write a new system for 'em. icon_state = "single" -// Mechbay -/turf/open/floor/mech_bay_recharge_floor +/turf/open/floor/prison/chapel_carpet/doubleside + icon_state = "doubleside" + +/turf/open/floor/prison/chapel_carpet/doubleside/north + dir = NORTH + +/turf/open/floor/prison/blue + icon_state = "blue" + +/turf/open/floor/prison/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/bright_clean + icon_state = "bright_clean" + +/turf/open/floor/prison/bright_clean/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/bright_clean2 + icon_state = "bright_clean2" + +/turf/open/floor/prison/bright_clean2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/bright_clean_marked + icon_state = "bright_clean_marked" + +/turf/open/floor/prison/bright_clean_marked/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/damaged1 + icon_state = "damaged1" + +/turf/open/floor/prison/damaged1/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/damaged2 + icon_state = "damaged2" + +/turf/open/floor/prison/damaged2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrown2 + icon_state = "darkbrown2" + +/turf/open/floor/prison/darkbrown2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrown3 + icon_state = "darkbrown3" + +/turf/open/floor/prison/darkbrown3/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrowncorners2 + icon_state = "darkbrowncorners2" + +/turf/open/floor/prison/darkbrowncorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkpurple2 + icon_state = "darkpurple2" + +/turf/open/floor/prison/darkpurple2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkred2 + icon_state = "darkred2" + +/turf/open/floor/prison/darkred2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkredcorners2 + icon_state = "darkredcorners2" + +/turf/open/floor/prison/darkredcorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkredfull2 + icon_state = "darkredfull2" + +/turf/open/floor/prison/darkredfull2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkyellow2 + icon_state = "darkyellow2" + +/turf/open/floor/prison/darkyellow2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkyellowcorners2 + icon_state = "darkyellowcorners2" + +/turf/open/floor/prison/darkyellowcorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/floor_marked + icon_state = "floor_marked" + +/turf/open/floor/prison/floor_marked/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/floor_plate + icon_state = "floor_plate" + +/turf/open/floor/prison/floor_plate/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/green + icon_state = "green" + +/turf/open/floor/prison/green/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/greenblue + icon_state = "greenblue" + +/turf/open/floor/prison/greenblue/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/kitchen + icon_state = "kitchen" + +/turf/open/floor/prison/kitchen/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/red + icon_state = "red" + +/turf/open/floor/prison/red/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/sterile_white + icon_state = "sterile_white" + +/turf/open/floor/prison/sterile_white/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitegreen + icon_state = "whitegreen" + +/turf/open/floor/prison/whitegreen/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitegreenfull + icon_state = "whitegreenfull" + +/turf/open/floor/prison/whitegreenfull/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitepurple + icon_state = "whitepurple" + +/turf/open/floor/prison/whitepurple/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitered + icon_state = "whitered" + +/turf/open/floor/prison/whitered/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/yellow + icon_state = "yellow" + +/turf/open/floor/prison/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/yellowfull + icon_state = "yellowfull" + +/turf/open/floor/prison/yellowfull/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/blue/north + dir = NORTH + +/turf/open/floor/prison/blue_plate + icon_state = "blue_plate" + +/turf/open/floor/prison/blue_plate/north + dir = NORTH + +/turf/open/floor/prison/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/prison/bluecorner/north + dir = NORTH + +/turf/open/floor/prison/cell_stripe + icon_state = "cell_stripe" + +/turf/open/floor/prison/cell_stripe/north + dir = NORTH + +/turf/open/floor/prison/darkbrown2/north + dir = NORTH + +/turf/open/floor/prison/darkbrown3/north + dir = NORTH + +/turf/open/floor/prison/darkbrowncorners2/north + dir = NORTH + +/turf/open/floor/prison/darkbrowncorners3 + icon_state = "darkbrowncorners3" + +/turf/open/floor/prison/darkbrowncorners3/north + dir = NORTH + +/turf/open/floor/prison/darkpurple2/north + dir = NORTH + +/turf/open/floor/prison/darkpurplecorners2 + icon_state = "darkpurplecorners2" + +/turf/open/floor/prison/darkpurplecorners2/north + dir = NORTH + +/turf/open/floor/prison/darkred2/north + dir = NORTH + +/turf/open/floor/prison/darkredcorners2/north + dir = NORTH + +/turf/open/floor/prison/darkyellow2/north + dir = NORTH + +/turf/open/floor/prison/darkyellowcorners2/north + dir = NORTH + +/turf/open/floor/prison/green/north + dir = NORTH + +/turf/open/floor/prison/greenblue/north + dir = NORTH + +/turf/open/floor/prison/greenbluecorner + icon_state = "greenbluecorner" + +/turf/open/floor/prison/greenbluecorner/north + dir = NORTH + +/turf/open/floor/prison/greencorner + icon_state = "greencorner" + +/turf/open/floor/prison/greencorner/north + dir = NORTH + +/turf/open/floor/prison/rampbottom + icon_state = "rampbottom" + +/turf/open/floor/prison/rampbottom/north + dir = NORTH + +/turf/open/floor/prison/red/north + dir = NORTH + +/turf/open/floor/prison/redcorner + icon_state = "redcorner" + +/turf/open/floor/prison/redcorner/north + dir = NORTH + +/turf/open/floor/prison/whitegreen/north + dir = NORTH + +/turf/open/floor/prison/whitegreencorner + icon_state = "whitegreencorner" + +/turf/open/floor/prison/whitegreencorner/north + dir = NORTH + +/turf/open/floor/prison/whitepurple/north + dir = NORTH + +/turf/open/floor/prison/whitepurplecorner + icon_state = "whitepurplecorner" + +/turf/open/floor/prison/whitepurplecorner/north + dir = NORTH + +/turf/open/floor/prison/whitered/north + dir = NORTH + +/turf/open/floor/prison/yellow/north + dir = NORTH + +/turf/open/floor/prison/yellowcorner + icon_state = "yellowcorner" + +/turf/open/floor/prison/yellowcorner/north + dir = NORTH + +/turf/open/floor/prison/sterile_white/south + dir = SOUTH + +/turf/open/floor/prison/blue/east + dir = EAST + +/turf/open/floor/prison/blue_plate/east + dir = EAST + +/turf/open/floor/prison/bluecorner/east + dir = EAST + +/turf/open/floor/prison/cell_stripe/east + dir = EAST + +/turf/open/floor/prison/darkbrown2/east + dir = EAST + +/turf/open/floor/prison/darkbrown3/east + dir = EAST + +/turf/open/floor/prison/darkbrowncorners2/east + dir = EAST + +/turf/open/floor/prison/darkbrowncorners3/east + dir = EAST + +/turf/open/floor/prison/darkpurple2/east + dir = EAST + +/turf/open/floor/prison/darkpurplecorners2/east + dir = EAST + +/turf/open/floor/prison/darkred2/east + dir = EAST + +/turf/open/floor/prison/darkredcorners2/east + dir = EAST + +/turf/open/floor/prison/darkyellow2/east + dir = EAST + +/turf/open/floor/prison/darkyellowcorners2/east + dir = EAST + +/turf/open/floor/prison/darkyellowfull2 + icon_state = "darkyellowfull2" + +/turf/open/floor/prison/darkyellowfull2/east + dir = EAST + +/turf/open/floor/prison/green/east + dir = EAST + +/turf/open/floor/prison/greenblue/east + dir = EAST + +/turf/open/floor/prison/greenbluecorner/east + dir = EAST + +/turf/open/floor/prison/greencorner/east + dir = EAST + +/turf/open/floor/prison/greenfull + icon_state = "greenfull" + +/turf/open/floor/prison/greenfull/east + dir = EAST + +/turf/open/floor/prison/rampbottom/east + dir = EAST + +/turf/open/floor/prison/red/east + dir = EAST + +/turf/open/floor/prison/redcorner/east + dir = EAST + +/turf/open/floor/prison/whitegreen/east + dir = EAST + +/turf/open/floor/prison/whitegreencorner/east + dir = EAST + +/turf/open/floor/prison/whitepurple/east + dir = EAST + +/turf/open/floor/prison/whitepurplecorner/east + dir = EAST + +/turf/open/floor/prison/whitered/east + dir = EAST + +/turf/open/floor/prison/whiteredcorner + icon_state = "whiteredcorner" + +/turf/open/floor/prison/whiteredcorner/east + dir = EAST + +/turf/open/floor/prison/yellow/east + dir = EAST + +/turf/open/floor/prison/yellowcorner/east + dir = EAST + +/turf/open/floor/prison/blue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkbrown2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkpurple2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkred2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkyellow2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/green/northeast + dir = NORTHEAST + +/turf/open/floor/prison/greenblue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/red/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitegreen/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitepurple/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitered/northeast + dir = NORTHEAST + +/turf/open/floor/prison/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/prison/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkbrown2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkpurple2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkred2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkyellow2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/green/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/greenblue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/red/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitegreen/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitepurple/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitered/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/blue/west + dir = WEST + +/turf/open/floor/prison/blue_plate/west + dir = WEST + +/turf/open/floor/prison/bluecorner/west + dir = WEST + +/turf/open/floor/prison/bluefull + icon_state = "bluefull" + +/turf/open/floor/prison/bluefull/west + dir = WEST + +/turf/open/floor/prison/cell_stripe/west + dir = WEST + +/turf/open/floor/prison/darkbrown2/west + dir = WEST + +/turf/open/floor/prison/darkbrown3/west + dir = WEST + +/turf/open/floor/prison/darkbrowncorners2/west + dir = WEST + +/turf/open/floor/prison/darkbrowncorners3/west + dir = WEST + +/turf/open/floor/prison/darkpurple2/west + dir = WEST + +/turf/open/floor/prison/darkpurplecorners2/west + dir = WEST + +/turf/open/floor/prison/darkred2/west + dir = WEST + +/turf/open/floor/prison/darkredcorners2/west + dir = WEST + +/turf/open/floor/prison/darkyellow2/west + dir = WEST + +/turf/open/floor/prison/darkyellowcorners2/west + dir = WEST + +/turf/open/floor/prison/floor_marked/west + dir = WEST + +/turf/open/floor/prison/green/west + dir = WEST + +/turf/open/floor/prison/greenblue/west + dir = WEST + +/turf/open/floor/prison/greenbluecorner/west + dir = WEST + +/turf/open/floor/prison/greencorner/west + dir = WEST + +/turf/open/floor/prison/rampbottom/west + dir = WEST + +/turf/open/floor/prison/red/west + dir = WEST + +/turf/open/floor/prison/redcorner/west + dir = WEST + +/turf/open/floor/prison/sterile_white/west + dir = WEST + +/turf/open/floor/prison/whitegreen/west + dir = WEST + +/turf/open/floor/prison/whitegreencorner/west + dir = WEST + +/turf/open/floor/prison/whitepurple/west + dir = WEST + +/turf/open/floor/prison/whitepurplecorner/west + dir = WEST + +/turf/open/floor/prison/whitered/west + dir = WEST + +/turf/open/floor/prison/whiteredcorner/west + dir = WEST + +/turf/open/floor/prison/yellow/west + dir = WEST + +/turf/open/floor/prison/yellowcorner/west + dir = WEST + +/turf/open/floor/prison/west + dir = WEST + +/turf/open/floor/prison/blue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkbrown2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkbrown3/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkpurple2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkpurplefull2 + icon_state = "darkpurplefull2" + +/turf/open/floor/prison/darkpurplefull2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkred2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkyellow2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/green/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenblue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenfull/northwest + dir = NORTHWEST + +/turf/open/floor/prison/red/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitegreen/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitepurple/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitered/northwest + dir = NORTHWEST + +/turf/open/floor/prison/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/prison/damaged3 + icon_state = "damaged3" + +/turf/open/floor/prison/darkbrownfull2 + icon_state = "darkbrownfull2" + +/turf/open/floor/prison/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/prison/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/prison/greenblue/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/greenblue/north + dir = NORTH + +/turf/open/floor/prison/greenblue/east + dir = EAST + +/turf/open/floor/prison/greenblue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/greenblue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/greenblue/west + dir = WEST + +/turf/open/floor/prison/greenblue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenbluecorner/east + dir = EAST + +/turf/open/floor/prison/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/prison/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/prison/platingdmg2 + icon_state = "platingdmg2" + +/turf/open/floor/prison/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/prison/red/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/red/north + dir = NORTH + +/turf/open/floor/prison/red/east + dir = EAST + +/turf/open/floor/prison/red/northeast + dir = NORTHEAST + +/turf/open/floor/prison/red/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/red/west + dir = WEST + +/turf/open/floor/prison/red/northwest + dir = NORTHWEST + +/turf/open/floor/prison/redcorner/north + dir = NORTH + +/turf/open/floor/prison/redcorner/east + dir = EAST + +/turf/open/floor/prison/redfull + icon_state = "redfull" + +/turf/open/floor/prison/whitepurplefull + icon_state = "whitepurplefull" + +// Mechbay +/turf/open/floor/mech_bay_recharge_floor name = "Mech Bay Recharge Station" icon = 'icons/obj/structures/props/mech.dmi' icon_state = "recharge_floor" @@ -645,6 +2094,8 @@ ChangeTurf(/turf/open/floor/plating) broken = TRUE +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights + name = "shuttle landing lights" /turf/open/floor/interior icon = 'icons/turf/floors/interior.dmi' @@ -677,3 +2128,1446 @@ /turf/open/floor/corsat icon = 'icons/turf/floors/corsat.dmi' icon_state = "plating" + +/turf/open/floor/corsat/blue + icon_state = "blue" + +/turf/open/floor/corsat/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/bluegrey + icon_state = "bluegrey" + +/turf/open/floor/corsat/bluegrey/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/brown + icon_state = "brown" + +/turf/open/floor/corsat/brown/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/corsat_teleporter_static + icon_state = "corsat_teleporter_static" + +/turf/open/floor/corsat/corsat_teleporter_static/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/darkgreen + icon_state = "darkgreen" + +/turf/open/floor/corsat/darkgreen/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/green + icon_state = "green" + +/turf/open/floor/corsat/green/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/greenwhite + icon_state = "greenwhite" + +/turf/open/floor/corsat/greenwhite/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/purple + icon_state = "purple" + +/turf/open/floor/corsat/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/purplewhite + icon_state = "purplewhite" + +/turf/open/floor/corsat/purplewhite/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/red + icon_state = "red" + +/turf/open/floor/corsat/red/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/tcomms + icon_state = "tcomms" + +/turf/open/floor/corsat/tcomms/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/white + icon_state = "white" + +/turf/open/floor/corsat/white/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/whitebluefull + icon_state = "whitebluefull" + +/turf/open/floor/corsat/whitebluefull/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/whitetan + icon_state = "whitetan" + +/turf/open/floor/corsat/whitetan/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/yellow + icon_state = "yellow" + +/turf/open/floor/corsat/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/blue/north + dir = NORTH + +/turf/open/floor/corsat/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/corsat/bluecorner/north + dir = NORTH + +/turf/open/floor/corsat/bluegrey/north + dir = NORTH + +/turf/open/floor/corsat/bluegreycorner + icon_state = "bluegreycorner" + +/turf/open/floor/corsat/bluegreycorner/north + dir = NORTH + +/turf/open/floor/corsat/brown/north + dir = NORTH + +/turf/open/floor/corsat/browncorner + icon_state = "browncorner" + +/turf/open/floor/corsat/browncorner/north + dir = NORTH + +/turf/open/floor/corsat/darkgreen/north + dir = NORTH + +/turf/open/floor/corsat/darkgreencorner + icon_state = "darkgreencorner" + +/turf/open/floor/corsat/darkgreencorner/north + dir = NORTH + +/turf/open/floor/corsat/green/north + dir = NORTH + +/turf/open/floor/corsat/greencorner + icon_state = "greencorner" + +/turf/open/floor/corsat/greencorner/north + dir = NORTH + +/turf/open/floor/corsat/greenwhite/north + dir = NORTH + +/turf/open/floor/corsat/greenwhitecorner + icon_state = "greenwhitecorner" + +/turf/open/floor/corsat/greenwhitecorner/north + dir = NORTH + +/turf/open/floor/corsat/purple/north + dir = NORTH + +/turf/open/floor/corsat/purplecorner + icon_state = "purplecorner" + +/turf/open/floor/corsat/purplecorner/north + dir = NORTH + +/turf/open/floor/corsat/purplewhite/north + dir = NORTH + +/turf/open/floor/corsat/purplewhitecorner + icon_state = "purplewhitecorner" + +/turf/open/floor/corsat/purplewhitecorner/north + dir = NORTH + +/turf/open/floor/corsat/red/north + dir = NORTH + +/turf/open/floor/corsat/redcorner + icon_state = "redcorner" + +/turf/open/floor/corsat/redcorner/north + dir = NORTH + +/turf/open/floor/corsat/squareswood + icon_state = "squareswood" + +/turf/open/floor/corsat/squareswood/north + dir = NORTH + +/turf/open/floor/corsat/tan + icon_state = "tan" + +/turf/open/floor/corsat/tan/north + dir = NORTH + +/turf/open/floor/corsat/white/north + dir = NORTH + +/turf/open/floor/corsat/whitecorner + icon_state = "whitecorner" + +/turf/open/floor/corsat/whitecorner/north + dir = NORTH + +/turf/open/floor/corsat/whitetan/north + dir = NORTH + +/turf/open/floor/corsat/whitetancorner + icon_state = "whitetancorner" + +/turf/open/floor/corsat/whitetancorner/north + dir = NORTH + +/turf/open/floor/corsat/yellow/north + dir = NORTH + +/turf/open/floor/corsat/yellowcorner + icon_state = "yellowcorner" + +/turf/open/floor/corsat/yellowcorner/north + dir = NORTH + +/turf/open/floor/corsat/blue/east + dir = EAST + +/turf/open/floor/corsat/bluecorner/east + dir = EAST + +/turf/open/floor/corsat/bluegrey/east + dir = EAST + +/turf/open/floor/corsat/bluegreycorner/east + dir = EAST + +/turf/open/floor/corsat/brown/east + dir = EAST + +/turf/open/floor/corsat/browncorner/east + dir = EAST + +/turf/open/floor/corsat/darkgreen/east + dir = EAST + +/turf/open/floor/corsat/darkgreencorner/east + dir = EAST + +/turf/open/floor/corsat/green/east + dir = EAST + +/turf/open/floor/corsat/greencorner/east + dir = EAST + +/turf/open/floor/corsat/greenwhite/east + dir = EAST + +/turf/open/floor/corsat/greenwhitecorner/east + dir = EAST + +/turf/open/floor/corsat/purple/east + dir = EAST + +/turf/open/floor/corsat/purplecorner/east + dir = EAST + +/turf/open/floor/corsat/purplewhite/east + dir = EAST + +/turf/open/floor/corsat/purplewhitecorner/east + dir = EAST + +/turf/open/floor/corsat/red/east + dir = EAST + +/turf/open/floor/corsat/redcorner/east + dir = EAST + +/turf/open/floor/corsat/white/east + dir = EAST + +/turf/open/floor/corsat/whitecorner/east + dir = EAST + +/turf/open/floor/corsat/whitetan/east + dir = EAST + +/turf/open/floor/corsat/whitetancorner/east + dir = EAST + +/turf/open/floor/corsat/yellow/east + dir = EAST + +/turf/open/floor/corsat/yellowcorner/east + dir = EAST + +/turf/open/floor/corsat/blue/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/bluegrey/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/brown/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/darkgreen/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/green/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/greenwhite/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/purple/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/purplewhite/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/red/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/white/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/whitetan/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/bluegrey/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/brown/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/darkgreen/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/green/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/greenwhite/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/purplewhite/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/red/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/white/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/whitetan/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/blue/west + dir = WEST + +/turf/open/floor/corsat/bluecorner/west + dir = WEST + +/turf/open/floor/corsat/bluegrey/west + dir = WEST + +/turf/open/floor/corsat/bluegreycorner/west + dir = WEST + +/turf/open/floor/corsat/brown/west + dir = WEST + +/turf/open/floor/corsat/browncorner/west + dir = WEST + +/turf/open/floor/corsat/darkgreen/west + dir = WEST + +/turf/open/floor/corsat/darkgreencorner/west + dir = WEST + +/turf/open/floor/corsat/green/west + dir = WEST + +/turf/open/floor/corsat/greencorner/west + dir = WEST + +/turf/open/floor/corsat/greenwhite/west + dir = WEST + +/turf/open/floor/corsat/greenwhitecorner/west + dir = WEST + +/turf/open/floor/corsat/purple/west + dir = WEST + +/turf/open/floor/corsat/purplecorner/west + dir = WEST + +/turf/open/floor/corsat/purplewhite/west + dir = WEST + +/turf/open/floor/corsat/purplewhitecorner/west + dir = WEST + +/turf/open/floor/corsat/red/west + dir = WEST + +/turf/open/floor/corsat/redcorner/west + dir = WEST + +/turf/open/floor/corsat/white/west + dir = WEST + +/turf/open/floor/corsat/whitecorner/west + dir = WEST + +/turf/open/floor/corsat/whitetan/west + dir = WEST + +/turf/open/floor/corsat/whitetancorner/west + dir = WEST + +/turf/open/floor/corsat/yellow/west + dir = WEST + +/turf/open/floor/corsat/yellowcorner/west + dir = WEST + +/turf/open/floor/corsat/blue/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/bluegrey/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/brown/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/darkgreen/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/green/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/greenwhite/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/purple/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/purplewhite/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/red/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/white/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/whitetan/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/arrow_east + icon_state = "arrow_east" + +/turf/open/floor/corsat/arrow_north + icon_state = "arrow_north" + +/turf/open/floor/corsat/arrow_south + icon_state = "arrow_south" + +/turf/open/floor/corsat/arrow_west + icon_state = "arrow_west" + +/turf/open/floor/corsat/cargo + icon_state = "cargo" + +/turf/open/floor/corsat/damaged1 + icon_state = "damaged1" + +/turf/open/floor/corsat/gamma + icon_state = "gamma" + +/turf/open/floor/corsat/lightplate + icon_state = "lightplate" + +/turf/open/floor/corsat/marked + icon_state = "marked" + +/turf/open/floor/corsat/officesquares + icon_state = "officesquares" + +/turf/open/floor/corsat/omega + icon_state = "omega" + +/turf/open/floor/corsat/plate + icon_state = "plate" + +/turf/open/floor/corsat/red/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/red/north + dir = NORTH + +/turf/open/floor/corsat/red/east + dir = EAST + +/turf/open/floor/corsat/red/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/red/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/red/west + dir = WEST + +/turf/open/floor/corsat/red/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/redcorner/north + dir = NORTH + +/turf/open/floor/corsat/redcorner/east + dir = EAST + +/turf/open/floor/corsat/retrosquares + icon_state = "retrosquares" + +/turf/open/floor/corsat/retrosquareslight + icon_state = "retrosquareslight" + +/turf/open/floor/corsat/sigma + icon_state = "sigma" + +/turf/open/floor/corsat/spiralplate + icon_state = "spiralplate" + +/turf/open/floor/corsat/spiralwoodalt + icon_state = "spiralwoodalt" + +/turf/open/floor/corsat/squares + icon_state = "squares" + +/turf/open/floor/corsat/sterileplate + icon_state = "sterileplate" + +/turf/open/floor/corsat/theta + icon_state = "theta" + +/turf/open/floor/corsat/yellow/north + dir = NORTH + +/turf/open/floor/corsat/yellow/east + dir = EAST + +/turf/open/floor/corsat/yellowcorner/east + dir = EAST + +/turf/open/floor/grey_dark2 + color = "#525151" + icon_state = "dark2" + +/turf/open/floor/solarpanel + 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/asteroidwarning + icon_state = "asteroidwarning" + +/turf/open/floor/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/darkblue2 + icon_state = "darkblue2" + +/turf/open/floor/darkblue2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkbrown2 + icon_state = "darkbrown2" + +/turf/open/floor/darkbrown2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkgreen2 + icon_state = "darkgreen2" + +/turf/open/floor/darkgreen2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkpurple2 + icon_state = "darkpurple2" + +/turf/open/floor/darkpurple2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkred2 + icon_state = "darkred2" + +/turf/open/floor/darkred2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkyellow2 + icon_state = "darkyellow2" + +/turf/open/floor/darkyellow2/southwest + dir = SOUTHWEST + +/turf/open/floor/podhatch + icon_state = "podhatch" + +/turf/open/floor/podhatch/southwest + dir = SOUTHWEST + +/turf/open/floor/purple + icon_state = "purple" + +/turf/open/floor/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/red + icon_state = "red" + +/turf/open/floor/red/southwest + dir = SOUTHWEST + +/turf/open/floor/warning + icon_state = "warning" + +/turf/open/floor/warning/southwest + dir = SOUTHWEST + +/turf/open/floor/warnwhite + icon_state = "warnwhite" + +/turf/open/floor/warnwhite/southwest + dir = SOUTHWEST + +/turf/open/floor/whiteblue + icon_state = "whiteblue" + +/turf/open/floor/whiteblue/southwest + dir = SOUTHWEST + +/turf/open/floor/whitegreen + icon_state = "whitegreen" + +/turf/open/floor/whitegreen/southwest + dir = SOUTHWEST + +/turf/open/floor/whitepurple + icon_state = "whitepurple" + +/turf/open/floor/whitepurple/southwest + dir = SOUTHWEST + +/turf/open/floor/whitered + icon_state = "whitered" + +/turf/open/floor/whitered/southwest + dir = SOUTHWEST + +/turf/open/floor/whiteyellow + icon_state = "whiteyellow" + +/turf/open/floor/whiteyellow/southwest + dir = SOUTHWEST + +/turf/open/floor/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/asteroidfloor/north + dir = NORTH + +/turf/open/floor/asteroidwarning/north + dir = NORTH + +/turf/open/floor/bot + icon_state = "bot" + +/turf/open/floor/bot/north + dir = NORTH + +/turf/open/floor/chapel + icon_state = "chapel" + +/turf/open/floor/chapel/north + dir = NORTH + +/turf/open/floor/darkblue2/north + dir = NORTH + +/turf/open/floor/darkbrown2/north + dir = NORTH + +/turf/open/floor/darkbrowncorners2 + icon_state = "darkbrowncorners2" + +/turf/open/floor/darkbrowncorners2/north + dir = NORTH + +/turf/open/floor/darkgreen2/north + dir = NORTH + +/turf/open/floor/darkgreencorners2 + icon_state = "darkgreencorners2" + +/turf/open/floor/darkgreencorners2/north + dir = NORTH + +/turf/open/floor/darkpurple2/north + dir = NORTH + +/turf/open/floor/darkpurplecorners2 + icon_state = "darkpurplecorners2" + +/turf/open/floor/darkpurplecorners2/north + dir = NORTH + +/turf/open/floor/darkred2/north + dir = NORTH + +/turf/open/floor/darkredcorners2 + icon_state = "darkredcorners2" + +/turf/open/floor/darkredcorners2/north + dir = NORTH + +/turf/open/floor/darkyellow2/north + dir = NORTH + +/turf/open/floor/darkyellowcorners2 + icon_state = "darkyellowcorners2" + +/turf/open/floor/darkyellowcorners2/north + dir = NORTH + +/turf/open/floor/elevatorshaft + icon_state = "elevatorshaft" + +/turf/open/floor/elevatorshaft/north + dir = NORTH + +/turf/open/floor/green + icon_state = "green" + +/turf/open/floor/green/north + dir = NORTH + +/turf/open/floor/loadingarea + icon_state = "loadingarea" + +/turf/open/floor/loadingarea/north + dir = NORTH + +/turf/open/floor/podhatch/north + dir = NORTH + +/turf/open/floor/podhatchfloor + icon_state = "podhatchfloor" + +/turf/open/floor/podhatchfloor/north + dir = NORTH + +/turf/open/floor/purple/north + dir = NORTH + +/turf/open/floor/rampbottom + icon_state = "rampbottom" + +/turf/open/floor/rampbottom/north + dir = NORTH + +/turf/open/floor/red/north + dir = NORTH + +/turf/open/floor/redcorner + icon_state = "redcorner" + +/turf/open/floor/redcorner/north + dir = NORTH + +/turf/open/floor/vault2 + icon_state = "vault" + +/turf/open/floor/vault2/north + dir = NORTH + +/turf/open/floor/warning/north + dir = NORTH + +/turf/open/floor/warningcorner + icon_state = "warningcorner" + +/turf/open/floor/warningcorner/north + dir = NORTH + +/turf/open/floor/warnwhite/north + dir = NORTH + +/turf/open/floor/whiteblue/north + dir = NORTH + +/turf/open/floor/whitebluecorner + icon_state = "whitebluecorner" + +/turf/open/floor/whitebluecorner/north + dir = NORTH + +/turf/open/floor/whitegreen/north + dir = NORTH + +/turf/open/floor/whitegreencorner + icon_state = "whitegreencorner" + +/turf/open/floor/whitegreencorner/north + dir = NORTH + +/turf/open/floor/whitepurple/north + dir = NORTH + +/turf/open/floor/whitepurplecorner + icon_state = "whitepurplecorner" + +/turf/open/floor/whitepurplecorner/north + dir = NORTH + +/turf/open/floor/whitered/north + dir = NORTH + +/turf/open/floor/whiteredcorner + icon_state = "whiteredcorner" + +/turf/open/floor/whiteredcorner/north + dir = NORTH + +/turf/open/floor/whiteyellow/north + dir = NORTH + +/turf/open/floor/whiteyellowcorner + icon_state = "whiteyellowcorner" + +/turf/open/floor/whiteyellowcorner/north + dir = NORTH + +/turf/open/floor/asteroidwarning/east + dir = EAST + +/turf/open/floor/chapel/east + dir = EAST + +/turf/open/floor/darkblue2/east + dir = EAST + +/turf/open/floor/darkbrown2/east + dir = EAST + +/turf/open/floor/darkbrowncorners2/east + dir = EAST + +/turf/open/floor/darkgreen2/east + dir = EAST + +/turf/open/floor/darkgreencorners2/east + dir = EAST + +/turf/open/floor/darkpurple2/east + dir = EAST + +/turf/open/floor/darkpurplecorners2/east + dir = EAST + +/turf/open/floor/darkred2/east + dir = EAST + +/turf/open/floor/darkredcorners2/east + dir = EAST + +/turf/open/floor/darkyellow2/east + dir = EAST + +/turf/open/floor/darkyellowcorners2/east + dir = EAST + +/turf/open/floor/loadingarea/east + dir = EAST + +/turf/open/floor/purple/east + dir = EAST + +/turf/open/floor/red/east + dir = EAST + +/turf/open/floor/redcorner/east + dir = EAST + +/turf/open/floor/warning/east + dir = EAST + +/turf/open/floor/warningcorner/east + dir = EAST + +/turf/open/floor/warnwhite/east + dir = EAST + +/turf/open/floor/whiteblue/east + dir = EAST + +/turf/open/floor/whitebluecorner/east + dir = EAST + +/turf/open/floor/whitegreen/east + dir = EAST + +/turf/open/floor/whitegreencorner/east + dir = EAST + +/turf/open/floor/whitepurple/east + dir = EAST + +/turf/open/floor/whitepurplecorner/east + dir = EAST + +/turf/open/floor/whitered/east + dir = EAST + +/turf/open/floor/whiteredcorner/east + dir = EAST + +/turf/open/floor/whiteyellow/east + dir = EAST + +/turf/open/floor/whiteyellowcorner/east + dir = EAST + +/turf/open/floor/whiteyellowfull + icon_state = "whiteyellowfull" + +/turf/open/floor/whiteyellowfull/east + dir = EAST + +/turf/open/floor/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/chapel/northeast + dir = NORTHEAST + +/turf/open/floor/darkblue2/northeast + dir = NORTHEAST + +/turf/open/floor/darkbrown2/northeast + dir = NORTHEAST + +/turf/open/floor/darkgreen2/northeast + dir = NORTHEAST + +/turf/open/floor/darkpurple2/northeast + dir = NORTHEAST + +/turf/open/floor/darkred2/northeast + dir = NORTHEAST + +/turf/open/floor/darkyellow2/northeast + dir = NORTHEAST + +/turf/open/floor/podhatch/northeast + dir = NORTHEAST + +/turf/open/floor/purple/northeast + dir = NORTHEAST + +/turf/open/floor/red/northeast + dir = NORTHEAST + +/turf/open/floor/vault2/northeast + dir = NORTHEAST + +/turf/open/floor/warning/northeast + dir = NORTHEAST + +/turf/open/floor/warnwhite/northeast + dir = NORTHEAST + +/turf/open/floor/whiteblue/northeast + dir = NORTHEAST + +/turf/open/floor/whitebluefull + icon_state = "whitebluefull" + +/turf/open/floor/whitebluefull/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreen/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreen_v + icon_state = "whitegreen_v" + +/turf/open/floor/whitegreen_v/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreenfull + icon_state = "whitegreenfull" + +/turf/open/floor/whitegreenfull/northeast + dir = NORTHEAST + +/turf/open/floor/whitepurple/northeast + dir = NORTHEAST + +/turf/open/floor/whitered/northeast + dir = NORTHEAST + +/turf/open/floor/whiteyellow/northeast + dir = NORTHEAST + +/turf/open/floor/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/darkblue2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkbrown2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkgreen2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkpurple2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkred2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkyellow2/southeast + dir = SOUTHEAST + +/turf/open/floor/podhatch/southeast + dir = SOUTHEAST + +/turf/open/floor/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/red/southeast + dir = SOUTHEAST + +/turf/open/floor/warning/southeast + dir = SOUTHEAST + +/turf/open/floor/warnwhite/southeast + dir = SOUTHEAST + +/turf/open/floor/whiteblue/southeast + dir = SOUTHEAST + +/turf/open/floor/whitegreen/southeast + dir = SOUTHEAST + +/turf/open/floor/whitepurple/southeast + dir = SOUTHEAST + +/turf/open/floor/whitered/southeast + dir = SOUTHEAST + +/turf/open/floor/whiteyellow/southeast + dir = SOUTHEAST + +/turf/open/floor/asteroidwarning/west + dir = WEST + +/turf/open/floor/barber + icon_state = "barber" + +/turf/open/floor/barber/west + dir = WEST + +/turf/open/floor/carpet10_8 + icon_state = "carpet10-8" + +/turf/open/floor/carpet10_8/west + dir = WEST + +/turf/open/floor/carpet11_12 + icon_state = "carpet11-12" + +/turf/open/floor/carpet11_12/west + dir = WEST + +/turf/open/floor/carpet13_5 + icon_state = "carpet13-5" + +/turf/open/floor/carpet13_5/west + dir = WEST + +/turf/open/floor/carpet14_10 + icon_state = "carpet14-10" + +/turf/open/floor/carpet14_10/west + dir = WEST + +/turf/open/floor/carpet15_15 + icon_state = "carpet15-15" + +/turf/open/floor/carpet15_15/west + dir = WEST + +/turf/open/floor/carpet5_1 + icon_state = "carpet5-1" + +/turf/open/floor/carpet5_1/west + dir = WEST + +/turf/open/floor/carpet6_2 + icon_state = "carpet6-2" + +/turf/open/floor/carpet6_2/west + dir = WEST + +/turf/open/floor/carpet7_3 + icon_state = "carpet7-3" + +/turf/open/floor/carpet7_3/west + dir = WEST + +/turf/open/floor/carpet9_4 + icon_state = "carpet9-4" + +/turf/open/floor/carpet9_4/west + dir = WEST + +/turf/open/floor/chapel/west + dir = WEST + +/turf/open/floor/damaged2 + icon_state = "damaged2" + +/turf/open/floor/damaged2/west + dir = WEST + +/turf/open/floor/damaged3 + icon_state = "damaged3" + +/turf/open/floor/damaged3/west + dir = WEST + +/turf/open/floor/damaged4 + icon_state = "damaged4" + +/turf/open/floor/damaged4/west + dir = WEST + +/turf/open/floor/damaged5 + icon_state = "damaged5" + +/turf/open/floor/damaged5/west + dir = WEST + +/turf/open/floor/darkblue2/west + dir = WEST + +/turf/open/floor/darkbrown2/west + dir = WEST + +/turf/open/floor/darkbrowncorners2/west + dir = WEST + +/turf/open/floor/darkgreen2/west + dir = WEST + +/turf/open/floor/darkgreencorners2/west + dir = WEST + +/turf/open/floor/darkpurple2/west + dir = WEST + +/turf/open/floor/darkpurplecorners2/west + dir = WEST + +/turf/open/floor/darkred2/west + dir = WEST + +/turf/open/floor/darkredcorners2/west + dir = WEST + +/turf/open/floor/darkyellow2/west + dir = WEST + +/turf/open/floor/darkyellowcorners2/west + dir = WEST + +/turf/open/floor/loadingarea/west + dir = WEST + +/turf/open/floor/purple/west + dir = WEST + +/turf/open/floor/purplecorner + icon_state = "purplecorner" + +/turf/open/floor/purplecorner/west + dir = WEST + +/turf/open/floor/red/west + dir = WEST + +/turf/open/floor/redcorner/west + dir = WEST + +/turf/open/floor/vault2/west + dir = WEST + +/turf/open/floor/warning/west + dir = WEST + +/turf/open/floor/warningcorner/west + dir = WEST + +/turf/open/floor/warnwhite/west + dir = WEST + +/turf/open/floor/whiteblue/west + dir = WEST + +/turf/open/floor/whitebluecorner/west + dir = WEST + +/turf/open/floor/whitegreen/west + dir = WEST + +/turf/open/floor/whitegreencorner/west + dir = WEST + +/turf/open/floor/whitepurple/west + dir = WEST + +/turf/open/floor/whitepurplecorner/west + dir = WEST + +/turf/open/floor/whitered/west + dir = WEST + +/turf/open/floor/whiteredcorner/west + dir = WEST + +/turf/open/floor/whiteyellow/west + dir = WEST + +/turf/open/floor/whiteyellowcorner/west + dir = WEST + +/turf/open/floor/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/brown + icon_state = "brown" + +/turf/open/floor/brown/northwest + dir = NORTHWEST + +/turf/open/floor/darkblue2/northwest + dir = NORTHWEST + +/turf/open/floor/darkbrown2/northwest + dir = NORTHWEST + +/turf/open/floor/darkgreen2/northwest + dir = NORTHWEST + +/turf/open/floor/darkpurple2/northwest + dir = NORTHWEST + +/turf/open/floor/darkred2/northwest + dir = NORTHWEST + +/turf/open/floor/darkyellow2/northwest + dir = NORTHWEST + +/turf/open/floor/green/northwest + dir = NORTHWEST + +/turf/open/floor/podhatch/northwest + dir = NORTHWEST + +/turf/open/floor/purple/northwest + dir = NORTHWEST + +/turf/open/floor/red/northwest + dir = NORTHWEST + +/turf/open/floor/redfull + icon_state = "redfull" + +/turf/open/floor/redfull/northwest + dir = NORTHWEST + +/turf/open/floor/warning/northwest + dir = NORTHWEST + +/turf/open/floor/warnwhite/northwest + dir = NORTHWEST + +/turf/open/floor/whiteblue/northwest + dir = NORTHWEST + +/turf/open/floor/whitegreen/northwest + dir = NORTHWEST + +/turf/open/floor/whitegreen_v/northwest + dir = NORTHWEST + +/turf/open/floor/whitepurple/northwest + dir = NORTHWEST + +/turf/open/floor/whitered/northwest + dir = NORTHWEST + +/turf/open/floor/whiteyellow/northwest + dir = NORTHWEST + +/turf/open/floor/asteroid + icon_state = "asteroid" + +/turf/open/floor/asteroidfloor/north + dir = NORTH + +/turf/open/floor/asteroidplating + icon_state = "asteroidplating" + +/turf/open/floor/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/asteroidwarning/north + dir = NORTH + +/turf/open/floor/asteroidwarning/east + dir = EAST + +/turf/open/floor/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/asteroidwarning/west + dir = WEST + +/turf/open/floor/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/bar + icon_state = "bar" + +/turf/open/floor/bcircuit + icon_state = "bcircuit" + +/turf/open/floor/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/blueyellowfull + icon_state = "blueyellowfull" + +/turf/open/floor/cafeteria + icon_state = "cafeteria" + +/turf/open/floor/cmo + icon_state = "cmo" + +/turf/open/floor/cult + icon_state = "cult" + +/turf/open/floor/dark + icon_state = "dark" + +/turf/open/floor/dark2 + icon_state = "dark2" + +/turf/open/floor/darkbluecorners2 + icon_state = "darkbluecorners2" + +/turf/open/floor/darkish + icon_state = "darkish" + +/turf/open/floor/delivery + icon_state = "delivery" + +/turf/open/floor/floor4 + icon_state = "floor4" + +/turf/open/floor/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/freezerfloor + icon_state = "freezerfloor" + +/turf/open/floor/grimy + icon_state = "grimy" + +/turf/open/floor/hydrofloor + icon_state = "hydrofloor" + +/turf/open/floor/neutral + icon_state = "neutral" + +/turf/open/floor/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/platebot + icon_state = "platebot" + +/turf/open/floor/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/redyellowfull + icon_state = "redyellowfull" + +/turf/open/floor/wall_thermite + icon_state = "wall_thermite" + +/turf/open/floor/warnwhite/north + dir = NORTH + +/turf/open/floor/white + icon_state = "white" + +/turf/open/floor/whitepurplefull + icon_state = "whitepurplefull" + +/turf/open/floor/whiteredfull + icon_state = "whiteredfull" + +/turf/open/floor/wood + icon_state = "wood" + +/turf/open/floor/yellowfull + icon_state = "yellowfull" diff --git a/code/game/turfs/floors/desert.dm b/code/game/turfs/floors/desert.dm index d11ce0ff5c29..6aa2e9f02261 100644 --- a/code/game/turfs/floors/desert.dm +++ b/code/game/turfs/floors/desert.dm @@ -27,6 +27,12 @@ /turf/open/desert/dirt/is_weedable() return FULLY_WEEDABLE +/turf/open/desert/dirt/desert_transition_edge1 + icon_state = "desert_transition_edge1" + +/turf/open/desert/dirt/desert_transition_edge1/southwest + dir = SOUTHWEST + /turf/open/desert/dirt/dirt_transition_edge1 name = "desert" icon_state = "dirt4_transition_edge1" @@ -40,6 +46,42 @@ name = "desert" icon_state = "dirt4_transition_corner2" +/turf/open/desert/dirt/desert_transition_corner1 + icon_state = "desert_transition_corner1" + +/turf/open/desert/dirt/desert_transition_corner1/north + dir = NORTH + +/turf/open/desert/dirt/desert_transition_edge1/north + dir = NORTH + +/turf/open/desert/dirt/desert_transition_corner1/east + dir = EAST + +/turf/open/desert/dirt/desert_transition_edge1/east + dir = EAST + +/turf/open/desert/dirt/desert_transition_edge1/northeast + dir = NORTHEAST + +/turf/open/desert/dirt/desert_transition_edge1/southeast + dir = SOUTHEAST + +/turf/open/desert/dirt/desert_transition_corner1/west + dir = WEST + +/turf/open/desert/dirt/desert_transition_edge1/west + dir = WEST + +/turf/open/desert/dirt/desert_transition_edge1/northwest + dir = NORTHWEST + +/turf/open/desert/dirt/dirt2 + icon_state = "dirt2" + +/turf/open/desert/dirt/rock1 + icon_state = "rock1" + //desert riverbed /turf/open/desert/riverbed/dirt1 name = "riverbed" @@ -86,9 +128,40 @@ /turf/open/desert/rock/deep name = "cave" icon_state = "rock2" + +/turf/open/desert/rock/deep/rock3 + icon_state = "rock3" + +/turf/open/desert/rock/deep/rock4 + icon_state = "rock4" + +/turf/open/desert/rock/edge1/east + dir = EAST + /turf/open/desert/rock/deep/transition icon_state = "rock2_transition" +/turf/open/desert/rock/deep/transition/southwest + dir = SOUTHWEST + +/turf/open/desert/rock/deep/transition/north + dir = NORTH + +/turf/open/desert/rock/deep/transition/east + dir = EAST + +/turf/open/desert/rock/deep/transition/northeast + dir = NORTHEAST + +/turf/open/desert/rock/deep/transition/southeast + dir = SOUTHEAST + +/turf/open/desert/rock/deep/transition/west + dir = WEST + +/turf/open/desert/rock/deep/transition/northwest + dir = NORTHWEST + //Desert grass /turf/open/desert/desertgrass name = "desert" @@ -126,6 +199,40 @@ /turf/open/desert/desert_shore/desert_shore1 name = "shore" icon_state = "shore1" + +/turf/open/desert/desert_shore/desert_shore1/north + dir = NORTH + +/turf/open/desert/desert_shore/desert_shore1/east + dir = EAST + +/turf/open/desert/desert_shore/desert_shore1/west + dir = WEST + +/turf/open/desert/desert_shore/shore_corner1/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_corner1/west + dir = WEST + +/turf/open/desert/desert_shore/shore_corner2/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_corner2/east + dir = EAST + +/turf/open/desert/desert_shore/shore_corner2/west + dir = WEST + +/turf/open/desert/desert_shore/shore_edge1/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_edge1/east + dir = EAST + +/turf/open/desert/desert_shore/shore_edge1/west + dir = WEST + /* /turf/open/desert/desert_shore/desert_shore2 name = "shore" @@ -205,6 +312,15 @@ set_light(1) icon = 'icons/turf/floors/desert_water_transition.dmi' +/turf/open/desert/cave/cave_shore/east + dir = EAST + +/turf/open/desert/cave/cave_shore/northeast + dir = NORTHEAST + +/turf/open/desert/cave/cave_shore/southeast + dir = SOUTHEAST + //Desert River Toxic /turf/open/gm/river/desert name = "water" @@ -238,37 +354,91 @@ icon_overlay = "_shallow" /turf/open/gm/river/desert/shallow/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow/toxic + icon = 'icons/turf/floors/desert_water_toxic.dmi' + +/turf/open/gm/river/desert/shallow/pool + name = "pool" + //shallow water transition to deep /turf/open/gm/river/desert/shallow_edge icon_state = "shallow_edge" icon_overlay = "shallow_edge_overlay" +/turf/open/gm/river/desert/shallow_edge/southwest + dir = SOUTHWEST + +/turf/open/gm/river/desert/shallow_edge/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_edge/east + dir = EAST + +/turf/open/gm/river/desert/shallow_edge/northeast + dir = NORTHEAST + +/turf/open/gm/river/desert/shallow_edge/southeast + dir = SOUTHEAST + +/turf/open/gm/river/desert/shallow_edge/west + dir = WEST + +/turf/open/gm/river/desert/shallow_edge/northwest + dir = NORTHWEST + /turf/open/gm/river/desert/shallow_edge/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow_edge/covered/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_edge/covered/east + dir = EAST + +/turf/open/gm/river/desert/shallow_edge/covered/northeast + dir = NORTHEAST + +/turf/open/gm/river/desert/shallow_edge/covered/west + dir = WEST + //shallow water transition to deep corner /turf/open/gm/river/desert/shallow_corner icon_state = "shallow_c" icon_overlay = "shallow_c_overlay" /turf/open/gm/river/desert/shallow_corner/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow_corner/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_corner/east + dir = EAST + +/turf/open/gm/river/desert/shallow_corner/west + dir = WEST + //deep water /turf/open/gm/river/desert/deep icon_state = "deep" icon_overlay = "_deep" +/turf/open/gm/river/desert/deep/no_slowdown + base_river_slowdown = 0 + /turf/open/gm/river/desert/deep/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/deep/toxic + icon = 'icons/turf/floors/desert_water_toxic.dmi' + //shallow water channel plain /turf/open/gm/river/desert/channel icon_state = "channel" @@ -284,22 +454,181 @@ /turf/open/desert/excavation icon = 'icons/turf/floors/desert_excavation.dmi' + //Engineer Ship /turf/open/desert/excavation/component1 icon_state = "component1" + +/turf/open/desert/excavation/component1/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component1/north + dir = NORTH + +/turf/open/desert/excavation/component1/east + dir = EAST + +/turf/open/desert/excavation/component1/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component1/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component1/west + dir = WEST + /turf/open/desert/excavation/component2 icon_state = "component2" + +/turf/open/desert/excavation/component2/north + dir = NORTH + +/turf/open/desert/excavation/component2/east + dir = EAST + +/turf/open/desert/excavation/component2/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component2/west + dir = WEST + /turf/open/desert/excavation/component3 icon_state = "component3" + +/turf/open/desert/excavation/component3/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component3/north + dir = NORTH + +/turf/open/desert/excavation/component3/east + dir = EAST + +/turf/open/desert/excavation/component3/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component3/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component3/west + dir = WEST + /turf/open/desert/excavation/component4 icon_state = "component4" + +/turf/open/desert/excavation/component4/north + dir = NORTH + +/turf/open/desert/excavation/component4/east + dir = EAST + +/turf/open/desert/excavation/component4/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component4/west + dir = WEST + /turf/open/desert/excavation/component5 icon_state = "component5" + +/turf/open/desert/excavation/component5/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component5/north + dir = NORTH + +/turf/open/desert/excavation/component5/east + dir = EAST + +/turf/open/desert/excavation/component5/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component5/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component5/west + dir = WEST + /turf/open/desert/excavation/component6 icon_state = "component6" + +/turf/open/desert/excavation/component6/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component6/north + dir = NORTH + +/turf/open/desert/excavation/component6/east + dir = EAST + +/turf/open/desert/excavation/component6/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component6/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component6/west + dir = WEST + /turf/open/desert/excavation/component7 icon_state = "component7" + +/turf/open/desert/excavation/component7/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component7/north + dir = NORTH + +/turf/open/desert/excavation/component7/east + dir = EAST + +/turf/open/desert/excavation/component7/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component7/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component7/west + dir = WEST + /turf/open/desert/excavation/component8 icon_state = "component8" + +/turf/open/desert/excavation/component8/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component8/north + dir = NORTH + +/turf/open/desert/excavation/component8/east + dir = EAST + +/turf/open/desert/excavation/component8/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component8/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component8/west + dir = WEST + +/turf/open/desert/excavation/component8/northwest + dir = NORTHWEST + /turf/open/desert/excavation/component9 icon_state = "component9" + +/turf/open/desert/excavation/component9/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component9/north + dir = NORTH + +/turf/open/desert/excavation/component9/east + dir = EAST + +/turf/open/desert/excavation/component9/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component9/west + dir = WEST diff --git a/code/game/turfs/kutjevo.dm b/code/game/turfs/kutjevo.dm index 9d2b8bfdb50b..82211e5a7c25 100644 --- a/code/game/turfs/kutjevo.dm +++ b/code/game/turfs/kutjevo.dm @@ -3,6 +3,15 @@ /turf/open/floor/plating/kutjevo icon = 'icons/turf/floors/kutjevo/kutjevo_floor.dmi' +/turf/open/floor/plating/kutjevo/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/plating/kutjevo/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/plating/kutjevo/platingdmg3 + icon_state = "platingdmg3" + /turf/open/floor/kutjevo //Instance based on icon_states icon = 'icons/turf/floors/kutjevo/kutjevo_floor.dmi' icon_state = "floor" @@ -17,6 +26,21 @@ /turf/open/floor/kutjevo/multi_tiles icon_state = "multi_tiles" +/turf/open/floor/kutjevo/multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/multi_tiles/north + dir = NORTH + +/turf/open/floor/kutjevo/multi_tiles/east + dir = EAST + +/turf/open/floor/kutjevo/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/multi_tiles/west + dir = WEST + /turf/open/floor/kutjevo/fake_wood icon_state = "fake_wood" @@ -31,20 +55,92 @@ /turf/open/floor/kutjevo/tan/multi_tiles icon_state = "floor_tan_multi" +/turf/open/floor/kutjevo/tan/multi_tiles/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/multi_tiles/east + dir = EAST + +/turf/open/floor/kutjevo/tan/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/multi_tiles/west + dir = WEST + //TAN TRANSITION PIECES /turf/open/floor/kutjevo/tan/grey_edge icon_state = "floor_tan_grey3" +/turf/open/floor/kutjevo/tan/grey_edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/tan/grey_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/grey_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/grey_edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/tan/grey_edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/grey_edge/west + dir = WEST + +/turf/open/floor/kutjevo/tan/grey_edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/tan/grey_inner_edge icon_state = "floor_tan_grey4" +/turf/open/floor/kutjevo/tan/grey_inner_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/grey_inner_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/grey_inner_edge/west + dir = WEST + /turf/open/floor/kutjevo/tan/alt_edge icon_state = "floor_tan_alt3" +/turf/open/floor/kutjevo/tan/alt_edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/tan/alt_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/alt_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/alt_edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/tan/alt_edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/alt_edge/west + dir = WEST + +/turf/open/floor/kutjevo/tan/alt_edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/tan/alt_inner_edge icon_state = "floor_tan_alt4" +/turf/open/floor/kutjevo/tan/alt_inner_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/alt_inner_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/alt_inner_edge/west + dir = WEST + //GREY SECONDARIES TO LIGHT TAN /turf/open/floor/kutjevo/grey @@ -66,9 +162,39 @@ /turf/open/floor/kutjevo/colors/orange/edge icon_state = "orange3" +/turf/open/floor/kutjevo/colors/orange/edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/colors/orange/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/orange/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/orange/edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/colors/orange/edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/colors/orange/edge/west + dir = WEST + +/turf/open/floor/kutjevo/colors/orange/edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/colors/orange/inner_corner icon_state = "orange4" +/turf/open/floor/kutjevo/colors/orange/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/orange/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/orange/inner_corner/west + dir = WEST + //BLUE// /turf/open/floor/kutjevo/colors/blue @@ -80,9 +206,33 @@ /turf/open/floor/kutjevo/colors/blue/edge icon_state = "blue3" +/turf/open/floor/kutjevo/colors/blue/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/blue/edge/west + dir = WEST + +/turf/open/floor/kutjevo/colors/cyan/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/cyan/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/cyan/edge/west + dir = WEST + /turf/open/floor/kutjevo/colors/blue/inner_corner icon_state = "blue4" +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west + dir = WEST + //PURPLE// /turf/open/floor/kutjevo/colors/purple @@ -94,9 +244,30 @@ /turf/open/floor/kutjevo/colors/purple/edge icon_state = "purp3" +/turf/open/floor/kutjevo/colors/purple/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/purple/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/purple/edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/colors/purple/edge/west + dir = WEST + /turf/open/floor/kutjevo/colors/purple/inner_corner icon_state = "purp4" +/turf/open/floor/kutjevo/colors/purple/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/purple/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/purple/inner_corner/west + dir = WEST + //GREEN// /turf/open/floor/kutjevo/colors/green diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index 14f1cf21f9a4..680348e4d995 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -175,6 +175,10 @@ icon = 'icons/turf/floors/floors.dmi' icon_state = "grass1" +/turf/open/organic/grass/astroturf + desc = "It'll get in your shoes no matter what you do." + name = "astroturf" + // Mars grounds /turf/open/mars @@ -191,7 +195,6 @@ icon_state = "mars_cave_1" is_groundmap_turf = TRUE - /turf/open/mars_cave/Initialize(mapload, ...) . = ..() @@ -200,13 +203,87 @@ if (r == 0 && icon_state == "mars_cave_2") icon_state = "mars_cave_3" +/turf/open/mars_cave/mars_cave_10 + icon_state = "mars_cave_10" + +/turf/open/mars_cave/mars_cave_11 + icon_state = "mars_cave_11" + +/turf/open/mars_cave/mars_cave_12 + icon_state = "mars_cave_12" + +/turf/open/mars_cave/mars_cave_13 + icon_state = "mars_cave_13" + +/turf/open/mars_cave/mars_cave_14 + icon_state = "mars_cave_14" + +/turf/open/mars_cave/mars_cave_15 + icon_state = "mars_cave_15" + +/turf/open/mars_cave/mars_cave_16 + icon_state = "mars_cave_16" + +/turf/open/mars_cave/mars_cave_17 + icon_state = "mars_cave_17" + +/turf/open/mars_cave/mars_cave_18 + icon_state = "mars_cave_18" + +/turf/open/mars_cave/mars_cave_19 + icon_state = "mars_cave_19" + +/turf/open/mars_cave/mars_cave_2 + icon_state = "mars_cave_2" + +/turf/open/mars_cave/mars_cave_20 + icon_state = "mars_cave_20" + +/turf/open/mars_cave/mars_cave_22 + icon_state = "mars_cave_22" + +/turf/open/mars_cave/mars_cave_23 + icon_state = "mars_cave_23" + +/turf/open/mars_cave/mars_cave_3 + icon_state = "mars_cave_3" + +/turf/open/mars_cave/mars_cave_4 + icon_state = "mars_cave_4" + +/turf/open/mars_cave/mars_cave_5 + icon_state = "mars_cave_5" + +/turf/open/mars_cave/mars_cave_6 + icon_state = "mars_cave_6" + +/turf/open/mars_cave/mars_cave_7 + icon_state = "mars_cave_7" + +/turf/open/mars_cave/mars_cave_8 + icon_state = "mars_cave_8" + +/turf/open/mars_cave/mars_cave_9 + icon_state = "mars_cave_9" + +/turf/open/mars_cave/mars_dirt_4 + icon_state = "mars_dirt_4" + +/turf/open/mars_cave/mars_dirt_5 + icon_state = "mars_dirt_5" + +/turf/open/mars_cave/mars_dirt_6 + icon_state = "mars_dirt_6" + +/turf/open/mars_cave/mars_dirt_7 + icon_state = "mars_dirt_7" + /turf/open/mars_dirt name = "dirt" icon = 'icons/turf/floors/bigred.dmi' icon_state = "mars_dirt_1" minimap_color = MINIMAP_DIRT - /turf/open/mars_dirt/Initialize(mapload, ...) . = ..() var/r = rand(0, 32) @@ -226,12 +303,58 @@ if (r == 0 && icon_state == "mars_dirt_4") icon_state = "mars_dirt_7" +/turf/open/mars_dirt/mars_cave_10 + icon_state = "mars_cave_10" +/turf/open/mars_dirt/mars_cave_11 + icon_state = "mars_cave_11" +/turf/open/mars_dirt/mars_cave_3 + icon_state = "mars_cave_3" +/turf/open/mars_dirt/mars_cave_6 + icon_state = "mars_cave_6" -// Beach +/turf/open/mars_dirt/mars_cave_7 + icon_state = "mars_cave_7" + +/turf/open/mars_dirt/mars_cave_8 + icon_state = "mars_cave_8" + +/turf/open/mars/mars_cave_10 + icon_state = "mars_cave_10" + +/turf/open/mars/mars_dirt_10 + icon_state = "mars_dirt_10" + +/turf/open/mars/mars_dirt_11 + icon_state = "mars_dirt_11" + +/turf/open/mars/mars_dirt_12 + icon_state = "mars_dirt_12" + +/turf/open/mars/mars_dirt_13 + icon_state = "mars_dirt_13" + +/turf/open/mars/mars_dirt_14 + icon_state = "mars_dirt_14" + +/turf/open/mars/mars_dirt_3 + icon_state = "mars_dirt_3" +/turf/open/mars/mars_dirt_5 + icon_state = "mars_dirt_5" + +/turf/open/mars/mars_dirt_6 + icon_state = "mars_dirt_6" + +/turf/open/mars/mars_dirt_8 + icon_state = "mars_dirt_8" + +/turf/open/mars/mars_dirt_9 + icon_state = "mars_dirt_9" + +// Beach /turf/open/beach name = "Beach" @@ -331,6 +454,21 @@ if(rand(0,15) == 0) icon_state = "desert[pick("0","1","2","3")]" +/turf/open/gm/dirt/desert0 + icon_state = "desert0" + +/turf/open/gm/dirt/desert1 + icon_state = "desert1" + +/turf/open/gm/dirt/desert2 + icon_state = "desert2" + +/turf/open/gm/dirt/desert3 + icon_state = "desert3" + +/turf/open/gm/dirt/desert_dug + icon_state = "desert_dug" + /turf/open/gm/grass name = "grass" icon_state = "grass1" @@ -436,6 +574,24 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west dir = 8 +/turf/open/gm/dirtgrassborder/desert + icon_state = "desert" + +/turf/open/gm/dirtgrassborder/desert0 + icon_state = "desert0" + +/turf/open/gm/dirtgrassborder/desert1 + icon_state = "desert1" + +/turf/open/gm/dirtgrassborder/desert2 + icon_state = "desert2" + +/turf/open/gm/dirtgrassborder/desert3 + icon_state = "desert3" + +/turf/open/gm/dirtgrassborder/desert_dug + icon_state = "desert_dug" + /turf/open/gm/dirtgrassborder/Initialize(mapload, ...) . = ..() @@ -453,6 +609,21 @@ icon_state = "grassdirt2_edge" baseturfs = /turf/open/gm/dirtgrassborder2 +/turf/open/gm/dirtgrassborder2/north + dir = NORTH + +/turf/open/gm/dirtgrassborder2/east + dir = EAST + +/turf/open/gm/dirtgrassborder2/west + dir = WEST + +/turf/open/gm/dirtgrassborder2/wall2 + icon_state = "wall2" + +/turf/open/gm/dirtgrassborder2/wall3 + icon_state = "wall3" + /turf/open/gm/river name = "river" icon_state = "seashallow" @@ -572,11 +743,35 @@ ..() if(istype(M)) M.apply_damage(55,TOX) +/turf/open/gm/river/darkred_pool + color = "#990000" + name = "pool" + +/turf/open/gm/river/darkred + color = "#990000" + +/turf/open/gm/river/red_pool + color = "#995555" + name = "pool" + +/turf/open/gm/river/red + color = "#995555" + +/turf/open/gm/river/pool + name = "pool" + +/turf/open/gm/river/shallow_ocean_shallow_ocean + name = "shallow ocean" + default_name = "shallow ocean" /turf/open/gm/river/ocean color = "#dae3e2" base_river_slowdown = 4 // VERY. SLOW. +/turf/open/gm/river/ocean/deep_ocean + name = "deep ocean" + default_name = "deep ocean" + /turf/open/gm/river/ocean/Entered(atom/movable/AM) . = ..() if(prob(20)) // fuck you @@ -617,6 +812,9 @@ /turf/open/gm/coast/east dir = 8 +/turf/open/gm/coast/south_east + dir = 9 + /turf/open/gm/coast/beachcorner icon_state = "beachcorner" @@ -716,13 +914,95 @@ icon_state = "sunbleached_asphalt" baseturfs = /turf/open/asphalt +/turf/open/asphalt/tile + icon_state = "tile" + /turf/open/asphalt/cement name = "concrete" icon_state = "cement5" + +/turf/open/asphalt/cement/cement1 + icon_state = "cement1" + +/turf/open/asphalt/cement/cement1/north + dir = NORTH + +/turf/open/asphalt/cement/cement12 + icon_state = "cement12" + +/turf/open/asphalt/cement/cement13 + icon_state = "cement13" + +/turf/open/asphalt/cement/cement14 + icon_state = "cement14" + +/turf/open/asphalt/cement/cement15 + icon_state = "cement15" + +/turf/open/asphalt/cement/cement2 + icon_state = "cement2" + +/turf/open/asphalt/cement/cement3 + icon_state = "cement3" + +/turf/open/asphalt/cement/cement4 + icon_state = "cement4" + +/turf/open/asphalt/cement/cement7 + icon_state = "cement7" + +/turf/open/asphalt/cement/cement9 + icon_state = "cement9" + /turf/open/asphalt/cement_sunbleached name = "concrete" icon_state = "cement_sunbleached5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1 + icon_state = "cement_sunbleached1" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12 + icon_state = "cement_sunbleached12" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13 + icon_state = "cement_sunbleached13" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14 + icon_state = "cement_sunbleached14" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15 + icon_state = "cement_sunbleached15" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16 + icon_state = "cement_sunbleached16" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17 + icon_state = "cement_sunbleached17" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18 + icon_state = "cement_sunbleached18" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19 + icon_state = "cement_sunbleached19" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2 + icon_state = "cement_sunbleached2" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20 + icon_state = "cement_sunbleached20" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3 + icon_state = "cement_sunbleached3" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4 + icon_state = "cement_sunbleached4" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6 + icon_state = "cement_sunbleached6" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9 + icon_state = "cement_sunbleached9" + // Jungle turfs (Whiksey Outpost) @@ -830,15 +1110,17 @@ qdel(B) /turf/open/jungle/impenetrable - bushes_spawn = 0 + bushes_spawn = FALSE icon_state = "grass_impenetrable" icon_spawn_state = "grass1" /turf/open/jungle/impenetrable/Initialize(mapload, ...) . = ..() - var/obj/structure/flora/jungle/thickbush/B = new(src) - B.indestructable = 1 + var/obj/structure/flora/jungle/thickbush/bush = new(src) + bush.indestructable = TRUE +/turf/open/jungle/impenetrable/grass_clear + icon_state = "grass_clear" /turf/open/jungle/water bushes_spawn = 0 @@ -923,6 +1205,15 @@ icon_state = "floor" icon = 'icons/turf/shuttle.dmi' +/turf/open/shuttle/bright_red + icon_state = "floor4" + +/turf/open/shuttle/red + icon_state = "floor6" + +/turf/open/shuttle/black + icon_state = "floor7" + /turf/open/shuttle/can_surgery/red icon_state = "floor6" @@ -933,17 +1224,53 @@ name = "floor" icon_state = "rasputin1" +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right + icon_state = "floor8" + +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down + icon_state = "rasputin3" + +/turf/open/shuttle/dropship/light_grey_bottom_left + icon_state = "rasputin4" + +/turf/open/shuttle/dropship/light_grey_left_to_right + icon_state = "rasputin5" + +/turf/open/shuttle/dropship/light_grey_top_left + icon_state = "rasputin6" + +/turf/open/shuttle/dropship/light_grey_top_right + icon_state = "rasputin7" + +/turf/open/shuttle/dropship/light_grey_bottom_right + icon_state = "rasputin8" + +/turf/open/shuttle/dropship/light_grey_top + icon_state = "rasputin10" + +/turf/open/shuttle/dropship/dark_grey_bottom + icon_state = "rasputin12" + +/turf/open/shuttle/dropship/light_grey_middle + icon_state = "rasputin13" + /turf/open/shuttle/dropship/can_surgery icon_state = "rasputin1" allow_construction = TRUE supports_surgery = TRUE -/turf/open/shuttle/dropship/can_surgery/light_grey_middle - icon_state = "rasputin13" +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom + icon_state = "rasputin12" /turf/open/shuttle/dropship/can_surgery/light_grey_top icon_state = "rasputin10" +/turf/open/shuttle/dropship/can_surgery/light_grey_middle + icon_state = "rasputin13" + +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down + icon_state = "rasputin15" + /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right icon_state = "floor8" @@ -951,9 +1278,6 @@ /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down icon_state = "rasputin3" -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom - icon_state = "rasputin3" - /turf/open/shuttle/dropship/can_surgery/light_grey_top_left icon_state = "rasputin6" @@ -972,8 +1296,7 @@ /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down icon_state = "rasputin15" -/turf/open/shuttle/dropship/can_surgery/dark_grey - icon_state = "rasputin15" + /turf/open/shuttle/predship name = "ship floor" @@ -995,12 +1318,72 @@ icon = 'icons/turf/escapepods.dmi' icon_state = "floor3" +/turf/open/shuttle/escapepod/north + dir = NORTH + +/turf/open/shuttle/escapepod/east + dir = EAST + +/turf/open/shuttle/escapepod/west + dir = WEST + +/turf/open/shuttle/escapepod/floor0 + icon_state = "floor0" + +/turf/open/shuttle/escapepod/floor0/north + dir = NORTH + +/turf/open/shuttle/escapepod/floor0/west + dir = WEST + +/turf/open/shuttle/escapepod/floor1 + icon_state = "floor1" + +/turf/open/shuttle/escapepod/floor1/east + dir = EAST + +/turf/open/shuttle/escapepod/floor11 + icon_state = "floor11" + +/turf/open/shuttle/escapepod/floor12 + icon_state = "floor12" + +/turf/open/shuttle/escapepod/floor2 + icon_state = "floor2" + +/turf/open/shuttle/escapepod/floor4 + icon_state = "floor4" + +/turf/open/shuttle/escapepod/floor5 + icon_state = "floor5" + +/turf/open/shuttle/escapepod/floor7 + icon_state = "floor7" + +/turf/open/shuttle/escapepod/floor8 + icon_state = "floor8" + +/turf/open/shuttle/escapepod/floor9 + icon_state = "floor9" + /turf/open/shuttle/lifeboat icon = 'icons/turf/almayer.dmi' icon_state = "plating" allow_construction = FALSE supports_surgery = TRUE +/turf/open/shuttle/lifeboat/plating_striped + icon_state = "plating_striped" + +/turf/open/shuttle/lifeboat/plating_striped/north + dir = NORTH + +/turf/open/shuttle/lifeboat/plate + icon_state = "plate" + +/turf/open/shuttle/lifeboat/test_floor4 + icon_state = "test_floor4" + // Elevator floors /turf/open/shuttle/elevator icon = 'icons/turf/elevator.dmi' @@ -1021,3 +1404,123 @@ name = "floor" icon_state = "dark_sterile" supports_surgery = TRUE + +/turf/open/shuttle/vehicle/dark_sterile + icon_state = "dark_sterile" + +/turf/open/shuttle/vehicle/dark_sterile_green_11 + icon_state = "dark_sterile_green_11" + +/turf/open/shuttle/vehicle/dark_sterile_green_12 + icon_state = "dark_sterile_green_12" + +/turf/open/shuttle/vehicle/dark_sterile_green_13 + icon_state = "dark_sterile_green_13" + +/turf/open/shuttle/vehicle/dark_sterile_green_14 + icon_state = "dark_sterile_green_14" + +/turf/open/shuttle/vehicle/dark_sterile_green_5 + icon_state = "dark_sterile_green_5" + +/turf/open/shuttle/vehicle/dark_sterile_green_6 + icon_state = "dark_sterile_green_6" + +/turf/open/shuttle/vehicle/dark_sterile_green_7 + icon_state = "dark_sterile_green_7" + +/turf/open/shuttle/vehicle/dark_sterile_green_8 + icon_state = "dark_sterile_green_8" + +/turf/open/shuttle/vehicle/floor_0_1_15 + icon_state = "floor_0_1_15" + +/turf/open/shuttle/vehicle/floor_1_1 + icon_state = "floor_1_1" + +/turf/open/shuttle/vehicle/floor_1_10 + icon_state = "floor_1_10" + +/turf/open/shuttle/vehicle/floor_1_11 + icon_state = "floor_1_11" + +/turf/open/shuttle/vehicle/floor_1_12 + icon_state = "floor_1_12" + +/turf/open/shuttle/vehicle/floor_1_13 + icon_state = "floor_1_13" + +/turf/open/shuttle/vehicle/floor_1_14 + icon_state = "floor_1_14" + +/turf/open/shuttle/vehicle/floor_1_1_3 + icon_state = "floor_1_1_3" + +/turf/open/shuttle/vehicle/floor_1_2 + icon_state = "floor_1_2" + +/turf/open/shuttle/vehicle/floor_1_3_3 + icon_state = "floor_1_3_3" + +/turf/open/shuttle/vehicle/floor_1_5 + icon_state = "floor_1_5" + +/turf/open/shuttle/vehicle/floor_1_6 + icon_state = "floor_1_6" + +/turf/open/shuttle/vehicle/floor_1_7 + icon_state = "floor_1_7" + +/turf/open/shuttle/vehicle/floor_1_8 + icon_state = "floor_1_8" + +/turf/open/shuttle/vehicle/floor_1_9 + icon_state = "floor_1_9" + +/turf/open/shuttle/vehicle/floor_3 + icon_state = "floor_3" + +/turf/open/shuttle/vehicle/floor_3_10_1 + icon_state = "floor_3_10_1" + +/turf/open/shuttle/vehicle/floor_3_11 + icon_state = "floor_3_11" + +/turf/open/shuttle/vehicle/floor_3_12 + icon_state = "floor_3_12" + +/turf/open/shuttle/vehicle/floor_3_13 + icon_state = "floor_3_13" + +/turf/open/shuttle/vehicle/floor_3_1_1 + icon_state = "floor_3_1_1" + +/turf/open/shuttle/vehicle/floor_3_3 + icon_state = "floor_3_3" + +/turf/open/shuttle/vehicle/floor_3_4 + icon_state = "floor_3_4" + +/turf/open/shuttle/vehicle/floor_3_5 + icon_state = "floor_3_5" + +/turf/open/shuttle/vehicle/floor_3_6 + icon_state = "floor_3_6" + +/turf/open/shuttle/vehicle/floor_3_7 + icon_state = "floor_3_7" + +/turf/open/shuttle/vehicle/floor_3_7_1 + icon_state = "floor_3_7_1" + +/turf/open/shuttle/vehicle/floor_3_8 + icon_state = "floor_3_8" + +/turf/open/shuttle/vehicle/floor_3_8_1 + icon_state = "floor_3_8_1" + +/turf/open/shuttle/vehicle/floor_3_9 + icon_state = "floor_3_9" + +/turf/open/shuttle/vehicle/floor_3_9_1 + icon_state = "floor_3_9_1" diff --git a/code/game/turfs/shiva.dm b/code/game/turfs/shiva.dm index 4c5a73221173..26e9cbb29c18 100644 --- a/code/game/turfs/shiva.dm +++ b/code/game/turfs/shiva.dm @@ -2,3 +2,285 @@ /turf/open/floor/shiva //Instance me! icon = 'icons/turf/floors/ice_colony/shiva_floor.dmi' icon_state = "floor" + +/turf/open/floor/shiva/blue + icon_state = "blue" + +/turf/open/floor/shiva/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/green + icon_state = "green" + +/turf/open/floor/shiva/green/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/purple + icon_state = "purple" + +/turf/open/floor/shiva/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/red + icon_state = "red" + +/turf/open/floor/shiva/red/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/wred + icon_state = "wred" + +/turf/open/floor/shiva/wred/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/yellow + icon_state = "yellow" + +/turf/open/floor/shiva/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/blue/north + dir = NORTH + +/turf/open/floor/shiva/green/north + dir = NORTH + +/turf/open/floor/shiva/greencorners + icon_state = "greencorners" + +/turf/open/floor/shiva/greencorners/north + dir = NORTH + +/turf/open/floor/shiva/multi_tiles + icon_state = "multi_tiles" + +/turf/open/floor/shiva/multi_tiles/north + dir = NORTH + +/turf/open/floor/shiva/purple/north + dir = NORTH + +/turf/open/floor/shiva/purplefull + icon_state = "purplefull" + +/turf/open/floor/shiva/purplefull/north + dir = NORTH + +/turf/open/floor/shiva/red/north + dir = NORTH + +/turf/open/floor/shiva/redcorners + icon_state = "redcorners" + +/turf/open/floor/shiva/redcorners/north + dir = NORTH + +/turf/open/floor/shiva/snow_mat + icon_state = "snow_mat" + +/turf/open/floor/shiva/snow_mat/north + dir = NORTH + +/turf/open/floor/shiva/wred/north + dir = NORTH + +/turf/open/floor/shiva/wredcorners + icon_state = "wredcorners" + +/turf/open/floor/shiva/wredcorners/north + dir = NORTH + +/turf/open/floor/shiva/yellow/north + dir = NORTH + +/turf/open/floor/shiva/yellowcorners + icon_state = "yellowcorners" + +/turf/open/floor/shiva/yellowcorners/north + dir = NORTH + +/turf/open/floor/shiva/north + dir = NORTH + +/turf/open/floor/shiva/blue/east + dir = EAST + +/turf/open/floor/shiva/green/east + dir = EAST + +/turf/open/floor/shiva/greencorners/east + dir = EAST + +/turf/open/floor/shiva/multi_tiles/east + dir = EAST + +/turf/open/floor/shiva/purple/east + dir = EAST + +/turf/open/floor/shiva/purplefull/east + dir = EAST + +/turf/open/floor/shiva/red/east + dir = EAST + +/turf/open/floor/shiva/redcorners/east + dir = EAST + +/turf/open/floor/shiva/snow_mat/east + dir = EAST + +/turf/open/floor/shiva/wred/east + dir = EAST + +/turf/open/floor/shiva/wredcorners/east + dir = EAST + +/turf/open/floor/shiva/yellow/east + dir = EAST + +/turf/open/floor/shiva/yellowcorners/east + dir = EAST + +/turf/open/floor/shiva/blue/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/green/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/purple/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/red/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/wred/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/green/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/red/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/wred/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/blue/west + dir = WEST + +/turf/open/floor/shiva/bluecorners + icon_state = "bluecorners" + +/turf/open/floor/shiva/bluecorners/west + dir = WEST + +/turf/open/floor/shiva/bluefull + icon_state = "bluefull" + +/turf/open/floor/shiva/bluefull/west + dir = WEST + +/turf/open/floor/shiva/green/west + dir = WEST + +/turf/open/floor/shiva/greencorners/west + dir = WEST + +/turf/open/floor/shiva/greenfull + icon_state = "greenfull" + +/turf/open/floor/shiva/greenfull/west + dir = WEST + +/turf/open/floor/shiva/multi_tiles/west + dir = WEST + +/turf/open/floor/shiva/purple/west + dir = WEST + +/turf/open/floor/shiva/purplecorners + icon_state = "purplecorners" + +/turf/open/floor/shiva/purplecorners/west + dir = WEST + +/turf/open/floor/shiva/purplefull/west + dir = WEST + +/turf/open/floor/shiva/red/west + dir = WEST + +/turf/open/floor/shiva/redcorners/west + dir = WEST + +/turf/open/floor/shiva/redfull + icon_state = "redfull" + +/turf/open/floor/shiva/redfull/west + dir = WEST + +/turf/open/floor/shiva/snow_mat/west + dir = WEST + +/turf/open/floor/shiva/wred/west + dir = WEST + +/turf/open/floor/shiva/wredcorners/west + dir = WEST + +/turf/open/floor/shiva/yellow/west + dir = WEST + +/turf/open/floor/shiva/yellowcorners/west + dir = WEST + +/turf/open/floor/shiva/yellowfull + icon_state = "yellowfull" + +/turf/open/floor/shiva/yellowfull/west + dir = WEST + +/turf/open/floor/shiva/blue/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/green/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/purple/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/red/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/wred/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/floor3 + icon_state = "floor3" + +/turf/open/floor/shiva/radiator_tile + icon_state = "radiator_tile" + +/turf/open/floor/shiva/radiator_tile2 + icon_state = "radiator_tile2" + +/turf/open/floor/shiva/wredfull + icon_state = "wredfull" diff --git a/code/game/turfs/strata.dm b/code/game/turfs/strata.dm index a89f98a732ae..e561ddbc5501 100644 --- a/code/game/turfs/strata.dm +++ b/code/game/turfs/strata.dm @@ -17,6 +17,9 @@ /turf/open/gm/dirtgrassborder/weedable/is_weedable() //Gotta have our sexy grass borders be weedable. return FULLY_WEEDABLE +/turf/open/gm/dirtgrassborder/weedable/grass1 + icon_state = "grass1" + /turf/closed/gm/dense/weedable /turf/closed/gm/dense/weedable/is_weedable() //Weed-able jungle walls. Notably crushers can slam through this, so that might cause overlay issues. 3 months later, yeah it causes overlay issues, so return FALSE! @@ -25,3 +28,257 @@ /turf/open/floor/strata //Instance me! icon = 'icons/turf/floors/strata_floor.dmi' icon_state = "floor" + +/turf/open/floor/strata/grey_multi_tiles + color = "#5e5d5d" + icon_state = "multi_tiles" + +/turf/open/floor/strata/grey_multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/faux_wood + desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means." + icon = 'icons/turf/floors/floors.dmi' + icon_state = "wood" + +/turf/open/floor/strata/faux_metal + desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know." + icon = 'icons/turf/floors/floors.dmi' + icon_state = "wood" + +/turf/open/floor/strata/multi_tiles + icon_state = "multi_tiles" + +/turf/open/floor/strata/multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/white_cyan3 + icon_state = "white_cyan3" + +/turf/open/floor/strata/white_cyan3/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/blue4 + icon_state = "blue4" + +/turf/open/floor/strata/blue4/north + dir = NORTH + +/turf/open/floor/strata/red3 + icon_state = "red3" + +/turf/open/floor/strata/red3/north + dir = NORTH + +/turf/open/floor/strata/white_cyan3/north + dir = NORTH + +/turf/open/floor/strata/white_cyan4 + icon_state = "white_cyan4" + +/turf/open/floor/strata/white_cyan4/north + dir = NORTH + +/turf/open/floor/strata/red3/south + dir = SOUTH + +/turf/open/floor/strata/white_cyan3/south + dir = SOUTH + +/turf/open/floor/strata/white_cyan4/south + dir = SOUTH + +/turf/open/floor/strata/blue3 + icon_state = "blue3" + +/turf/open/floor/strata/blue3/east + dir = EAST + +/turf/open/floor/strata/cyan1 + icon_state = "cyan1" + +/turf/open/floor/strata/cyan1/east + dir = EAST + +/turf/open/floor/strata/cyan2 + icon_state = "cyan2" + +/turf/open/floor/strata/cyan2/east + dir = EAST + +/turf/open/floor/strata/cyan3 + icon_state = "cyan3" + +/turf/open/floor/strata/cyan3/east + dir = EAST + +/turf/open/floor/strata/cyan4 + icon_state = "cyan4" + +/turf/open/floor/strata/cyan4/east + dir = EAST + +/turf/open/floor/strata/floor3 + icon_state = "floor3" + +/turf/open/floor/strata/floor3/east + dir = EAST + +/turf/open/floor/strata/orange_edge + icon_state = "orange_edge" + +/turf/open/floor/strata/orange_edge/east + dir = EAST + +/turf/open/floor/strata/red3/east + dir = EAST + +/turf/open/floor/strata/white_cyan1 + icon_state = "white_cyan1" + +/turf/open/floor/strata/white_cyan1/east + dir = EAST + +/turf/open/floor/strata/white_cyan3/east + dir = EAST + +/turf/open/floor/strata/white_cyan4/east + dir = EAST + +/turf/open/floor/strata/white_cyan3/northeast + dir = NORTHEAST + +/turf/open/floor/strata/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/strata/white_cyan3/southeast + dir = SOUTHEAST + +/turf/open/floor/strata/blue3/west + dir = WEST + +/turf/open/floor/strata/cyan3/west + dir = WEST + +/turf/open/floor/strata/multi_tiles/west + dir = WEST + +/turf/open/floor/strata/orange_edge/west + dir = WEST + +/turf/open/floor/strata/red3/west + dir = WEST + +/turf/open/floor/strata/white_cyan2 + icon_state = "white_cyan2" + +/turf/open/floor/strata/white_cyan2/west + dir = WEST + +/turf/open/floor/strata/white_cyan3/west + dir = WEST + +/turf/open/floor/strata/white_cyan4/west + dir = WEST + +/turf/open/floor/strata/white_cyan3/northwest + dir = NORTHWEST + +/turf/open/floor/strata/blue1 + icon_state = "blue1" + +/turf/open/floor/strata/blue3/north + dir = NORTH + +/turf/open/floor/strata/damaged3 + icon_state = "damaged3" + +/turf/open/floor/strata/fake_wood + icon_state = "fake_wood" + +/turf/open/floor/strata/floor2 + icon_state = "floor2" + +/turf/open/floor/strata/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/strata/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/strata/green1 + icon_state = "green1" + +/turf/open/floor/strata/green3 + icon_state = "green3" + +/turf/open/floor/strata/green3/north + dir = NORTH + +/turf/open/floor/strata/green3/east + dir = EAST + +/turf/open/floor/strata/green3/northeast + dir = NORTHEAST + +/turf/open/floor/strata/green3/west + dir = WEST + +/turf/open/floor/strata/green3/northwest + dir = NORTHWEST + +/turf/open/floor/strata/green4 + icon_state = "green4" + +/turf/open/floor/strata/green4/north + dir = NORTH + +/turf/open/floor/strata/green4/east + dir = EAST + +/turf/open/floor/strata/green4/west + dir = WEST + +/turf/open/floor/strata/orange_cover + icon_state = "orange_cover" + +/turf/open/floor/strata/orange_icorner + icon_state = "orange_icorner" + +/turf/open/floor/strata/orange_icorner/north + dir = NORTH + +/turf/open/floor/strata/orange_icorner/west + dir = WEST + +/turf/open/floor/strata/orange_tile + icon_state = "orange_tile" + +/turf/open/floor/strata/purp1 + icon_state = "purp1" + +/turf/open/floor/strata/purp2 + icon_state = "purp2" + +/turf/open/floor/strata/purp3 + icon_state = "purp3" + +/turf/open/floor/strata/purp3/east + dir = EAST + +/turf/open/floor/strata/red1 + icon_state = "red1" + +/turf/open/floor/strata/red2 + icon_state = "red2" + +/turf/open/floor/strata/red4 + icon_state = "red4" + +/turf/open/floor/strata/red4/north + dir = NORTH + +/turf/open/floor/strata/red4/east + dir = EAST + +/turf/open/floor/strata/red4/west + dir = WEST diff --git a/code/modules/admin/view_variables/debug_variables.dm b/code/modules/admin/view_variables/debug_variables.dm index f099db67c717..356843918f2d 100644 --- a/code/modules/admin/view_variables/debug_variables.dm +++ b/code/modules/admin/view_variables/debug_variables.dm @@ -4,11 +4,12 @@ var/header if(D) if(islist(D)) + var/list/var_list = D var/index = name if (value) - name = D[name] //name is really the index until this line + name = var_list[name] //name is really the index until this line else - value = D[name] + value = var_list[name] header = "
  • [VV_HREF_TARGET_1V(D, VV_HK_LIST_EDIT, "E", index)][VV_HREF_TARGET_1V(D, VV_HK_LIST_CHANGE, "C", index)][VV_HREF_TARGET_1V(D, VV_HK_LIST_REMOVE, "-", index)] " else header = "
  • [VV_HREF_TARGET_1V(D, VV_HK_BASIC_EDIT, "E", name)][VV_HREF_TARGET_1V(D, VV_HK_BASIC_CHANGE, "C", name)][VV_HREF_TARGET_1V(D, VV_HK_BASIC_MASSEDIT, "M", name)] " diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm index 15340bc1aae2..e6cf78611a7f 100644 --- a/code/modules/clothing/suits/marine_armor/_marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -521,6 +521,19 @@ icon_state = "c_VL_syn_camo" flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE +/obj/item/clothing/suit/storage/marine/light/recon + name = "M3-R pattern light armor" + desc = "Special issue light armor for forward econnaissance Marines. Offers similar protection as M3 armor but none of the slowdown." + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + // M3-EOD pattern heavy armor /obj/item/clothing/suit/storage/marine/heavy name = "\improper M3-EOD pattern heavy armor" diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index 8d5a478fa620..5ba670d89bc1 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -483,6 +483,7 @@ new /obj/item/storage/box/m94/signal(src) new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/encryptionkey/jtac(src) + new /obj/item/storage/backpack/marine/satchel/rto(src) /obj/item/storage/box/kit/mini_intel name = "\improper Field Intelligence Support Kit" @@ -493,7 +494,7 @@ new /obj/item/device/encryptionkey/intel(src) new /obj/item/pamphlet/skill/intel(src) new /obj/item/device/motiondetector/intel(src) - new /obj/item/storage/pouch/document/small(src) + new /obj/item/storage/pouch/document(src) /obj/item/storage/box/kit/mini_grenadier name = "\improper Frontline M40 Grenadier Kit" diff --git a/code/modules/desert_dam/filtration/structures.dm b/code/modules/desert_dam/filtration/structures.dm index b8448e30370d..558f047dd3c9 100644 --- a/code/modules/desert_dam/filtration/structures.dm +++ b/code/modules/desert_dam/filtration/structures.dm @@ -3,6 +3,27 @@ icon = 'icons/turf/floors/filtration.dmi' icon_state = "filtrationside" +/turf/open/floor/filtrationside/southwest + dir = SOUTHWEST + +/turf/open/floor/filtrationside/north + dir = NORTH + +/turf/open/floor/filtrationside/east + dir = EAST + +/turf/open/floor/filtrationside/northeast + dir = NORTHEAST + +/turf/open/floor/filtrationside/southeast + dir = SOUTHEAST + +/turf/open/floor/filtrationside/west + dir = WEST + +/turf/open/floor/filtrationside/northwest + dir = NORTHWEST + /turf/open/floor/plating/catwalk/rusted icon = 'icons/turf/floors/filtration.dmi' icon_state = "grate" @@ -14,6 +35,78 @@ name = "coagulation" icon = 'icons/turf/floors/coagulation.dmi' +/turf/open/floor/coagulation/icon0_0 + icon_state = "0,0" + +/turf/open/floor/coagulation/icon0_4 + icon_state = "0,4" + +/turf/open/floor/coagulation/icon0_5 + icon_state = "0,5" + +/turf/open/floor/coagulation/icon0_8 + icon_state = "0,8" + +/turf/open/floor/coagulation/icon1_1 + icon_state = "1,1" + +/turf/open/floor/coagulation/icon1_7 + icon_state = "1,7" + +/turf/open/floor/coagulation/icon2_0 + icon_state = "2,0" + +/turf/open/floor/coagulation/icon4_8 + icon_state = "4,8" + +/turf/open/floor/coagulation/icon5_8 + icon_state = "5,8" + +/turf/open/floor/coagulation/icon6_8 + icon_state = "6,8" + +/turf/open/floor/coagulation/icon6_8_2 + icon_state = "6,8-2" + +/turf/open/floor/coagulation/icon7_0 + icon_state = "7,0" + +/turf/open/floor/coagulation/icon7_1 + icon_state = "7,1" + +/turf/open/floor/coagulation/icon7_7 + icon_state = "7,7" + +/turf/open/floor/coagulation/icon7_7_2 + icon_state = "7,7-2" + +/turf/open/floor/coagulation/icon7_8 + icon_state = "7,8" + +/turf/open/floor/coagulation/icon7_8_2 + icon_state = "7,8-2" + +/turf/open/floor/coagulation/icon8_0 + icon_state = "8,0" + +/turf/open/floor/coagulation/icon8_3 + icon_state = "8,3" + +/turf/open/floor/coagulation/icon8_4 + icon_state = "8,4" + +/turf/open/floor/coagulation/icon8_6 + icon_state = "8,6" + +/turf/open/floor/coagulation/icon8_7 + icon_state = "8,7" + +/turf/open/floor/coagulation/icon8_7_2 + icon_state = "8,7-2" + +/turf/open/floor/coagulation/icon8_8 + icon_state = "8,8" + /obj/structure/filtration/coagulation name = "coagulation" icon = 'icons/turf/floors/coagulation.dmi' diff --git a/code/modules/gear_presets/contractor.dm b/code/modules/gear_presets/contractor.dm index 3f0cdecb9ac2..f49b78609945 100644 --- a/code/modules/gear_presets/contractor.dm +++ b/code/modules/gear_presets/contractor.dm @@ -457,7 +457,7 @@ new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/tactical, WEAR_EYES) @@ -562,7 +562,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/tactical, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) @@ -606,7 +606,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/carbine/tactical, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding/superior, WEAR_EYES) @@ -653,7 +653,7 @@ new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) @@ -707,7 +707,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/sensor, WEAR_EYES) @@ -792,7 +792,7 @@ new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/experimental_mesons, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/cosmetic, WEAR_IN_HELMET) //body new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/wy_davisone, WEAR_BODY) diff --git a/code/modules/gear_presets/uscm_forecon.dm b/code/modules/gear_presets/uscm_forecon.dm new file mode 100644 index 000000000000..dfe4e7dd8d5c --- /dev/null +++ b/code/modules/gear_presets/uscm_forecon.dm @@ -0,0 +1,255 @@ +/datum/equipment_preset/uscm/forecon + assignment = JOB_SQUAD_MARINE + rank = JOB_SQUAD_MARINE + paygrade = PAY_SHORT_ME5 + idtype = /obj/item/card/id/dogtag + role_comm_title = "FORECON" + rank = JOB_MARINE + faction_group = list(FACTION_MARINE) + flags = EQUIPMENT_PRESET_START_OF_ROUND + auto_squad_name = SQUAD_FORECON + ert_squad = TRUE + +/datum/equipment_preset/uscm/forecon/New() + . = ..() + access = get_access(ACCESS_LIST_UA) + + dress_shoes = list(/obj/item/clothing/shoes/dress) + dress_gloves = list(/obj/item/clothing/gloves/marine/dress) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + +/datum/equipment_preset/uscm/forecon/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/recon(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + +/datum/equipment_preset/uscm/forecon/proc/add_forecon_weapon(mob/living/carbon/human/new_human) + var/random_gun = rand(1,3) + switch(random_gun) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/extended(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/extended(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap(new_human), WEAR_IN_BACK) + if(3) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ext(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ext(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ap(new_human), WEAR_IN_BACK) + +/datum/equipment_preset/uscm/forecon/proc/spawn_random_headgear(mob/living/carbon/human/new_human) + var/i = rand(1,10) + switch(i) + if (1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD) + if (3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beanie(new_human), WEAR_HEAD) + if (5 , 6) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/durag(new_human), WEAR_HEAD) + if (7 , 8) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) + if (9) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + +/datum/equipment_preset/uscm/forecon/proc/add_forecon_weapon_pistol(mob/living/carbon/human/new_human) + var/random_pistol = rand(1,5) + switch(random_pistol) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + if(3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m39, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(new_human), WEAR_IN_BELT) + if(5) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human),WEAR_WAIST) + +/datum/equipment_preset/uscm/forecon/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/forecon/standard + name = "USCM Reconnaissance Marine" + assignment = JOB_FORECON_RIFLEMAN + rank = JOB_SQUAD_MARINE + role_comm_title = "RFN" + minimap_icon = "" + skills = /datum/skills/military/survivor/forecon_standard + +/datum/equipment_preset/uscm/forecon/standard/load_gear(mob/living/carbon/human/new_human) + ..() + spawn_random_headgear(new_human) + add_forecon_weapon_pistol(new_human) + add_forecon_weapon(new_human) + +/datum/equipment_preset/uscm/forecon/tech + name = "USCM Reconnaissance Support Technician" + assignment = JOB_FORECON_SUPPORT + rank = JOB_SQUAD_MEDIC + role_comm_title = "SuppTech" + minimap_icon = "engi" + skills = /datum/skills/military/survivor/forecon_techician + +/datum/equipment_preset/uscm/forecon/tech/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/big(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + ..() + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + add_forecon_weapon(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/marksman + name = "USCM Reconnaissance Designated Marksman" + assignment = JOB_FORECON_MARKSMAN + rank = JOB_SQUAD_SPECIALIST + role_comm_title = "DMR" + minimap_icon = "spec" + skills = /datum/skills/military/survivor/forecon_marksman + +/datum/equipment_preset/uscm/forecon/marksman/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/M3S, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra_custom/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom/impact(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary(new_human), WEAR_IN_BACK) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + ..() + add_forecon_weapon_pistol(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/smartgunner + name = "USCM Reconnaissance Smartgunner" + assignment = JOB_FORECON_SMARTGUNNER + rank = JOB_SQUAD_SMARTGUN + role_comm_title = "SG" + minimap_icon = "smartgunner" + skills = /datum/skills/military/survivor/forecon_smartgunner + +/datum/equipment_preset/uscm/forecon/smartgunner/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/squad_leader + name = "USCM Reconnaissance Squad Leader" + assignment = JOB_FORECON_SL + rank = JOB_SQUAD_LEADER + role_comm_title = "SL" + skills = /datum/skills/military/survivor/forecon_squad_leader + paygrade = PAY_SHORT_MO1 + + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + +/datum/equipment_preset/uscm/forecon/squad_leader/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/o1/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1/tactical(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human), WEAR_IN_BACK) + ..() + add_forecon_weapon_pistol(new_human) + spawn_random_headgear(new_human) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm index ee084e77a5a0..8117eade469a 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm @@ -36,6 +36,7 @@ // TODO Make immune to all damage here. to_chat(src, SPAN_XENOWARNING("We burrow ourselves into the ground.")) invisibility = 101 + alpha = 100 anchored = TRUE if(caste.fire_immunity == FIRE_IMMUNITY_NONE) RegisterSignal(src, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_immune)) @@ -72,6 +73,7 @@ )) remove_traits(list(TRAIT_ABILITY_BURROWED, TRAIT_UNDENSE, TRAIT_IMMOBILIZED), TRAIT_SOURCE_ABILITY("Burrow")) invisibility = FALSE + alpha = initial(alpha) anchored = FALSE playsound(loc, 'sound/effects/burrowoff.ogg', 25) for(var/mob/living/carbon/mob in loc) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm index 39b05b964648..c5988f12539d 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm @@ -566,3 +566,18 @@ var/mob/living/carbon/xenomorph/xeno = owner xeno.xeno_tacmap() return ..() + +/datum/action/xeno_action/active_toggle/toggle_meson_vision + name = "Toggle Meson Vision" + action_icon_state = "project_xeno" + plasma_cost = 0 + action_type = XENO_ACTION_CLICK + ability_primacy = XENO_PRIMARY_ACTION_5 + +/datum/action/xeno_action/active_toggle/toggle_meson_vision/enable_toggle() + . = ..() + owner.sight |= SEE_TURFS + +/datum/action/xeno_action/active_toggle/toggle_meson_vision/disable_toggle() + . = ..() + owner.sight &= ~SEE_TURFS diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm index 294817f5e74e..106dcdcacb62 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm @@ -66,6 +66,7 @@ /datum/action/xeno_action/onclick/place_trap, //second macro /datum/action/xeno_action/activable/burrow, //third macro /datum/action/xeno_action/onclick/tremor, //fourth macro + /datum/action/xeno_action/active_toggle/toggle_meson_vision, /datum/action/xeno_action/onclick/tacmap, ) @@ -82,10 +83,6 @@ weed_food_states = list("Burrower_1","Burrower_2","Burrower_3") weed_food_states_flipped = list("Burrower_1","Burrower_2","Burrower_3") -/mob/living/carbon/xenomorph/burrower/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number) - . = ..() - sight |= SEE_TURFS - /mob/living/carbon/xenomorph/burrower/ex_act(severity) if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) return diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm index 43fb8b4976f2..8024ed366405 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm @@ -71,6 +71,7 @@ /datum/action/xeno_action/activable/secrete_resin/hivelord, //third macro /datum/action/xeno_action/activable/transfer_plasma/hivelord, // to be consistent with drone placement /datum/action/xeno_action/active_toggle/toggle_speed, //fourth macro + /datum/action/xeno_action/active_toggle/toggle_meson_vision, /datum/action/xeno_action/onclick/tacmap, ) diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm index 538aacc63722..747463eb5ee5 100644 --- a/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm @@ -70,6 +70,10 @@ var/turf/target_turf = get_turf(target_atom) if(!target_turf) return + + if(!(target_turf in view(10, owner))) + to_chat(owner, SPAN_XENONOTICE("We must have a direct line of sight!")) + return /// Check if the target is a resin door and open or close it if(istype(target_atom, /obj/structure/mineral_door/resin)) diff --git a/code/modules/organs/limbs.dm b/code/modules/organs/limbs.dm index 37ebac207c28..b4086ee898e2 100644 --- a/code/modules/organs/limbs.dm +++ b/code/modules/organs/limbs.dm @@ -477,7 +477,7 @@ This function completely restores a damaged organ to perfect condition. if(!(status & LIMB_SPLINTED_INDESTRUCTIBLE) && (status & LIMB_SPLINTED) && damage > 5 && prob(50 + damage * 2.5)) //If they have it splinted, the splint won't hold. status &= ~LIMB_SPLINTED playsound(get_turf(loc), 'sound/items/splintbreaks.ogg', 20) - to_chat(owner, SPAN_DANGER("The splint on your [display_name] comes apart!")) + to_chat(owner, SPAN_HIGHDANGER("The splint on your [display_name] comes apart!")) owner.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED) owner.update_med_icon() diff --git a/code/modules/paperwork/notepad.dm b/code/modules/paperwork/notepad.dm index 04a3d765ea1d..bbfec5428830 100644 --- a/code/modules/paperwork/notepad.dm +++ b/code/modules/paperwork/notepad.dm @@ -118,6 +118,9 @@ else to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!")) +/obj/item/notepad/proc/operator[](index_num) + return contents[index_num] + /obj/item/notepad/verb/rename() set name = "Rename notepad" set category = "Object" diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm index 78ba3c8a7e72..c0d9bee3aa85 100644 --- a/code/modules/paperwork/paper_bundle.dm +++ b/code/modules/paperwork/paper_bundle.dm @@ -175,6 +175,9 @@ else to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!")) +/obj/item/paper_bundle/proc/operator[](index_num) + return contents[index_num] + /obj/item/paper_bundle/verb/rename() set name = "Rename bundle" set category = "Object" diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index b631f093bafe..ad85220400fb 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1587,6 +1587,11 @@ /obj/item/weapon/gun/rifle/m4ra/training current_mag = /obj/item/ammo_magazine/rifle/m4ra/rubber +/obj/item/weapon/gun/rifle/m4ra/tactical + current_mag = /obj/item/ammo_magazine/rifle/m4ra/ext + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip) + + //------------------------------------------------------- //L42A Battle Rifle diff --git a/code/modules/projectiles/guns/specialist/scout.dm b/code/modules/projectiles/guns/specialist/scout.dm index c2c5abd54add..8443e59580cc 100644 --- a/code/modules/projectiles/guns/specialist/scout.dm +++ b/code/modules/projectiles/guns/specialist/scout.dm @@ -81,3 +81,6 @@ if(!skillcheck(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && user.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SCOUT) to_chat(user, SPAN_WARNING("You don't seem to know how to use \the [src]...")) return FALSE + +/obj/item/weapon/gun/rifle/m4ra_custom/tactical + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet, /obj/item/attachable/angledgrip) diff --git a/code/modules/projectiles/magazines/flamer.dm b/code/modules/projectiles/magazines/flamer.dm index 24afe13c6297..2bdc0546c2c9 100644 --- a/code/modules/projectiles/magazines/flamer.dm +++ b/code/modules/projectiles/magazines/flamer.dm @@ -244,7 +244,7 @@ max_duration = 50 /obj/item/ammo_magazine/flamer_tank/smoke - name = "Custom incinerator smoke tank" + name = "custom incinerator smoke tank" desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it." matter = list("metal" = 3750) flamer_chem = null @@ -252,7 +252,7 @@ //tanks printable by the research biomass machine /obj/item/ammo_magazine/flamer_tank/custom/upgraded - name = "Upgraded custom incinerator tank" + name = "upgraded custom incinerator tank" desc = "A fuel tank used to store fuel for use in the M240 incinerator unit. This one has been modified with a larger and more sophisticated internal propellant tank, allowing for bigger capacity and stronger fuels." matter = list("metal" = 50) // no free metal flamer_chem = null @@ -264,7 +264,7 @@ custom = TRUE /obj/item/ammo_magazine/flamer_tank/smoke/upgraded - name = "Large custom incinerator smoke tank" + name = "large custom incinerator smoke tank" desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it. This one has been outfitted with an upgraded internal compressor, allowing for bigger capacity." matter = list("metal" = 50) //no free metal flamer_chem = null diff --git a/code/modules/reagents/Chemistry-Generator.dm b/code/modules/reagents/Chemistry-Generator.dm index 79efe2ef4453..813e0d9686bd 100644 --- a/code/modules/reagents/Chemistry-Generator.dm +++ b/code/modules/reagents/Chemistry-Generator.dm @@ -319,33 +319,6 @@ //*****************************************************************************************************/ /datum/reagent/proc/insert_property(property, level) - //The list below defines what properties should override each other. - var/list/conflicting_properties = list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\ - PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\ - PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\ - PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\ - PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\ - PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\ - PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\ - PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING, - PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC, - PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \ - PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC, PROPERTY_MUSCLESTIMULATING = PROPERTY_NERVESTIMULATING) - //The list below defines which properties should be combined into a combo property - var/list/combining_properties = list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\ - PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\ - PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\ - PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\ - PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\ - PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\ - PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\ - PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING),\ - PROPERTY_FIRE_PENETRATING = list(PROPERTY_OXYGENATING, PROPERTY_VISCOUS),\ - PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\ - PROPERTY_ENCEPHALOPHRASIVE = list(PROPERTY_NERVESTIMULATING, PROPERTY_PSYCHOSTIMULATING)) var/datum/chem_property/match var/datum/chem_property/initial_property for(var/datum/chem_property/P in properties) @@ -353,8 +326,8 @@ match = P else //Handle properties that combine - for(var/C in combining_properties) - var/list/combo = combining_properties[C] + for(var/C in GLOB.combining_properties) + var/list/combo = GLOB.combining_properties[C] if(!combo.Find(property) || !combo.Find(P.name)) continue var/pieces = 0 @@ -372,11 +345,11 @@ LAZYREMOVE(properties, R) break //Handle properties that conflict - for(var/C in conflicting_properties) - if(property == C && P.name == conflicting_properties[C]) + for(var/C in GLOB.conflicting_properties) + if(property == C && P.name == GLOB.conflicting_properties[C]) match = P break - else if (property == conflicting_properties[C] && C == P.name) + else if (property == GLOB.conflicting_properties[C] && C == P.name) match = P break if(match) diff --git a/code/modules/reagents/chemical_research/Chemical-Research.dm b/code/modules/reagents/chemical_research/Chemical-Research.dm index 2050e7e8e607..a05bc132734d 100644 --- a/code/modules/reagents/chemical_research/Chemical-Research.dm +++ b/code/modules/reagents/chemical_research/Chemical-Research.dm @@ -87,8 +87,8 @@ GLOBAL_DATUM_INIT(chemical_data, /datum/chemical_data, new) if(P.category & PROPERTY_TYPE_UNADJUSTABLE || P.category & PROPERTY_TYPE_ANOMALOUS) continue property_names += P.name - for(var/name in research_property_data) - property_names -= name + for(var/datum/chem_property/property in research_property_data) + property_names -= property.name if(LAZYLEN(property_names)) has_new_properties = TRUE for(var/name in property_names) diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm index 650b6cefbae9..13e051f5dc20 100644 --- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm +++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm @@ -1,3 +1,4 @@ +//mode datums at the bottom. #define MODE_AMPLIFY 1 #define MODE_SUPPRESS 2 #define MODE_RELATE 3 @@ -40,7 +41,6 @@ var/ready = FALSE var/template_filter = PROPERTY_TYPE_ALL - var/complexity_editor = FALSE var/creation_template var/creation_complexity = list(CHEM_CLASS_COMMON, CHEM_CLASS_UNCOMMON, CHEM_CLASS_RARE) var/creation_name = "" @@ -62,29 +62,29 @@ ..() if(inoperable()) icon_state = "modifier_off" - SSnano.nanomanager.update_uis(src) // update all UIs attached to src /obj/structure/machinery/chem_simulator/attackby(obj/item/B, mob/living/user) if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use this.")) return if(istype(B, /obj/item/paper/research_notes)) - var/obj/item/paper/research_notes/N = B + var/obj/item/paper/research_notes/note = B if(!target || (mode == MODE_RELATE && !reference)) - B = N.convert_to_chem_report() + B = note.convert_to_chem_report() else to_chat(user, SPAN_WARNING("Chemical data already inserted.")) return if(istype(B, /obj/item/paper/research_report)) - if(!target) + var/obj/item/paper/research_report/note = B + if(!target && note.data) target = B ready = check_ready() - else if(mode == MODE_RELATE && !reference) - target_property = "" + else if(mode == MODE_RELATE && !reference && note.data) + target_property = null reference = B ready = check_ready() else - to_chat(user, SPAN_WARNING("Chemical data already inserted.")) + to_chat(user, SPAN_WARNING("Chemical data [note.data ? "is already inserted" : "is refused"]")) return else to_chat(user, SPAN_WARNING("[src] refuses [B].")) @@ -93,7 +93,6 @@ to_chat(user, SPAN_NOTICE("You insert [B] into [src].")) flick("[icon_state]_reading",src) update_costs() - SSnano.nanomanager.update_uis(src) // update all UIs attached to src /obj/structure/machinery/chem_simulator/attack_hand(mob/user as mob) if(inoperable()) @@ -101,256 +100,279 @@ if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use this.")) return - ui_interact(user) - -/obj/structure/machinery/chem_simulator/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 0) - var/list/data = list( - "rsc_credits" = GLOB.chemical_data.rsc_credits, - "target" = target, - "reference" = reference, - "mode" = mode, - "complexity_editor" = complexity_editor, - "property_costs" = property_costs, - "simulating" = simulating, - "status_bar" = status_bar, - "ready" = ready, - "od_lvl" = new_od_level, - "recipe_target" = recipe_target, - "recipe_targets" = list(), - "property_codings" = list() - ) - - if(simulating == SIMULATION_STAGE_FINAL) - for(var/reagent_id in recipe_targets) - var/datum/reagent/R = GLOB.chemical_reagents_list[reagent_id] - var/list/id_name[0] - id_name["[R.id]"] = R.name - data["recipe_targets"] += id_name + tgui_interact(user) - if(mode == MODE_CREATE) - data["creation_name"] = creation_name - data["creation_cost"] = creation_cost - data["complexity"] = complexity_to_string_list() - - //List of all available properties - data["property_data_list"] = list() - for(var/datum/chem_property/P in GLOB.chemical_data.research_property_data) - data["property_codings"][P.name] = P.code - if(template_filter && !HAS_FLAG(P.category, template_filter)) - continue - data["property_data_list"][P.name] = P.level - data["property_data_list"] = sortAssoc(data["property_data_list"]) - //List of enabled properties - data["target_property_list"] = list() - for(var/datum/chem_property/P in creation_template) - data["target_property_list"][P.name] = P.level - if(template_filter && !HAS_FLAG(P.category, template_filter)) - continue - //Override the editor level with the enabled property level - data["property_data_list"][P.name] = P.level - - data["template_filter"] = list( - "MED" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE), - "TOX" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT), - "STI" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT), - "REA" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT), - "IRR" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT), - "MET" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE) - ) - - else if(target && target.data && target.completed) - data["target_property_list"] = target.data.properties_to_assoc() - for(var/datum/chem_property/P in target.data.properties) - data["property_codings"][P.name] = P.code - - if(reference && reference.data && reference.completed) - data["reference_property_list"] = reference.data.properties_to_assoc() - for(var/datum/chem_property/P in reference.data.properties) - data["property_codings"][P.name] = P.code - - if(target_property) - data["target_property"] = target_property.name - data["target_info"] = target_property.description - data["target_categories"] = target_property.categories_to_string() - else - data["target_info"] = "" - - if(reference_property) - data["reference_property"] = reference_property.name - data["reference_info"] = reference_property.description - data["reference_categories"] = reference_property.categories_to_string() - else - data["reference_info"] = "" - - ui = SSnano.nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) +/obj/structure/machinery/chem_simulator/tgui_interact(mob/user, datum/tgui/ui) //death to the chem simulator! All Hail the new chem simulator! + ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, ui_key, "chem_simulator.tmpl", "Synthesis Simulator", 800, 550) - ui.set_initial_data(data) + ui = new(user, src, "ChemSimulator", "Chemical Simulator") ui.open() -/obj/structure/machinery/chem_simulator/Topic(href, href_list) +/obj/structure/machinery/chem_simulator/ui_data(mob/user) . = ..() - if(.) - return - if(inoperable() || !ishuman(usr)) - return - var/mob/living/carbon/human/user = usr - if(user.stat || user.is_mob_restrained() || !in_range(src, user)) - return + var/list/data = list() + data["status"] = status_bar + ready = check_ready() + data["is_ready"] = ready + data["can_simulate"] = (ready && simulating == SIMULATION_STAGE_OFF) + data["can_eject_target"] = ((target ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF) + data["can_eject_reference"] = ((reference ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF) + data["is_picking_recipe"] = (simulating == SIMULATION_STAGE_FINAL && mode != MODE_CREATE) + data["lock_control"] = (simulating != SIMULATION_STAGE_OFF) + data["can_cancel_simulation"] = (simulating <= SIMULATION_STAGE_WAIT) + data["estimated_cost"] = (mode == MODE_CREATE ? creation_cost : (!target_property ? "NULL" : property_costs[target_property.name])) + calculate_new_od_level() + data["od_level"] = new_od_level + data["chemical_name"] = (mode == MODE_CREATE ? (creation_name == "" ? "NAME NOT SET" : creation_name) : (isnull(target) ? "CHEMICAL DATA NOT INSERTED" : target.data.name)) + data["reference_name"] = (isnull(reference) ? "CHEMICAL DATA NOT INSERTED" : reference.data.name) if(mode == MODE_CREATE && GLOB.chemical_data.has_new_properties) update_costs() - if(href_list["simulate"] && ready) - simulating = SIMULATION_STAGE_BEGIN - status_bar = "COMMENCING SIMULATION" - icon_state = "modifier_running" - recipe_targets = list() //reset - start_processing() - if(mode == MODE_CREATE) - msg_admin_niche("[key_name(user)] has created the chemical: [creation_name]") - else if(href_list["ejectT"]) - if(target) - if(!user.put_in_active_hand(target)) - target.forceMove(loc) - target = null - target_property = null - stop_processing() - simulating = SIMULATION_STAGE_OFF - flick("[icon_state]_printing",src) - else if(href_list["ejectR"]) - if(reference) - if(!user.put_in_active_hand(reference)) - reference.forceMove(loc) - reference = null - reference_property = null - stop_processing() - simulating = SIMULATION_STAGE_OFF - flick("[icon_state]_printing",src) - else if(href_list["set_mode"]) - if(mode == MODE_CREATE) //for when you set the mode away from MODE_CREATE - target_property = null - reference_property = null - complexity_editor = FALSE - switch(href_list["set_mode"]) - if("amp") - mode = MODE_AMPLIFY - if("sup") - mode = MODE_SUPPRESS - if("rel") - mode = MODE_RELATE - if("cre") - mode = MODE_CREATE - target_property = null - reference_property = null - calculate_new_od_level() - if(mode == MODE_CREATE) - calculate_creation_cost() - update_costs() - else if(href_list["set_target"]) - if(simulating) - return - if(mode == MODE_CREATE) - var/target_name = href_list["set_target"] - for(var/datum/chem_property/P in GLOB.chemical_data.research_property_data) - if(P.name == target_name) - if(target_property && target_property.name == target_name) - //Toggle the property - if(LAZYISIN(creation_template, target_property)) - target_property.level = 0 - LAZYREMOVE(creation_template, target_property) - else - target_property.level = 1 - LAZYADD(creation_template, target_property) - calculate_creation_cost() - else - target_property = P + if(simulating == SIMULATION_STAGE_FINAL) + for(var/reagent_id in recipe_targets) + var/datum/reagent/recipe_option = GLOB.chemical_reagents_list[reagent_id] + data["reagent_option_data"] += list(list( + "id" = recipe_option.id, + "name" = recipe_option.name, + )) + if(target && length(target?.data?.properties)) + for(var/datum/chem_property/target_property_data in target.data.properties) + var/is_locked = FALSE + var/conflicting_tooltip = null + if(!isnull(reference_property)) + if(LAZYACCESS(GLOB.conflicting_properties, reference_property.name) == target_property_data.name || LAZYACCESS(GLOB.conflicting_properties, target_property_data.name) == reference_property.name ) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with the selected reference property!" + data["target_data"] += list(list( + "code" = target_property_data.code, + "level" = target_property_data.level, + "name" = target_property_data.name, + "desc" = target_property_data.description, + "cost" = property_costs[target_property_data.name], + "is_locked" = is_locked, + "tooltip" = conflicting_tooltip, + )) + else + data["target_data"] = null + + if(reference && length(reference?.data?.properties)) + for(var/datum/chem_property/reference_property_data in reference.data.properties) + var/is_locked = FALSE + var/conflicting_tooltip = null + if(!isnull(target_property)) + if(LAZYACCESS(GLOB.conflicting_properties, target_property.name) == reference_property_data.name || LAZYACCESS(GLOB.conflicting_properties, reference_property_data.name) == target_property.name ) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with the selected target property!" + data["reference_data"] += list(list( + "code" = reference_property_data.code, + "level" = reference_property_data.level, + "name" = capitalize_first_letters(reference_property_data.name), + "desc" = reference_property_data.description, + "cost" = property_costs[reference_property_data.name], + "is_locked" = is_locked, + "tooltip" = conflicting_tooltip, + )) + else + data["reference_data"] = null + data["template_filters"] = list( + "MED" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE), + "TOX" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT), + "STI" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT), + "REA" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT), + "IRR" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT), + "MET" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE) + ) + if(mode == MODE_CREATE) + for(var/datum/chem_property/known_properties in GLOB.chemical_data.research_property_data) + var/datum/chem_property/template_property + var/is_locked = FALSE + var/conflicting_tooltip = null + if(template_filter && !HAS_FLAG(known_properties.category, template_filter)) + continue + for(var/template in creation_template) + template_property = template + if(LAZYACCESS(GLOB.conflicting_properties, template_property.name) == known_properties.name || LAZYACCESS(GLOB.conflicting_properties, known_properties.name) == template_property.name) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with [template_property.code]!" + if(template_property.code == known_properties.code) break - else - target_property = target.data.get_property(href_list["set_target"]) - calculate_new_od_level() - if(simulating) + template_property = null + + data["known_properties"] += list(list( + "code" = known_properties.code, + "level" = (isnull(template_property) ? 0 : template_property.level) , + "name" = capitalize_first_letters(known_properties.name), + "desc" = known_properties.description, + "is_enabled" = LAZYISIN(creation_template, known_properties), + "is_locked" = is_locked, + "conflicting_tooltip" = conflicting_tooltip, + )) + if(!length(data["known_properties"])) + data["known_properties"] = null + data["complexity_list"] += complexity_to_string_list() + + return data + +/obj/structure/machinery/chem_simulator/ui_static_data(mob/user) + . = ..() + var/list/static_data = list() + for(var/modes in subtypesof(/datum/chemical_simulator_modes)) + var/datum/chemical_simulator_modes/modes_datum = modes + static_data["mode_data"] += list(list( + "name" = modes_datum.name, + "desc" = modes_datum.desc, + "mode_id" = modes_datum.mode_id, + "icon_type" = modes_datum.icon_type + )) + static_data["credits"] = GLOB.chemical_data.rsc_credits + return static_data + +/obj/structure/machinery/chem_simulator/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + switch(action) + if("change_mode") + mode = params["mode_id"] + update_costs() + if("eject_target") + if(target) + if(!usr.put_in_active_hand(target)) + target.forceMove(loc) + target = null + target_property = null stop_processing() - icon_state = "modifier" simulating = SIMULATION_STAGE_OFF - else if(href_list["set_reference"]) - reference_property = reference.data.get_property(href_list["set_reference"]) - if(simulating) + flick("[icon_state]_printing",src) + if("eject_reference") + if(reference) + if(!usr.put_in_active_hand(reference)) + reference.forceMove(loc) + reference = null + reference_property = null + stop_processing() + flick("[icon_state]_printing",src) + if("select_target_property") + if(mode != MODE_CREATE) + if(!target) + return + for(var/datum/chem_property/target_prop in target.data.properties) + if(target_prop.code != params["property_code"]) + continue + target_property = target_prop + if(!target_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + if("select_reference_property") + if(!reference) + return + for(var/datum/chem_property/reference_prop in reference.data.properties) + if(reference_prop.code != params["property_code"]) + continue + reference_property = reference_prop + if(!reference_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + if("simulate") + if(!ready) + return + simulating = SIMULATION_STAGE_BEGIN + status_bar = "COMMENCING SIMULATION" + icon_state = "modifier_running" + recipe_targets = list() //reset + start_processing() + if(mode == MODE_CREATE) + msg_admin_niche("[key_name(usr)] has created the chemical: [creation_name]") + if("submit_recipe_pick") + if(recipe_target) + return + if(params["reagent_picked"] in recipe_targets) + recipe_target = params["reagent_picked"] + finalize_simulation(chem_cache) + recipe_target = null + if("cancel_simulation") stop_processing() icon_state = "modifier" simulating = SIMULATION_STAGE_OFF - update_costs() - else if(href_list["set_recipe_target"]) - recipe_target = href_list["set_recipe_target"] - else if(href_list["stop_simulation"]) - stop_processing() - icon_state = "modifier" - simulating = SIMULATION_STAGE_OFF - else if(href_list["finalize_simulation"] && recipe_target) - finalize_simulation(chem_cache) - //Template creation editor - else if(href_list["set_name"]) - var/newname = input("Set name for template (2-20 characters)","[src]") as text - newname = reject_bad_name(newname, TRUE, 20, FALSE) - if(isnull(newname)) - to_chat(user, "Bad name.") - else if(GLOB.chemical_reagents_list[newname]) - to_chat(user, "Name already taken.") - else - creation_name = newname - else if(href_list["set_level"] && target_property) - var/level_to_set = 1 - if(GLOB.chemical_data.clearance_level <= 2) - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4)) - else if(GLOB.chemical_data.clearance_level <= 4) - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8)) - else - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10)) - if(!level_to_set) - return - - target_property.level = level_to_set - if(target_property.max_level && target_property.level > target_property.max_level) - target_property.level = target_property.max_level - to_chat(user, "Max level for [target_property.name] is [target_property.max_level].") - calculate_creation_cost() - else if(href_list["set_od"]) - var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60)) - if(!od_to_set) - return - new_od_level = od_to_set - creation_od_level = od_to_set - calculate_creation_cost() - else if(href_list["set_filter"]) - if(href_list["set_filter"] == "ALL") - template_filter = 0 - else - var/flag_value = text2num(href_list["config_value"]) + if("toggle_flag") + var/flag_value = params["flag_id"] if(template_filter & flag_value) template_filter &= ~flag_value else template_filter |= flag_value - else if(href_list["toggle_complexity_editor"]) - complexity_editor = !complexity_editor - else if(href_list["set_complexity"]) - var/slot = text2num(href_list["set_complexity"]) - var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:","[src]", list("BASIC (+7)","COMMON (+4)","UNCOMMON (1)","RARE (-5)")) - if(!new_rarity) + if("select_create_property") + if(mode == MODE_CREATE) + if(target_property?.code == params["property_code"]) + if(LAZYISIN(creation_template, target_property)) + target_property.level = 0 + LAZYREMOVE(creation_template, target_property) + else + target_property.level = 1 + LAZYADD(creation_template, target_property) + else + for(var/datum/chem_property/known_prop in GLOB.chemical_data.research_property_data) + if(known_prop.code != params["property_code"]) + continue + target_property = known_prop + if(!target_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + calculate_creation_cost() + if("select_overdose") + if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE) + var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60)) + if(!od_to_set || simulating != SIMULATION_STAGE_OFF) + return + creation_od_level = od_to_set + calculate_new_od_level() + calculate_creation_cost() + if("change_name") + if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE) + var/newname = input("Set name for template (2-20 characters)","[src]") as text + newname = reject_bad_name(newname, TRUE, 20, FALSE) + if(isnull(newname)) + to_chat(usr, SPAN_WARNING("This name is not permited.")) + else if(GLOB.chemical_reagents_list[newname]) + to_chat(usr, SPAN_WARNING("This name is already occupied")) + else + creation_name = newname + if("change_create_target_level") + var/level_to_set = 1 + if(GLOB.chemical_data.clearance_level <= 2) + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4)) + else if(GLOB.chemical_data.clearance_level <= 4) + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8)) + else + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10)) + if(!level_to_set) + return + if(!LAZYISIN(creation_template, target_property)) + LAZYADD(creation_template, target_property) + target_property.level = level_to_set + if(target_property.max_level && target_property.level > target_property.max_level) + target_property.level = target_property.max_level + to_chat(usr, "Max level for [target_property.name] is [target_property.max_level].") + calculate_creation_cost() + if("change_complexity") + var/slot = params["complexity_slot"] + var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:", "[src]", list("BASIC (+7)", "COMMON (+4)", "UNCOMMON (1)", "RARE (-5)")) + if(!new_rarity || simulating != SIMULATION_STAGE_OFF) + return + switch(new_rarity) + if("BASIC (+7)") + creation_complexity[slot] = CHEM_CLASS_BASIC + if("COMMON (+4)") + creation_complexity[slot] = CHEM_CLASS_COMMON + if("UNCOMMON (1)") + creation_complexity[slot] = CHEM_CLASS_UNCOMMON + if("RARE (-5)") + creation_complexity[slot] = CHEM_CLASS_RARE + calculate_creation_cost() + if("keyboard_sound")//only exists to give sound + playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1) return - - switch(new_rarity) - if("BASIC (+7)") - creation_complexity[slot] = CHEM_CLASS_BASIC - if("COMMON (+4)") - creation_complexity[slot] = CHEM_CLASS_COMMON - if("UNCOMMON (1)") - creation_complexity[slot] = CHEM_CLASS_UNCOMMON - if("RARE (-5)") - creation_complexity[slot] = CHEM_CLASS_RARE - calculate_creation_cost() - ready = check_ready() playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1) - SSnano.nanomanager.update_uis(src) /obj/structure/machinery/chem_simulator/process() if(inoperable()) @@ -534,24 +556,34 @@ if(target_property.level >= GLOB.chemical_data.clearance_level*TECHTREE_LEVEL_MULTIPLIER + 2 && GLOB.chemical_data.clearance_level < 5) status_bar = "CLEARANCE INSUFFICIENT FOR AMPLIFICATION" return FALSE + else + status_bar = "TARGET NOT SELECTED" + return FALSE if(target && length(target.data.properties) < 2) status_bar = "TARGET COMPLEXITY IMPROPER FOR RELATION" return FALSE - if(reference && target) - if(!reference.completed) - status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE" - return FALSE - if(reference_property) - if(target.data.get_property(reference_property.name)) - status_bar = "REFERENCE PROPERTY ALREADY IN TARGET" + if(mode == MODE_RELATE && isnull(reference)) + status_bar = "NO REFERENCE DATA DETECTED" + return FALSE + if(mode == MODE_RELATE) + if(reference && target) + if(!reference.completed) + status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE" return FALSE - if(target_property) - if(target_property.level != reference_property.level) - status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS" - return FALSE - if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE) - status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED" + if(reference_property) + if(target.data.get_property(reference_property.name)) + status_bar = "REFERENCE PROPERTY ALREADY IN TARGET" return FALSE + if(target_property) + if(target_property.level != reference_property.level) + status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS" + return FALSE + if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE) + status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED" + return FALSE + else + status_bar = "REFERENCE PROPERTY NOT SELECTED" + return FALSE if(mode == MODE_CREATE) if(!LAZYLEN(creation_template)) status_bar = "TEMPLATE IS EMPTY" @@ -565,7 +597,8 @@ else if(!target) status_bar = "NO TARGET INSERTED" return FALSE - status_bar = "READY" + if(simulating == SIMULATION_STAGE_OFF) + status_bar = "READY" return TRUE /obj/structure/machinery/chem_simulator/proc/print(id, is_new) @@ -714,6 +747,36 @@ status_bar = "SIMULATION COMPLETE" print(C.id, TRUE) +/datum/chemical_simulator_modes + var/name + var/desc + var/mode_id + var/icon_type + +/datum/chemical_simulator_modes/create + name = "CREATE" + desc = "Create a new custom chemical from the known properties discovered earlier." + mode_id = MODE_CREATE + icon_type = "bolt" + +/datum/chemical_simulator_modes/supress + name = "SUPRESS" + desc = "Supress one level in the choosen property. This operation lowers the OD level." + mode_id = MODE_SUPPRESS + icon_type = "square-minus" + +/datum/chemical_simulator_modes/amplify + name = "AMPLIFY" + desc = "Amplify one level in the choosen property. This operation lowers the OD level." + mode_id = MODE_AMPLIFY + icon_type = "square-plus" + +/datum/chemical_simulator_modes/relate + name = "RELATE" + desc = "Use the reference chemical to replace one choosen property in the target chemical. The target and reference target property level must be equal, This operation lowers the OD level." + mode_id = MODE_RELATE + icon_type = "repeat" + #undef SIMULATION_FAILURE #undef SIMULATION_STAGE_OFF #undef SIMULATION_STAGE_FINAL diff --git a/code/modules/reagents/chemistry_properties/prop_positive.dm b/code/modules/reagents/chemistry_properties/prop_positive.dm index 40867892afbd..9243c71ae7df 100644 --- a/code/modules/reagents/chemistry_properties/prop_positive.dm +++ b/code/modules/reagents/chemistry_properties/prop_positive.dm @@ -71,7 +71,7 @@ /datum/chem_property/positive/repairing name = PROPERTY_REPAIRING code = "REP" - description = "Repairs cybernetic organs by REDACTED." + description = "Repairs cybernetic organs by the use of REDACTED property of REDACTED element." rarity = PROPERTY_UNCOMMON category = PROPERTY_TYPE_MEDICINE value = 2 diff --git a/colonialmarines.dme b/colonialmarines.dme index 5193cd3571cb..9bfccac6a56e 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -522,6 +522,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" @@ -1784,6 +1785,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" diff --git a/dependencies.sh b/dependencies.sh index 1fd24f763c6c..e0da4aa75f66 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -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/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml index 549e97d74bf6..9e2bace15655 100644 --- a/html/changelogs/archive/2024-07.yml +++ b/html/changelogs/archive/2024-07.yml @@ -67,3 +67,63 @@ - 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 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_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/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/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/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 82871ec53f85..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/oldresearch/Resin, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/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/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/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{ @@ -38497,10 +28755,7 @@ 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 01777db10275..ea56dacf0fa3 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,55 +20730,39 @@ name = "Secure Racks"; req_access_txt = "103" }, -/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) "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, @@ -27875,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, @@ -27922,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{ @@ -27932,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{ @@ -28083,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{ @@ -28095,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, @@ -28141,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, @@ -28168,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, @@ -28219,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, @@ -28229,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, @@ -28279,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, @@ -28345,16 +21109,11 @@ req_access_txt = "103" }, /obj/item/oldresearch/Blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/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, @@ -28367,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{ @@ -28383,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{ @@ -28424,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, @@ -28465,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{ @@ -28483,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, @@ -28516,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, @@ -28536,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, @@ -28550,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, @@ -28568,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{ @@ -28589,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{ @@ -28639,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{ @@ -28666,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{ @@ -28685,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, @@ -28709,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, @@ -28776,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, @@ -28792,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, @@ -28813,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, @@ -28850,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{ @@ -28878,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{ @@ -28915,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{ @@ -28926,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, @@ -28978,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{ @@ -28996,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{ @@ -29012,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, @@ -29046,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, @@ -29105,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, @@ -29177,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{ @@ -29218,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{ @@ -29247,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{ @@ -29261,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, @@ -29283,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, @@ -29308,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, @@ -29337,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, @@ -29349,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, @@ -29390,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{ @@ -29402,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, @@ -29435,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{ @@ -29461,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{ @@ -29478,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, @@ -29622,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, @@ -29637,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, @@ -29657,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, @@ -29668,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, @@ -29740,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, @@ -29765,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, @@ -29777,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, @@ -29787,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, @@ -29797,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, @@ -29808,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{ @@ -29831,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{ @@ -29849,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{ @@ -29877,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{ @@ -29889,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, @@ -29943,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, @@ -29973,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{ @@ -30093,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{ @@ -30105,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, @@ -30179,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, @@ -30204,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, @@ -30301,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{ @@ -30365,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, @@ -30447,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, @@ -30458,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{ @@ -30533,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{ @@ -30555,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, @@ -30581,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, @@ -30629,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{ @@ -30788,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{ @@ -30800,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{ @@ -30900,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{ @@ -30931,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, @@ -31192,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{ @@ -31244,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, @@ -31280,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, @@ -31333,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, @@ -31343,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, @@ -31355,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, @@ -31367,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, @@ -31378,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, @@ -31388,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{ @@ -31468,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, @@ -31479,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, @@ -31522,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, @@ -31533,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, @@ -31573,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, @@ -31586,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, @@ -31623,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, @@ -31664,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{ @@ -31676,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{ @@ -31687,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, @@ -31721,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{ @@ -31740,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{ @@ -31780,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{ @@ -31813,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, @@ -31881,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{ @@ -31939,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{ @@ -32104,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{ @@ -32307,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, @@ -32342,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, @@ -32437,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{ @@ -32485,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{ @@ -32512,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{ @@ -32535,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{ @@ -32575,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{ @@ -32613,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, @@ -32626,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, @@ -32639,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, @@ -32661,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, @@ -32728,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, @@ -32768,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, @@ -32789,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, @@ -32839,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, @@ -32878,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{ @@ -32927,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, @@ -32995,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, @@ -33025,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{ @@ -33061,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{ @@ -33072,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{ @@ -33092,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, @@ -33126,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{ @@ -33137,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{ @@ -33150,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, @@ -33183,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{ @@ -33204,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, @@ -33246,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{ @@ -33282,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{ @@ -33294,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, @@ -33313,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{ @@ -33342,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{ @@ -33363,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, @@ -33390,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, @@ -33434,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{ @@ -33446,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, @@ -33478,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, @@ -33510,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, @@ -33523,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, @@ -33538,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{ @@ -33565,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{ @@ -33576,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{ @@ -33587,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{ @@ -33598,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, @@ -33612,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, @@ -33626,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, @@ -33640,39 +24896,28 @@ 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{ @@ -33681,55 +24926,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, @@ -33738,9 +24966,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{ @@ -33749,17 +24975,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{ @@ -33769,25 +24991,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, @@ -33803,61 +25018,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, @@ -33868,10 +25066,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, @@ -33879,10 +25074,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{ @@ -33890,9 +25082,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, @@ -33905,9 +25095,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{ @@ -33917,16 +25105,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{ @@ -33934,57 +25117,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{ @@ -33995,28 +25159,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, @@ -34024,33 +25179,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, @@ -34061,10 +25206,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{ @@ -34073,18 +25215,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{ @@ -34093,18 +25229,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, @@ -34115,19 +25246,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{ @@ -34141,9 +25266,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{ @@ -34153,35 +25276,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{ @@ -34196,19 +25310,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{ @@ -34220,26 +25328,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, @@ -34248,9 +25347,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{ @@ -34260,25 +25357,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{ @@ -34287,9 +25375,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{ @@ -34299,160 +25385,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{ @@ -34461,162 +25499,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, @@ -34626,132 +25613,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{ @@ -34760,17 +25706,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, @@ -34778,40 +25718,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, @@ -34819,85 +25745,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{ @@ -34907,10 +25808,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{ @@ -34920,16 +25818,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{ @@ -34941,26 +25835,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{ @@ -34973,54 +25858,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, @@ -35028,18 +25896,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{ @@ -35052,56 +25914,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{ @@ -35114,19 +25961,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{ @@ -35147,35 +25989,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{ @@ -35202,10 +26035,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{ @@ -35223,84 +26053,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{ @@ -35309,63 +26115,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{ @@ -35374,9 +26160,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{ @@ -35384,17 +26168,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, @@ -35406,28 +26184,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, @@ -35435,33 +26205,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{ @@ -35475,9 +26237,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{ @@ -35486,54 +26246,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{ @@ -35541,10 +26285,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{ @@ -35552,18 +26293,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{ @@ -35573,32 +26309,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{ @@ -35608,17 +26336,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{ @@ -35626,10 +26350,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{ @@ -35637,51 +26358,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, @@ -35690,10 +26398,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{ @@ -35707,10 +26412,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{ @@ -35719,9 +26421,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{ @@ -35729,9 +26429,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{ @@ -35741,9 +26439,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, @@ -35754,10 +26450,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, @@ -35773,10 +26466,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, @@ -35785,27 +26475,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{ @@ -35814,10 +26496,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, @@ -35825,27 +26504,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, @@ -35856,25 +26526,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, @@ -35893,89 +26556,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{ @@ -35986,10 +26616,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{ @@ -35997,76 +26624,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{ @@ -36076,23 +26677,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, @@ -36105,85 +26700,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{ @@ -36192,26 +26757,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, @@ -36219,9 +26777,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, @@ -36229,46 +26785,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{ @@ -36277,24 +26819,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, @@ -36302,19 +26837,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, @@ -36325,21 +26854,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{ @@ -36360,97 +26883,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, @@ -36458,75 +26947,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{ @@ -36534,19 +26998,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{ @@ -36555,9 +27014,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{ @@ -36575,27 +27032,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, @@ -36610,24 +27058,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{ @@ -36636,34 +27077,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{ @@ -36672,58 +27100,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, @@ -36731,31 +27140,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{ @@ -36764,18 +27164,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, @@ -36783,15 +27177,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, @@ -36799,40 +27188,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{ @@ -36843,10 +27217,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, @@ -36854,9 +27225,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{ @@ -36866,17 +27235,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, @@ -36887,38 +27250,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, @@ -36928,38 +27279,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, @@ -36969,18 +27308,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{ @@ -36990,19 +27324,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, @@ -37013,30 +27341,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{ @@ -37049,37 +27367,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, @@ -37087,10 +27392,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{ @@ -37100,38 +27402,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, @@ -37142,91 +27432,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{ @@ -37235,62 +27495,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{ @@ -37300,33 +27542,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{ @@ -37336,18 +27568,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{ @@ -37358,15 +27585,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, @@ -37376,18 +27598,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{ @@ -37397,64 +27614,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{ @@ -37465,31 +27660,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{ @@ -37497,23 +27682,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{ @@ -37521,9 +27699,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{ @@ -37531,28 +27707,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{ @@ -37563,17 +27728,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{ @@ -37584,20 +27745,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{ @@ -37606,50 +27761,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, @@ -37659,97 +27800,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{ @@ -37763,9 +27874,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{ @@ -37777,9 +27886,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{ @@ -37788,63 +27895,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{ @@ -37855,10 +27939,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, @@ -37869,96 +27950,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{ @@ -37970,76 +28021,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{ @@ -38047,17 +28072,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{ @@ -38069,20 +28090,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{ @@ -38090,43 +28104,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{ @@ -38138,10 +28138,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{ @@ -38151,24 +28148,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{ @@ -38176,88 +28166,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{ @@ -38266,25 +28227,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, @@ -38292,25 +28244,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, @@ -38320,9 +28264,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, @@ -38330,37 +28272,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{ @@ -38369,17 +28300,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{ @@ -38394,63 +28320,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{ @@ -38463,32 +28369,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, @@ -38497,36 +28393,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, @@ -38536,10 +28420,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{ @@ -38559,37 +28440,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{ @@ -38603,56 +28470,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, @@ -38666,105 +28516,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{ @@ -38780,26 +28593,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, @@ -38810,16 +28616,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, @@ -38828,25 +28628,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, @@ -38859,17 +28651,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{ @@ -38881,90 +28667,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, @@ -38974,10 +28731,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{ @@ -38985,31 +28739,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, @@ -39025,9 +28770,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{ @@ -39036,34 +28779,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{ @@ -39080,30 +28811,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, @@ -39119,62 +28841,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, @@ -39183,59 +28886,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{ @@ -39248,52 +28928,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{ @@ -39302,31 +28966,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, @@ -39345,33 +28999,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, @@ -39385,19 +29030,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, @@ -39405,32 +29044,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, @@ -39438,24 +29068,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, @@ -39463,31 +29086,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, @@ -39497,128 +29111,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, @@ -39626,52 +29192,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, @@ -39683,65 +29230,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{ @@ -39752,9 +29278,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{ @@ -39764,10 +29288,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, @@ -39776,64 +29297,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, @@ -39842,18 +29341,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{ @@ -39862,10 +29356,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{ @@ -39873,46 +29364,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{ @@ -39924,10 +29398,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{ @@ -39937,39 +29408,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{ @@ -39985,9 +29446,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{ @@ -39999,10 +29458,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{ @@ -40012,19 +29468,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{ @@ -40036,23 +29486,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{ @@ -40062,49 +29505,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{ @@ -40116,9 +29545,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, @@ -40131,25 +29558,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{ @@ -40164,43 +29584,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, @@ -40215,43 +29621,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{ @@ -40261,28 +29654,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, @@ -40290,9 +29675,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, @@ -40302,50 +29685,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{ @@ -40356,26 +29721,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{ @@ -40385,18 +29742,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, @@ -40404,19 +29756,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{ @@ -40431,47 +29777,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, @@ -40479,17 +29810,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{ @@ -40497,18 +29824,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{ @@ -40517,87 +29838,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, @@ -40606,32 +29897,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{ @@ -40640,36 +29921,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{ @@ -40680,9 +29948,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, @@ -40692,34 +29958,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{ @@ -40728,21 +29983,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, @@ -40756,25 +30004,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{ @@ -40784,52 +30024,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{ @@ -40843,25 +30067,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{ @@ -40873,9 +30090,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{ @@ -40884,23 +30099,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{ @@ -40909,20 +30117,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, @@ -40932,179 +30134,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, @@ -41113,27 +30257,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{ @@ -41144,104 +30280,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{ @@ -41251,9 +30352,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, @@ -41263,28 +30362,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{ @@ -41296,24 +30387,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, @@ -41329,32 +30413,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{ @@ -41363,9 +30435,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, @@ -41376,9 +30446,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, @@ -41386,33 +30454,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, @@ -41421,19 +30481,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, @@ -41441,33 +30496,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, @@ -41479,19 +30524,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{ @@ -41501,9 +30540,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, @@ -41511,10 +30548,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, @@ -41522,10 +30556,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{ @@ -41535,10 +30566,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{ @@ -41552,43 +30580,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{ @@ -41597,10 +30612,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, @@ -41613,58 +30625,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, @@ -41672,17 +30668,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, @@ -41693,38 +30684,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{ @@ -41734,25 +30713,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{ @@ -41766,35 +30737,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, @@ -41802,9 +30762,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, @@ -41823,21 +30781,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{ @@ -41845,16 +30796,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, @@ -41871,10 +30817,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, @@ -41886,15 +30829,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, @@ -41902,69 +30840,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, @@ -41972,9 +30886,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, @@ -41984,10 +30896,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, @@ -41995,24 +30904,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, @@ -42025,41 +30926,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, @@ -42073,79 +30962,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{ @@ -42154,19 +31019,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{ @@ -42176,53 +31036,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{ @@ -42232,22 +31073,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, @@ -42257,52 +31091,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{ @@ -42311,18 +31129,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{ @@ -42335,27 +31148,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, @@ -42364,56 +31170,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, @@ -42427,68 +31216,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, @@ -42499,36 +31267,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{ @@ -42536,57 +31295,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, @@ -42595,21 +31334,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, @@ -42620,32 +31353,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, @@ -42662,60 +31385,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{ @@ -42730,9 +31436,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{ @@ -42741,9 +31445,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{ @@ -42759,23 +31461,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, @@ -42787,40 +31482,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, @@ -42831,80 +31513,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{ @@ -42918,31 +31574,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, @@ -42952,10 +31597,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, @@ -42966,64 +31608,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, @@ -43036,24 +31656,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{ @@ -43066,55 +31680,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, @@ -43122,25 +31718,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{ @@ -43148,66 +31738,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, @@ -43218,10 +31789,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{ @@ -43237,56 +31805,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{ @@ -43296,10 +31847,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{ @@ -43309,25 +31857,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{ @@ -43337,10 +31877,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, @@ -43354,15 +31891,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, @@ -43375,10 +31907,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, @@ -43387,31 +31916,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, @@ -43428,21 +31947,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{ @@ -43451,9 +31962,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, @@ -43462,33 +31971,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{ @@ -43500,31 +32000,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, @@ -43535,16 +32027,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, @@ -43552,31 +32039,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{ @@ -43594,9 +32071,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, @@ -43605,32 +32080,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{ @@ -43641,30 +32106,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, @@ -43684,9 +32139,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, @@ -43696,9 +32149,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{ @@ -43706,165 +32157,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, @@ -43880,17 +32282,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{ @@ -43901,10 +32298,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{ @@ -43913,66 +32307,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{ @@ -43983,60 +32354,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, @@ -44045,9 +32396,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{ @@ -44057,24 +32406,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{ @@ -44087,37 +32429,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, @@ -44127,9 +32459,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{ @@ -44141,46 +32471,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, @@ -44189,23 +32506,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{ @@ -44213,24 +32523,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, @@ -44244,21 +32547,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{ @@ -44274,25 +32570,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{ @@ -44307,46 +32595,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{ @@ -44355,10 +32628,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, @@ -44372,114 +32642,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{ @@ -44487,136 +32723,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{ @@ -44628,24 +32820,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{ @@ -44654,57 +32839,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, @@ -44718,9 +32884,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, @@ -44734,26 +32898,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{ @@ -44762,44 +32919,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{ @@ -44808,25 +32951,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, @@ -44840,46 +32976,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{ @@ -44888,10 +33008,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{ @@ -44901,104 +33018,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, @@ -45013,29 +33096,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{ @@ -45044,38 +33116,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{ @@ -45090,27 +33148,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, @@ -45119,35 +33170,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, @@ -45159,16 +33199,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{ @@ -45176,9 +33210,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, @@ -45188,30 +33220,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, @@ -45222,51 +33244,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{ @@ -45274,16 +33278,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, @@ -45301,28 +33300,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, @@ -45330,10 +33322,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, @@ -45341,16 +33330,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, @@ -45365,9 +33350,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{ @@ -45384,9 +33367,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{ @@ -45394,15 +33375,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, @@ -45412,26 +33388,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{ @@ -45441,105 +33410,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, @@ -45553,37 +33487,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{ @@ -45596,22 +33518,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, @@ -45623,10 +33537,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, @@ -45642,33 +33553,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, @@ -45685,10 +33585,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{ @@ -45702,26 +33599,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, @@ -45733,81 +33622,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{ @@ -45815,15 +33676,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{ @@ -45835,28 +33692,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{ @@ -45865,53 +33713,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, @@ -45920,16 +33753,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{ @@ -45939,9 +33767,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, @@ -45965,31 +33791,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{ @@ -45997,15 +33813,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{ @@ -46020,10 +33831,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{ @@ -46031,53 +33839,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, @@ -46087,35 +33875,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{ @@ -46124,46 +33901,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{ @@ -46177,9 +33937,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{ @@ -46191,10 +33949,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, @@ -46203,10 +33958,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{ @@ -46215,33 +33967,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, @@ -46249,16 +33990,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, @@ -46272,10 +34008,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{ @@ -46284,145 +34017,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, @@ -46430,10 +34113,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, @@ -46441,66 +34121,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{ @@ -46509,58 +34165,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, @@ -46570,247 +34210,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{ @@ -46823,128 +34376,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{ @@ -46956,28 +34468,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, @@ -46989,51 +34493,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, @@ -47042,40 +34533,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{ @@ -47088,69 +34567,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{ @@ -47159,16 +34616,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{ @@ -47185,23 +34637,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, @@ -47213,17 +34658,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, @@ -47236,38 +34676,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, @@ -47276,28 +34702,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, @@ -47317,16 +34736,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{ @@ -47334,49 +34748,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{ @@ -47384,114 +34784,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, @@ -47504,57 +34870,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{ @@ -47563,95 +34912,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{ @@ -47659,46 +34976,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{ @@ -47708,43 +35011,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, @@ -47758,83 +35048,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{ @@ -47845,88 +35105,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{ @@ -47934,28 +35168,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, @@ -47963,39 +35188,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{ @@ -48004,31 +35216,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{ @@ -48039,14 +35241,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{ @@ -48065,31 +35263,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{ @@ -48101,42 +35289,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, @@ -48145,16 +35320,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, @@ -48163,96 +35332,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, @@ -48275,31 +35413,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{ @@ -48311,36 +35438,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, @@ -48348,28 +35462,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, @@ -48378,40 +35482,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{ @@ -48420,53 +35513,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, @@ -48474,57 +35548,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{ @@ -48533,20 +35588,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{ @@ -48555,88 +35603,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{ @@ -48646,97 +35668,66 @@ /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{ @@ -48745,39 +35736,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, @@ -48787,90 +35766,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{ @@ -48881,9 +35832,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, @@ -48895,53 +35844,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{ @@ -48953,100 +35886,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{ @@ -49056,32 +35956,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, @@ -49089,18 +35979,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{ @@ -49109,39 +35994,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{ @@ -49151,9 +36022,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, @@ -49162,16 +36031,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, @@ -49181,30 +36044,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{ @@ -49229,19 +36082,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, @@ -49249,40 +36096,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{ @@ -49302,10 +36138,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, @@ -49315,69 +36148,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{ @@ -49388,9 +36199,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{ @@ -49403,16 +36212,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{ @@ -49421,33 +36226,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, @@ -49456,68 +36250,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{ @@ -49526,17 +36296,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, @@ -49547,66 +36313,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{ @@ -49615,24 +36359,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{ @@ -49658,24 +36393,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, @@ -49683,31 +36410,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, @@ -49718,10 +36436,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{ @@ -49736,18 +36451,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, @@ -49755,42 +36465,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, @@ -49798,84 +36492,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{ @@ -49885,137 +36550,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{ @@ -50024,9 +36641,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{ @@ -50035,42 +36650,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{ @@ -50082,22 +36686,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, @@ -50107,32 +36705,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, @@ -50143,181 +36730,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{ @@ -50325,33 +36850,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, @@ -50361,18 +36875,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, @@ -50380,23 +36889,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{ @@ -50409,83 +36910,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{ @@ -50498,50 +36977,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{ @@ -50550,9 +37012,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{ @@ -50564,16 +37024,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{ @@ -50581,9 +37036,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{ @@ -50592,9 +37045,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, @@ -50604,9 +37055,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{ @@ -50628,38 +37077,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{ @@ -50667,22 +37104,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{ @@ -50697,45 +37126,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{ @@ -50743,55 +37159,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{ @@ -50800,10 +37197,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, @@ -50819,9 +37213,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, @@ -50829,46 +37221,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{ @@ -50885,18 +37263,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{ @@ -50909,9 +37282,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{ @@ -50919,16 +37290,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{ @@ -50944,17 +37310,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, @@ -50967,37 +37329,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{ @@ -51009,17 +37358,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, @@ -51034,29 +37379,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{ @@ -51065,10 +37401,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, @@ -51079,34 +37412,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{ @@ -51116,16 +37440,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, @@ -51133,10 +37452,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{ @@ -51144,46 +37460,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{ @@ -51193,44 +37492,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{ @@ -51240,42 +37525,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{ @@ -51283,31 +37556,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{ @@ -51318,104 +37581,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, @@ -51424,48 +37656,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{ @@ -51477,10 +37692,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, @@ -51495,83 +37707,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{ @@ -51581,38 +37764,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, @@ -51622,78 +37794,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, @@ -51702,10 +37851,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{ @@ -51714,27 +37860,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{ @@ -51743,24 +37881,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{ @@ -51768,22 +37898,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, @@ -51791,33 +37914,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, @@ -51825,41 +37938,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, @@ -51870,93 +37971,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{ @@ -51969,52 +38039,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{ @@ -52022,9 +38073,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, @@ -52039,9 +38088,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{ @@ -52051,52 +38098,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, @@ -52104,33 +38134,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{ @@ -52140,17 +38159,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, @@ -52160,32 +38175,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{ @@ -52199,34 +38205,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, @@ -52239,27 +38237,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{ @@ -52269,21 +38259,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, @@ -52296,15 +38280,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, @@ -52316,15 +38296,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, @@ -52332,10 +38308,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, @@ -52348,38 +38321,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, @@ -52389,9 +38350,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, @@ -52399,29 +38358,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{ @@ -52430,104 +38380,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{ @@ -52535,14 +38446,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, @@ -52551,21 +38458,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{ @@ -52575,85 +38475,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, @@ -52662,25 +38534,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, @@ -52689,10 +38552,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{ @@ -52700,9 +38560,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{ @@ -52721,52 +38579,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{ @@ -52775,68 +38614,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, @@ -52850,9 +38663,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{ @@ -52861,136 +38672,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, @@ -52998,22 +38762,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, @@ -53023,49 +38779,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{ @@ -53073,24 +38814,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, @@ -53101,23 +38834,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, @@ -53128,15 +38853,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 }, @@ -53146,119 +38865,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, @@ -53272,24 +38949,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{ @@ -53298,40 +38969,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{ @@ -53339,72 +38998,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{ @@ -53413,17 +39046,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, @@ -53434,17 +39063,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, @@ -53453,59 +39078,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, @@ -53518,35 +39125,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, @@ -53556,9 +39153,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{ @@ -53570,17 +39165,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, @@ -53592,33 +39183,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{ @@ -53631,39 +39212,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, @@ -53681,50 +39248,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, @@ -53737,9 +39289,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{ @@ -53749,38 +39299,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{ @@ -53790,9 +39327,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, @@ -53800,52 +39335,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{ @@ -53855,61 +39374,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, @@ -53918,63 +39417,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, @@ -53985,31 +39462,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{ @@ -54027,38 +39493,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, @@ -54070,48 +39525,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{ @@ -54120,10 +39560,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, @@ -54137,34 +39574,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, @@ -54173,9 +39599,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, @@ -54183,10 +39607,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{ @@ -54195,17 +39616,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, @@ -54213,26 +39630,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, @@ -54245,62 +39653,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{ @@ -54310,47 +39697,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{ @@ -54359,19 +39730,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, @@ -54392,64 +39757,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{ @@ -54462,52 +39809,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, @@ -54515,33 +39845,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, @@ -54562,10 +39882,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, @@ -54577,63 +39894,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, @@ -54648,122 +39946,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{ @@ -54775,29 +40034,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{ @@ -54806,31 +40054,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{ @@ -54842,48 +40080,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, @@ -54894,49 +40116,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{ @@ -54947,15 +40152,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, @@ -54965,51 +40166,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, @@ -55017,34 +40201,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, @@ -55056,23 +40230,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{ @@ -55084,19 +40250,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, @@ -55105,161 +40266,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{ @@ -55272,33 +40378,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{ @@ -55311,10 +40407,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, @@ -55324,35 +40417,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, @@ -55362,22 +40444,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{ @@ -55390,30 +40464,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, @@ -55423,18 +40487,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{ @@ -55450,24 +40509,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, @@ -55480,21 +40532,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{ @@ -55502,10 +40547,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, @@ -55515,52 +40557,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, @@ -55571,9 +40598,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{ @@ -55581,36 +40606,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, @@ -55619,32 +40633,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, @@ -55661,26 +40667,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, @@ -55689,48 +40687,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{ @@ -55742,17 +40723,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{ @@ -55764,16 +40741,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{ @@ -55781,117 +40754,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, @@ -55900,61 +40836,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{ @@ -55970,82 +40886,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{ @@ -56053,17 +40942,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{ @@ -56075,17 +40960,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{ @@ -56097,143 +40978,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, @@ -56250,66 +41077,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, @@ -56318,60 +41124,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{ @@ -56379,33 +41168,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, @@ -56417,75 +41195,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, @@ -56497,170 +41247,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{ @@ -56671,53 +41362,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, @@ -56727,71 +41401,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{ @@ -56799,9 +41451,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, @@ -56811,9 +41461,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, @@ -56821,9 +41469,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, @@ -56831,37 +41477,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, @@ -56869,47 +41503,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, @@ -56918,18 +41537,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, @@ -56937,10 +41551,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{ @@ -56948,10 +41559,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{ @@ -56969,10 +41577,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{ @@ -56982,23 +41587,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, @@ -57006,10 +41602,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, @@ -57019,16 +41612,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, @@ -57038,15 +41625,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, @@ -57066,181 +41648,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, @@ -57249,26 +41771,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{ @@ -57277,45 +41792,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{ @@ -57327,9 +41825,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, @@ -57340,15 +41836,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, @@ -57361,18 +41853,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{ @@ -57385,39 +41872,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{ @@ -57430,18 +41904,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{ @@ -57450,47 +41919,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{ @@ -57500,9 +41955,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, @@ -57510,9 +41963,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{ @@ -57522,79 +41973,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{ @@ -57606,32 +42031,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, @@ -57639,44 +42054,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, @@ -57686,40 +42088,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, @@ -57728,25 +42116,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, @@ -57763,24 +42145,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, @@ -57791,17 +42165,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, @@ -57811,78 +42179,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{ @@ -57891,33 +42232,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{ @@ -57925,31 +42255,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{ @@ -57963,38 +42283,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, @@ -58006,10 +42314,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, @@ -58018,69 +42323,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, @@ -58097,100 +42382,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{ @@ -58198,90 +42452,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{ @@ -58293,99 +42519,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{ @@ -58393,10 +42588,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, @@ -58406,52 +42598,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, @@ -58459,18 +42632,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, @@ -58480,31 +42647,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, @@ -58518,43 +42674,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, @@ -58572,9 +42717,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, @@ -58582,41 +42725,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, @@ -58626,87 +42757,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{ @@ -58716,33 +42814,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{ @@ -58752,17 +42839,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{ @@ -58771,9 +42853,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, @@ -58781,49 +42861,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{ @@ -58832,15 +42897,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{ @@ -58848,40 +42908,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, @@ -58894,20 +42940,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, @@ -58918,92 +42958,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{ @@ -59013,9 +43018,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, @@ -59025,23 +43028,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{ @@ -59055,44 +43051,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{ @@ -59100,31 +43081,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, @@ -59135,9 +43108,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{ @@ -59149,10 +43120,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{ @@ -59160,16 +43128,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{ @@ -59178,9 +43141,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, @@ -59196,61 +43157,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{ @@ -59266,56 +43206,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{ @@ -59323,44 +43244,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, @@ -59371,42 +43278,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{ @@ -59421,18 +43314,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, @@ -59449,19 +43337,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, @@ -59473,16 +43355,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, @@ -59490,17 +43367,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, @@ -59508,80 +43381,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, @@ -59595,59 +43441,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{ @@ -59659,16 +43485,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, @@ -59686,39 +43507,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, @@ -59726,31 +43535,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, @@ -59760,10 +43559,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{ @@ -59772,75 +43568,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, @@ -59850,17 +43620,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{ @@ -59870,10 +43634,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, @@ -59897,54 +43658,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{ @@ -59953,125 +43698,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{ @@ -60080,24 +43786,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{ @@ -60106,40 +43805,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, @@ -60147,26 +43833,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, @@ -60174,16 +43851,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, @@ -60191,9 +43863,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, @@ -60203,46 +43873,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{ @@ -60251,44 +43904,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{ @@ -60299,9 +43934,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{ @@ -60324,9 +43957,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{ @@ -60334,57 +43965,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, @@ -60403,77 +44018,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{ @@ -60483,35 +44072,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{ @@ -60520,23 +44098,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, @@ -60544,10 +44114,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{ @@ -60556,27 +44123,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{ @@ -60587,20 +44145,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, @@ -60608,22 +44160,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, @@ -60633,18 +44177,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, @@ -60657,18 +44197,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{ @@ -60680,9 +44215,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{ @@ -60692,90 +44225,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{ @@ -60795,9 +44299,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{ @@ -60806,59 +44308,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{ @@ -60866,37 +44348,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{ @@ -60906,10 +44376,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, @@ -60917,52 +44384,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{ @@ -60975,10 +44426,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{ @@ -60988,63 +44436,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{ @@ -61059,24 +44485,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{ @@ -61085,15 +44504,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, @@ -61106,24 +44520,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, @@ -61140,17 +44546,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, @@ -61177,49 +44579,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, @@ -61230,9 +44618,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{ @@ -61242,10 +44628,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{ @@ -61257,83 +44640,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, @@ -61341,10 +44697,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, @@ -61353,43 +44706,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, @@ -61407,9 +44745,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, @@ -61418,10 +44754,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{ @@ -61429,30 +44762,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, @@ -61464,54 +44788,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{ @@ -61519,16 +44825,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, @@ -61539,15 +44839,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{ @@ -61557,130 +44852,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{ @@ -61692,61 +44944,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{ @@ -61756,164 +44987,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{ @@ -61922,19 +45097,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{ @@ -61943,9 +45112,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, @@ -61955,24 +45122,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, @@ -61981,9 +45142,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, @@ -61991,15 +45150,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{ @@ -62011,91 +45166,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, @@ -62104,43 +45228,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{ @@ -62152,58 +45262,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{ @@ -62212,23 +45302,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{ @@ -62237,93 +45320,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{ @@ -62333,49 +45387,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, @@ -62383,32 +45422,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, @@ -62418,65 +45447,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{ @@ -62489,10 +45496,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{ @@ -62500,65 +45504,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{ @@ -62566,10 +45550,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{ @@ -62585,23 +45566,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, @@ -62613,17 +45588,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{ @@ -62635,20 +45606,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{ @@ -62660,71 +45625,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{ @@ -62742,24 +45687,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, @@ -62776,24 +45713,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, @@ -62821,19 +45751,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, @@ -62841,31 +45765,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{ @@ -62873,10 +45786,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{ @@ -62895,32 +45805,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{ @@ -62930,32 +45829,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{ @@ -62971,29 +45861,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{ @@ -63002,9 +45883,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, @@ -63014,42 +45893,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, @@ -63060,28 +45925,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, @@ -63091,18 +45947,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, @@ -63117,21 +45969,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{ @@ -63143,9 +45988,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{ @@ -63157,10 +46000,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, @@ -63176,10 +46016,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{ @@ -63189,40 +46026,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{ @@ -63241,107 +46066,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, @@ -63352,10 +46142,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{ @@ -63364,10 +46151,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{ @@ -63375,16 +46159,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, @@ -63392,22 +46170,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{ @@ -63418,31 +46188,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{ @@ -63451,9 +46213,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, @@ -63461,18 +46221,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, @@ -63481,99 +46236,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{ @@ -63582,86 +46304,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{ @@ -63670,9 +46365,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{ @@ -63681,18 +46374,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, @@ -63703,59 +46391,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, @@ -63769,78 +46436,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{ @@ -63853,27 +46496,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{ @@ -63890,9 +46525,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{ @@ -63901,9 +46534,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{ @@ -63915,38 +46546,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{ @@ -63962,9 +46580,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{ @@ -63972,26 +46588,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, @@ -63999,10 +46606,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{ @@ -64010,10 +46614,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, @@ -64022,18 +46623,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, @@ -64046,33 +46643,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{ @@ -64087,70 +46673,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, @@ -64158,29 +46720,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, @@ -64188,24 +46741,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{ @@ -64221,33 +46765,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{ @@ -64257,43 +46791,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{ @@ -64302,9 +46823,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{ @@ -64316,63 +46835,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, @@ -64394,36 +46891,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{ @@ -64432,23 +46918,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, @@ -64463,76 +46942,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{ @@ -64542,21 +46994,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{ @@ -64567,30 +47012,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, @@ -64600,10 +47034,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, @@ -64611,10 +47042,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, @@ -64625,51 +47053,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, @@ -64685,18 +47096,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{ @@ -64705,51 +47111,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{ @@ -64759,9 +47145,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{ @@ -64769,30 +47153,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, @@ -64813,63 +47186,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, @@ -64890,70 +47243,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{ @@ -64970,17 +47300,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, @@ -64988,10 +47314,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, @@ -65001,9 +47324,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, @@ -65015,58 +47336,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{ @@ -65082,24 +47382,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{ @@ -65109,58 +47402,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, @@ -65168,40 +47442,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{ @@ -65209,53 +47469,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{ @@ -65263,36 +47506,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, @@ -65301,9 +47532,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, @@ -65320,32 +47549,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{ @@ -65361,68 +47580,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, @@ -65433,10 +47628,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{ @@ -65447,21 +47639,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, @@ -65472,16 +47657,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) = {" 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 0c8e8c275bbe..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,30 +95,22 @@ /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{ @@ -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,37 +225,26 @@ /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" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/landing_pad_one) "abb" = ( /obj/structure/flora/bush/desert{ @@ -318,9 +256,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) "abd" = ( /obj/effect/decal/cleanable/dirt, @@ -345,31 +281,21 @@ /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" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_one) "abk" = ( /turf/closed/wall/hangar{ @@ -377,9 +303,7 @@ }, /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,20 +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) "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, @@ -439,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, @@ -466,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{ @@ -498,56 +405,39 @@ 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" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/landing_pad_one) "abO" = ( /obj/structure/surface/rack, @@ -557,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{ @@ -599,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, @@ -627,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{ @@ -653,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, @@ -681,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, @@ -710,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, @@ -741,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, @@ -763,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{ @@ -804,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{ @@ -881,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, @@ -910,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, @@ -933,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, @@ -946,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, @@ -979,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, @@ -1006,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, @@ -1017,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" - }, +/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{ @@ -1066,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, @@ -1081,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, @@ -1097,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, @@ -1124,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, @@ -1145,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, @@ -1158,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, @@ -1187,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, @@ -1203,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{ @@ -1229,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, @@ -1257,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" - }, +/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{ @@ -1283,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{ @@ -1326,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, @@ -1354,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{ @@ -1391,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{ @@ -1438,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, @@ -1461,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, @@ -1494,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{ @@ -1536,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, @@ -1547,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, @@ -1558,10 +1240,7 @@ 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, @@ -1572,9 +1251,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/control_room) "afa" = ( /obj/structure/window/reinforced/tinted{ @@ -1583,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, @@ -1604,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, @@ -1637,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{ @@ -1691,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{ @@ -1704,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, @@ -1721,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" - }, +/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{ @@ -1775,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{ @@ -1817,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, @@ -1861,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{ @@ -1879,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, @@ -1891,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{ @@ -1922,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{ @@ -1936,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{ @@ -1994,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, @@ -2022,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{ @@ -2054,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, @@ -2070,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, @@ -2098,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, @@ -2115,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, @@ -2129,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, @@ -2170,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, @@ -2214,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, @@ -2246,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{ @@ -2258,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{ @@ -2284,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, @@ -2311,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{ @@ -2330,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{ @@ -2369,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, @@ -2396,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, @@ -2430,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, @@ -2449,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, @@ -2503,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{ @@ -2538,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, @@ -2548,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{ @@ -2589,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{ @@ -2632,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{ @@ -2649,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{ @@ -2696,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, @@ -2740,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{ @@ -2758,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{ @@ -2773,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, @@ -2794,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, @@ -2818,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{ @@ -2861,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{ @@ -2901,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, @@ -2938,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{ @@ -2970,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, @@ -2993,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{ @@ -3009,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, @@ -3034,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{ @@ -3075,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{ @@ -3095,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, @@ -3117,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, @@ -3132,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{ @@ -3169,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, @@ -3223,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, @@ -3291,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{ @@ -3311,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{ @@ -3341,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{ @@ -3370,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{ @@ -3391,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{ @@ -3414,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{ @@ -3425,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, @@ -3457,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, @@ -3525,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, @@ -3546,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, @@ -3578,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/oldresearch/Blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/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{ @@ -3681,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{ @@ -3726,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, @@ -3901,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{ @@ -3917,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{ @@ -3962,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{ @@ -3987,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{ @@ -4013,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{ @@ -4060,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{ @@ -4096,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{ @@ -4113,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{ @@ -4174,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{ @@ -4228,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{ @@ -4244,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{ @@ -4276,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{ @@ -4315,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{ @@ -4385,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" - }, +/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{ @@ -4444,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{ @@ -4460,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{ @@ -4472,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{ @@ -4489,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{ @@ -4499,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{ @@ -4520,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{ @@ -4544,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, @@ -4563,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, @@ -4591,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, @@ -4615,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, @@ -4638,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, @@ -4662,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{ @@ -4686,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, @@ -4740,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{ @@ -4760,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{ @@ -4787,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{ @@ -4798,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{ @@ -4819,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, @@ -4832,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, @@ -4842,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, @@ -4995,37 +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) "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, @@ -5035,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, @@ -5076,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{ @@ -5120,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{ @@ -5152,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{ @@ -5179,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{ @@ -5234,14 +4048,10 @@ /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, @@ -5252,10 +4062,7 @@ /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{ @@ -5265,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, @@ -5285,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{ @@ -5323,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{ @@ -5334,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, @@ -5351,19 +4137,14 @@ /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{ @@ -5378,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, @@ -5394,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, @@ -5408,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, @@ -5450,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, @@ -5470,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, @@ -5505,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, @@ -5584,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, @@ -5608,39 +4327,26 @@ 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{ @@ -5648,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{ @@ -5662,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{ @@ -5674,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{ @@ -5694,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{ @@ -5705,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{ @@ -5716,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{ @@ -5757,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, @@ -5779,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{ @@ -5810,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, @@ -5852,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, @@ -5873,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, @@ -5925,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, @@ -5955,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, @@ -5970,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{ @@ -6031,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, @@ -6057,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{ @@ -6093,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{ @@ -6105,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, @@ -6118,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{ @@ -6144,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, @@ -6165,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{ @@ -6192,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, @@ -6216,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, @@ -6251,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, @@ -6265,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, @@ -6283,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, @@ -6322,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{ @@ -6333,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{ @@ -6352,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, @@ -6362,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, @@ -6398,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, @@ -6411,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, @@ -6510,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, @@ -6538,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, @@ -6558,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{ @@ -6569,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{ @@ -6600,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{ @@ -6622,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{ @@ -6656,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{ @@ -6668,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, @@ -6707,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{ @@ -6735,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, @@ -6757,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{ @@ -6771,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, @@ -6847,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{ @@ -6857,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{ @@ -6883,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, @@ -6925,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, @@ -6964,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{ @@ -6984,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, @@ -7022,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, @@ -7041,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{ @@ -7090,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{ @@ -7101,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, @@ -7146,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, @@ -7157,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{ @@ -7194,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, @@ -7267,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{ @@ -7336,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{ @@ -7356,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{ @@ -7408,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{ @@ -7446,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{ @@ -7467,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{ @@ -7483,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, @@ -7521,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, @@ -7569,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, @@ -7655,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{ @@ -7672,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, @@ -7816,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{ @@ -7842,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{ @@ -7854,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{ @@ -7865,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{ @@ -7886,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{ @@ -7903,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{ @@ -7940,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, @@ -7951,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, @@ -7965,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{ @@ -7989,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, @@ -7999,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, @@ -8032,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, @@ -8077,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, @@ -8119,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, @@ -8155,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, @@ -8184,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, @@ -8207,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, @@ -8240,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{ @@ -8407,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{ @@ -8453,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{ @@ -8551,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, @@ -8589,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{ @@ -8640,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{ @@ -8655,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, @@ -8671,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, @@ -8723,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, @@ -8761,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{ @@ -8794,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, @@ -8806,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{ @@ -8834,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{ @@ -8881,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{ @@ -8898,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{ @@ -9003,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{ @@ -9036,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, @@ -9063,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, @@ -9115,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{ @@ -9159,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{ @@ -9179,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, @@ -9193,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, @@ -9210,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{ @@ -9238,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, @@ -9254,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{ @@ -9268,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, @@ -9308,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{ @@ -9332,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, @@ -9394,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, @@ -9407,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{ @@ -9421,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, @@ -9454,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, @@ -9479,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, @@ -9512,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, @@ -9541,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{ @@ -9552,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, @@ -9562,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, @@ -9626,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, @@ -9678,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, @@ -9716,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, @@ -9757,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, @@ -9775,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{ @@ -9811,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, @@ -9826,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{ @@ -9841,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{ @@ -9882,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, @@ -9894,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{ @@ -9904,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{ @@ -9926,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, @@ -9973,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, @@ -10021,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{ @@ -10035,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{ @@ -10060,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{ @@ -10076,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{ @@ -10088,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{ @@ -10099,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{ @@ -10153,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{ @@ -10177,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{ @@ -10216,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{ @@ -10228,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{ @@ -10254,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{ @@ -10279,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{ @@ -10341,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, @@ -10359,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, @@ -10409,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{ @@ -10445,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, @@ -10455,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, @@ -10484,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, @@ -10498,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, @@ -10509,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, @@ -10527,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, @@ -10568,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{ @@ -10614,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{ @@ -10681,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{ @@ -10693,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{ @@ -10717,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, @@ -10744,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, @@ -10756,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{ @@ -10767,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{ @@ -10796,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, @@ -10812,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{ @@ -10837,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, @@ -10868,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{ @@ -10886,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{ @@ -10923,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, @@ -10943,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{ @@ -10967,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{ @@ -10981,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, @@ -11007,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, @@ -11102,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{ @@ -11122,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, @@ -11158,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, @@ -11171,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{ @@ -11184,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, @@ -11221,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{ @@ -11249,16 +8703,12 @@ /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, @@ -11277,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{ @@ -11291,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{ @@ -11305,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, @@ -11318,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{ @@ -11346,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{ @@ -11364,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, @@ -11388,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, @@ -11413,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{ @@ -11438,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{ @@ -11455,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{ @@ -11466,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{ @@ -11504,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{ @@ -11538,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, @@ -11568,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, @@ -11615,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, @@ -11637,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{ @@ -11734,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, @@ -11817,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, @@ -11831,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{ @@ -11885,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{ @@ -11902,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{ @@ -11930,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{ @@ -11949,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{ @@ -11960,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{ @@ -11980,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{ @@ -12008,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, @@ -12018,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{ @@ -12099,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{ @@ -12158,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{ @@ -12169,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{ @@ -12190,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{ @@ -12202,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{ @@ -12219,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{ @@ -12251,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{ @@ -12283,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{ @@ -12294,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{ @@ -12362,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{ @@ -12381,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, @@ -12397,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{ @@ -12443,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{ @@ -12463,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{ @@ -12487,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, @@ -12506,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{ @@ -12570,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, @@ -12612,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{ @@ -12628,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{ @@ -12671,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{ @@ -12690,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, @@ -12707,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{ @@ -12736,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{ @@ -12771,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{ @@ -12782,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, @@ -12851,16 +9971,11 @@ /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{ @@ -12870,17 +9985,13 @@ /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{ @@ -12892,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{ @@ -12933,70 +10038,48 @@ /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,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, @@ -13033,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{ @@ -13044,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{ @@ -13079,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, @@ -13101,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, @@ -13146,10 +10203,7 @@ /turf/open/floor/plating, /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, @@ -13174,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, @@ -13191,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, @@ -13206,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{ @@ -13228,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, @@ -13267,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, @@ -13282,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, @@ -13294,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{ @@ -13306,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, @@ -13324,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{ @@ -13410,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{ @@ -13438,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{ @@ -13472,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, @@ -13485,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, @@ -13523,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{ @@ -13535,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, @@ -13555,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, @@ -13671,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{ @@ -13709,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{ @@ -13774,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, @@ -13786,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{ @@ -13812,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{ @@ -13828,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{ @@ -13845,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{ @@ -13868,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{ @@ -13883,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{ @@ -13897,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{ @@ -13938,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{ @@ -13956,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{ @@ -13976,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, @@ -14034,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{ @@ -14045,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, @@ -14072,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{ @@ -14090,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{ @@ -14108,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{ @@ -14154,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{ @@ -14168,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{ @@ -14188,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{ @@ -14239,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{ @@ -14274,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{ @@ -14307,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, @@ -14354,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{ @@ -14384,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, @@ -14409,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{ @@ -14432,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{ @@ -14455,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{ @@ -14530,46 +11250,32 @@ /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/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, @@ -14579,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{ @@ -14600,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{ @@ -14626,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, @@ -14679,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, @@ -14704,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{ @@ -14737,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{ @@ -14794,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, @@ -14817,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{ @@ -14896,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, @@ -14929,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{ @@ -14942,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{ @@ -14963,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, @@ -14986,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" - }, +/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{ @@ -15008,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{ @@ -15021,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, @@ -15048,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{ @@ -15059,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{ @@ -15073,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{ @@ -15085,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{ @@ -15101,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, @@ -15120,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, @@ -15131,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{ @@ -15153,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, @@ -15188,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, @@ -15233,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, @@ -15247,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{ @@ -15281,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{ @@ -15302,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" - }, +/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, @@ -15346,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, @@ -15368,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{ @@ -15383,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, @@ -15414,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{ @@ -15432,30 +11945,22 @@ /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" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "aVm" = ( /turf/closed/wall/r_wall, @@ -15465,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, @@ -15500,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, @@ -15515,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, @@ -15542,14 +12026,10 @@ /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) "aVI" = ( /turf/closed/wall/r_wall, @@ -15563,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, @@ -15610,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, @@ -15632,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, @@ -15704,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, @@ -15767,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{ @@ -15780,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, @@ -15805,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{ @@ -15856,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, @@ -15899,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{ @@ -15918,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{ @@ -15961,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, @@ -15992,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{ @@ -16007,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, @@ -16077,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, @@ -16096,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{ @@ -16150,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, @@ -16167,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, @@ -16200,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, @@ -16238,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, @@ -16263,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, @@ -16283,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, @@ -16297,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, @@ -16309,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{ @@ -16415,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{ @@ -16429,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{ @@ -16444,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, @@ -16469,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{ @@ -16488,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{ @@ -16523,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{ @@ -16533,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, @@ -16544,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{ @@ -16592,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{ @@ -16609,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{ @@ -16621,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{ @@ -16702,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{ @@ -16726,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{ @@ -16790,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, @@ -16802,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, @@ -16831,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, @@ -16854,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, @@ -16865,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, @@ -16895,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{ @@ -16912,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{ @@ -16952,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, @@ -16965,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{ @@ -17009,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{ @@ -17035,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{ @@ -17048,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, @@ -17062,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{ @@ -17116,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, @@ -17135,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{ @@ -17216,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{ @@ -17262,26 +13362,17 @@ /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, @@ -17289,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{ @@ -17359,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, @@ -17392,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{ @@ -17421,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, @@ -17440,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, @@ -17454,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{ @@ -17471,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, @@ -17533,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{ @@ -17547,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{ @@ -17565,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{ @@ -17593,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{ @@ -17607,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{ @@ -17618,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{ @@ -17629,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{ @@ -17719,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, @@ -17736,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{ @@ -17752,16 +13744,12 @@ /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{ @@ -17770,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, @@ -17811,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, @@ -17834,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{ @@ -17853,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{ @@ -17886,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, @@ -17908,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, @@ -17950,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, @@ -17966,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, @@ -17981,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, @@ -18010,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{ @@ -18030,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{ @@ -18057,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, @@ -18071,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{ @@ -18099,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, @@ -18117,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, @@ -18201,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, @@ -18224,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{ @@ -18238,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, @@ -18263,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{ @@ -18291,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{ @@ -18302,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, @@ -18324,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{ @@ -18356,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{ @@ -18371,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{ @@ -18434,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{ @@ -18460,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, @@ -18491,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{ @@ -18503,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, @@ -18533,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{ @@ -18558,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, @@ -18573,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{ @@ -18592,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, @@ -18625,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{ @@ -18650,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, @@ -18662,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{ @@ -18676,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{ @@ -18727,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, @@ -18740,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{ @@ -18759,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, @@ -18795,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" - }, +/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{ @@ -18826,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, @@ -18862,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{ @@ -18874,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{ @@ -18891,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, @@ -18953,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, @@ -18965,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{ @@ -18984,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{ @@ -18999,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{ @@ -19042,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, @@ -19061,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, @@ -19075,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{ @@ -19134,9 +14840,7 @@ 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, @@ -19160,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{ @@ -19179,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{ @@ -19197,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{ @@ -19266,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{ @@ -19376,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, @@ -19402,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{ @@ -19460,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{ @@ -19485,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, @@ -19523,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, @@ -19555,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{ @@ -19630,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, @@ -19656,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{ @@ -19703,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, @@ -19716,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{ @@ -19728,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{ @@ -19762,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, @@ -19789,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{ @@ -19816,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, @@ -19835,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{ @@ -19850,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{ @@ -19869,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{ @@ -19904,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{ @@ -19931,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, @@ -19967,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{ @@ -19990,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{ @@ -20007,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, @@ -20042,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{ @@ -20091,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, @@ -20142,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{ @@ -20155,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, @@ -20169,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{ @@ -20190,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, @@ -20222,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{ @@ -20248,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, @@ -20262,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{ @@ -20319,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, @@ -20332,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, @@ -20356,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, @@ -20367,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{ @@ -20378,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{ @@ -20394,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{ @@ -20436,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, @@ -20456,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, @@ -20469,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{ @@ -20488,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, @@ -20520,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{ @@ -20555,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{ @@ -20577,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, @@ -20608,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, @@ -20621,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, @@ -20680,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, @@ -20700,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{ @@ -20711,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{ @@ -20837,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{ @@ -20874,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{ @@ -20925,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{ @@ -20936,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, @@ -20958,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, @@ -21006,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{ @@ -21067,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, @@ -21099,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{ @@ -21135,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{ @@ -21168,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, @@ -21220,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{ @@ -21255,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{ @@ -21268,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{ @@ -21302,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, @@ -21314,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{ @@ -21329,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{ @@ -21347,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, @@ -21387,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{ @@ -21438,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{ @@ -21478,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{ @@ -21510,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{ @@ -21582,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{ @@ -21615,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, @@ -21626,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{ @@ -21654,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{ @@ -21664,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, @@ -21700,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, @@ -21748,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, @@ -21768,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{ @@ -21798,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{ @@ -21870,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{ @@ -21881,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, @@ -21902,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{ @@ -21915,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{ @@ -21927,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{ @@ -21942,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{ @@ -21995,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{ @@ -22079,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, @@ -22109,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{ @@ -22140,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, @@ -22168,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{ @@ -22211,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{ @@ -22239,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{ @@ -22251,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{ @@ -22280,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{ @@ -22341,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, @@ -22373,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, @@ -22484,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, @@ -22531,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{ @@ -22550,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{ @@ -22562,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{ @@ -22606,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, @@ -22618,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, @@ -22653,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, @@ -22671,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{ @@ -22731,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, @@ -22777,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, @@ -22801,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{ @@ -22829,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, @@ -22867,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{ @@ -22887,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, @@ -22942,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, @@ -22956,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, @@ -22973,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, @@ -23017,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, @@ -23040,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, @@ -23076,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{ @@ -23088,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{ @@ -23100,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{ @@ -23116,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{ @@ -23127,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{ @@ -23195,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{ @@ -23214,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{ @@ -23249,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, @@ -23312,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{ @@ -23346,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{ @@ -23358,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, @@ -23387,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{ @@ -23407,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, @@ -23418,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{ @@ -23429,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, @@ -23441,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{ @@ -23525,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{ @@ -23543,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, @@ -23602,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, @@ -23614,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{ @@ -23634,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, @@ -23744,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{ @@ -23774,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{ @@ -23797,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{ @@ -23874,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, @@ -23921,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{ @@ -23940,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{ @@ -23963,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{ @@ -23974,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{ @@ -24007,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{ @@ -24017,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{ @@ -24098,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{ @@ -24110,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{ @@ -24122,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{ @@ -24152,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, @@ -24164,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{ @@ -24195,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{ @@ -24222,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{ @@ -24248,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{ @@ -24280,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{ @@ -24292,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, @@ -24315,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{ @@ -24370,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, @@ -24380,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{ @@ -24401,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, @@ -24442,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{ @@ -24457,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{ @@ -24529,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, @@ -24570,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{ @@ -24617,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, @@ -24630,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{ @@ -24640,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, @@ -24706,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, @@ -24729,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, @@ -24743,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{ @@ -24753,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, @@ -24770,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, @@ -24783,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{ @@ -24793,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{ @@ -24813,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{ @@ -24884,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{ @@ -24909,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, @@ -24920,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, @@ -25018,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{ @@ -25058,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{ @@ -25091,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{ @@ -25102,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, @@ -25122,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, @@ -25134,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{ @@ -25195,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, @@ -25221,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, @@ -25247,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, @@ -25271,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{ @@ -25308,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, @@ -25324,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, @@ -25361,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, @@ -25412,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, @@ -25432,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{ @@ -25488,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{ @@ -25513,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{ @@ -25534,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{ @@ -25553,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, @@ -25574,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{ @@ -25587,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{ @@ -25628,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{ @@ -25638,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{ @@ -25649,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{ @@ -25673,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{ @@ -25720,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{ @@ -25743,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, @@ -25773,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{ @@ -25791,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, @@ -25843,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{ @@ -25894,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, @@ -25924,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{ @@ -25942,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{ @@ -25972,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{ @@ -26000,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{ @@ -26013,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{ @@ -26034,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, @@ -26055,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{ @@ -26078,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{ @@ -26090,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{ @@ -26101,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{ @@ -26112,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{ @@ -26127,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{ @@ -26139,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{ @@ -26152,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{ @@ -26181,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{ @@ -26231,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, @@ -26269,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, @@ -26315,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, @@ -26335,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{ @@ -26352,49 +20189,30 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) "bFD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/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{ @@ -26409,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{ @@ -26421,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{ @@ -26437,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{ @@ -26496,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, @@ -26524,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, @@ -26611,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{ @@ -26684,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{ @@ -26700,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{ @@ -26712,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, @@ -26725,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{ @@ -26751,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{ @@ -26796,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{ @@ -26846,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{ @@ -26866,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{ @@ -26895,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, @@ -26930,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, @@ -26980,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, @@ -27033,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{ @@ -27072,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, @@ -27114,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, @@ -27133,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, @@ -27158,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{ @@ -27178,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, @@ -27257,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{ @@ -27314,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, @@ -27334,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, @@ -27365,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{ @@ -27407,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, @@ -27430,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, @@ -27460,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, @@ -27476,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{ @@ -27489,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{ @@ -27510,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, @@ -27536,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{ @@ -27557,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{ @@ -27615,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, @@ -27643,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, @@ -27672,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, @@ -27697,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, @@ -27720,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{ @@ -27744,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{ @@ -27758,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{ @@ -27771,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, @@ -27799,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{ @@ -27815,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, @@ -27857,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, @@ -27878,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, @@ -27913,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, @@ -27961,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{ @@ -27976,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{ @@ -27997,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{ @@ -28051,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, @@ -28099,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{ @@ -28110,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{ @@ -28139,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{ @@ -28166,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{ @@ -28209,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, @@ -28242,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{ @@ -28253,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{ @@ -28267,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, @@ -28297,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, @@ -28308,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, @@ -28343,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, @@ -28370,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, @@ -28427,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{ @@ -28472,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{ @@ -28544,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{ @@ -28558,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{ @@ -28578,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{ @@ -28593,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{ @@ -28608,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, @@ -28644,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{ @@ -28679,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, @@ -28707,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, @@ -28726,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, @@ -28758,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{ @@ -28773,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, @@ -28837,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{ @@ -28853,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" = ( @@ -28861,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{ @@ -28889,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, @@ -28910,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, @@ -28949,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, @@ -28975,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, @@ -28988,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{ @@ -29012,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, @@ -29026,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, @@ -29037,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{ @@ -29048,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, @@ -29089,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, @@ -29107,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{ @@ -29127,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{ @@ -29140,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, @@ -29151,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{ @@ -29168,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{ @@ -29190,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, @@ -29243,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, @@ -29269,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, @@ -29279,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{ @@ -29316,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, @@ -29326,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{ @@ -29365,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{ @@ -29381,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, @@ -29413,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{ @@ -29447,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, @@ -29458,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{ @@ -29469,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{ @@ -29489,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, @@ -29528,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, @@ -29588,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, @@ -29599,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{ @@ -29616,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, @@ -29648,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, @@ -29682,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{ @@ -29695,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{ @@ -29729,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{ @@ -29745,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{ @@ -29783,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{ @@ -29820,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, @@ -29847,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, @@ -29863,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{ @@ -29892,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, @@ -29917,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{ @@ -29944,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, @@ -29980,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{ @@ -30005,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, @@ -30016,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{ @@ -30036,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, @@ -30072,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, @@ -30087,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{ @@ -30122,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{ @@ -30135,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{ @@ -30146,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, @@ -30206,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{ @@ -30234,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{ @@ -30381,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{ @@ -30408,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, @@ -30424,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, @@ -30434,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, @@ -30494,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{ @@ -30513,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{ @@ -30537,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, @@ -30577,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, @@ -30587,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{ @@ -30632,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, @@ -30648,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{ @@ -30674,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{ @@ -30692,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, @@ -30705,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, @@ -30727,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, @@ -30783,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{ @@ -30801,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, @@ -30852,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{ @@ -30881,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, @@ -30936,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, @@ -30948,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{ @@ -30990,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, @@ -31027,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{ @@ -31060,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{ @@ -31112,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{ @@ -31162,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{ @@ -31190,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, @@ -31203,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{ @@ -31219,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{ @@ -31237,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{ @@ -31284,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{ @@ -31313,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{ @@ -31332,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{ @@ -31353,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, @@ -31364,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{ @@ -31374,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{ @@ -31415,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, @@ -31435,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{ @@ -31466,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{ @@ -31502,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{ @@ -31524,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{ @@ -31542,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{ @@ -31575,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{ @@ -31586,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, @@ -31602,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{ @@ -31635,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{ @@ -31655,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, @@ -31677,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, @@ -31749,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, @@ -31775,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, @@ -31787,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, @@ -31822,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{ @@ -31854,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{ @@ -31867,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, @@ -31900,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, @@ -31917,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{ @@ -31951,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{ @@ -31964,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{ @@ -31992,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{ @@ -32037,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, @@ -32076,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, @@ -32132,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, @@ -32143,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{ @@ -32173,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{ @@ -32209,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{ @@ -32225,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{ @@ -32268,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, @@ -32295,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{ @@ -32329,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{ @@ -32364,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{ @@ -32388,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{ @@ -32400,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{ @@ -32410,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, @@ -32427,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, @@ -32458,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{ @@ -32526,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, @@ -32546,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, @@ -32612,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{ @@ -32632,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{ @@ -32695,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{ @@ -32781,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, @@ -32835,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{ @@ -32869,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{ @@ -32880,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{ @@ -32898,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{ @@ -32910,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, @@ -32933,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, @@ -32960,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, @@ -32992,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, @@ -33011,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, @@ -33074,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, @@ -33088,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{ @@ -33098,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{ @@ -33110,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, @@ -33122,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, @@ -33149,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{ @@ -33160,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{ @@ -33171,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{ @@ -33185,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{ @@ -33234,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{ @@ -33244,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, @@ -33261,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{ @@ -33282,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{ @@ -33314,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{ @@ -33331,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{ @@ -33360,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{ @@ -33379,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, @@ -33410,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{ @@ -33497,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{ @@ -33509,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, @@ -33547,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, @@ -33585,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{ @@ -33596,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{ @@ -33647,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, @@ -33753,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, @@ -33777,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, @@ -33808,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{ @@ -33827,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{ @@ -33839,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, @@ -33856,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, @@ -33874,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{ @@ -33885,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{ @@ -33896,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, @@ -33922,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, @@ -33962,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, @@ -33975,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{ @@ -34001,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{ @@ -34012,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{ @@ -34054,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, @@ -34103,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, @@ -34116,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, @@ -34134,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, @@ -34159,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{ @@ -34182,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{ @@ -34200,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{ @@ -34211,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, @@ -34236,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, @@ -34261,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, @@ -34277,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, @@ -34296,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, @@ -34353,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{ @@ -34404,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{ @@ -34454,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{ @@ -34574,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, @@ -34599,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{ @@ -34621,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{ @@ -34660,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{ @@ -34675,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, @@ -34705,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{ @@ -34722,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{ @@ -34736,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, @@ -34771,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{ @@ -34800,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, @@ -34827,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{ @@ -34866,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, @@ -34898,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{ @@ -34944,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{ @@ -34957,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, @@ -34967,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{ @@ -35016,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{ @@ -35063,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{ @@ -35081,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, @@ -35119,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{ @@ -35144,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{ @@ -35238,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{ @@ -35280,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{ @@ -35317,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{ @@ -35353,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{ @@ -35374,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{ @@ -35386,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, @@ -35409,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, @@ -35444,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{ @@ -35486,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, @@ -35536,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, @@ -35559,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, @@ -35578,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{ @@ -35641,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{ @@ -35656,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, @@ -35673,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{ @@ -35760,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, @@ -35790,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, @@ -35834,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{ @@ -35852,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{ @@ -35863,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, @@ -35925,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{ @@ -35961,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{ @@ -35972,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{ @@ -35990,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, @@ -36056,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, @@ -36089,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, @@ -36113,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{ @@ -36134,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, @@ -36159,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{ @@ -36173,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{ @@ -36207,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{ @@ -36239,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, @@ -36249,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{ @@ -36263,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{ @@ -36277,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, @@ -36301,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{ @@ -36375,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, @@ -36385,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, @@ -36438,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{ @@ -36448,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{ @@ -36467,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, @@ -36509,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, @@ -36613,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{ @@ -36648,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, @@ -36673,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, @@ -36708,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{ @@ -36730,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{ @@ -36764,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, @@ -36785,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{ @@ -36833,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, @@ -36847,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, @@ -36881,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, @@ -36927,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{ @@ -36952,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{ @@ -37017,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, @@ -37030,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{ @@ -37048,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, @@ -37073,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{ @@ -37118,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, @@ -37165,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, @@ -37178,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{ @@ -37229,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, @@ -37240,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, @@ -37271,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{ @@ -37301,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{ @@ -37338,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, @@ -37374,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, @@ -37448,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{ @@ -37496,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{ @@ -37536,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, @@ -37586,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{ @@ -37665,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, @@ -37678,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, @@ -37713,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{ @@ -37725,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{ @@ -37745,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{ @@ -37794,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, @@ -37819,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{ @@ -37849,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, @@ -37867,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{ @@ -37894,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, @@ -37907,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{ @@ -37928,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{ @@ -37940,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, @@ -37983,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{ @@ -38018,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, @@ -38029,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{ @@ -38058,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, @@ -38077,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{ @@ -38149,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{ @@ -38166,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{ @@ -38213,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{ @@ -38223,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, @@ -38250,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{ @@ -38262,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, @@ -38277,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, @@ -38322,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, @@ -38360,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, @@ -38372,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{ @@ -38442,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{ @@ -38459,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{ @@ -38482,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{ @@ -38607,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{ @@ -38659,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{ @@ -38695,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, @@ -38735,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, @@ -38754,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, @@ -38773,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, @@ -38807,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{ @@ -38821,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{ @@ -38834,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{ @@ -38846,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{ @@ -38858,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{ @@ -38909,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{ @@ -38951,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{ @@ -38986,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{ @@ -39025,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{ @@ -39044,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{ @@ -39064,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{ @@ -39138,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, @@ -39178,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, @@ -39195,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, @@ -39219,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, @@ -39243,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{ @@ -39315,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{ @@ -39335,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, @@ -39355,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, @@ -39369,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, @@ -39392,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{ @@ -39480,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, @@ -39502,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{ @@ -39530,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{ @@ -39542,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{ @@ -39586,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{ @@ -39628,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, @@ -39639,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{ @@ -39747,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{ @@ -39762,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{ @@ -39808,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, @@ -39832,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, @@ -39850,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{ @@ -39877,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{ @@ -39903,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{ @@ -39942,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, @@ -39954,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, @@ -39983,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, @@ -39998,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, @@ -40014,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, @@ -40031,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{ @@ -40053,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{ @@ -40088,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{ @@ -40119,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{ @@ -40132,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{ @@ -40144,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{ @@ -40157,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{ @@ -40174,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, @@ -40192,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, @@ -40204,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, @@ -40229,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, @@ -40258,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{ @@ -40270,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, @@ -40340,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, @@ -40384,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, @@ -40426,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, @@ -40450,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, @@ -40460,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, @@ -40494,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, @@ -40505,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" - }, +/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{ @@ -40537,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, @@ -40563,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, @@ -40593,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, @@ -40615,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, @@ -40667,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{ @@ -40679,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, @@ -40697,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{ @@ -40757,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, @@ -40871,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, @@ -40902,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{ @@ -40913,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{ @@ -40934,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, @@ -40977,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, @@ -41044,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{ @@ -41055,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{ @@ -41069,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{ @@ -41092,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{ @@ -41140,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{ @@ -41194,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, @@ -41215,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{ @@ -41226,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{ @@ -41254,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, @@ -41311,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, @@ -41403,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{ @@ -41424,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{ @@ -41437,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, @@ -41455,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{ @@ -41490,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, @@ -41508,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, @@ -41625,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, @@ -41637,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, @@ -41649,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{ @@ -41683,99 +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) "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, @@ -41792,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, @@ -41804,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{ @@ -41822,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{ @@ -41834,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, @@ -41851,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{ @@ -41871,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, @@ -41883,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, @@ -41918,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, @@ -41933,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, @@ -41947,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, @@ -41961,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, @@ -42026,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, @@ -42092,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, @@ -42119,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{ @@ -42146,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{ @@ -42166,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{ @@ -42194,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, @@ -42220,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, @@ -42251,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, @@ -42299,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{ @@ -42310,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{ @@ -42375,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{ @@ -42396,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, @@ -42408,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{ @@ -42448,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{ @@ -42461,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{ @@ -42475,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, @@ -42502,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{ @@ -42521,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{ @@ -42532,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{ @@ -42551,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{ @@ -42564,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{ @@ -42579,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{ @@ -42592,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{ @@ -42606,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{ @@ -42617,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{ @@ -42644,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, @@ -42678,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{ @@ -42728,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{ @@ -42766,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{ @@ -42814,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{ @@ -42826,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{ @@ -42838,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{ @@ -42913,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{ @@ -42949,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, @@ -42982,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{ @@ -43047,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, @@ -43071,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{ @@ -43085,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" - }, +/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{ @@ -43128,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{ @@ -43292,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{ @@ -43303,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{ @@ -43379,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, @@ -43421,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, @@ -43488,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{ @@ -43511,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{ @@ -43523,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{ @@ -43545,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{ @@ -43586,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, @@ -43626,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, @@ -43662,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, @@ -43693,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{ @@ -43811,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, @@ -43832,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, @@ -43842,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, @@ -43859,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, @@ -43878,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, @@ -43889,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, @@ -43900,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, @@ -43919,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{ @@ -43942,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, @@ -43992,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, @@ -44051,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, @@ -44063,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, @@ -44127,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, @@ -44160,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{ @@ -44198,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{ @@ -44245,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, @@ -44285,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{ @@ -44296,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{ @@ -44333,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{ @@ -44346,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{ @@ -44380,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{ @@ -44413,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{ @@ -44449,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{ @@ -44483,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, @@ -44531,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{ @@ -44546,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{ @@ -44558,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, @@ -44586,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{ @@ -44661,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{ @@ -44672,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{ @@ -44695,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{ @@ -44733,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{ @@ -44756,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{ @@ -44771,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, @@ -44839,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, @@ -44863,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, @@ -44883,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, @@ -44902,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, @@ -44987,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, @@ -44998,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, @@ -45015,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{ @@ -45061,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{ @@ -45072,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{ @@ -45142,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{ @@ -45173,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{ @@ -45211,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, @@ -45243,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{ @@ -45253,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{ @@ -45272,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, @@ -45317,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, @@ -45365,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, @@ -45381,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, @@ -45405,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{ @@ -45416,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{ @@ -45436,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{ @@ -45500,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, @@ -45515,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{ @@ -45603,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{ @@ -45634,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, @@ -45666,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, @@ -45684,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{ @@ -45716,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{ @@ -45734,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, @@ -45757,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{ @@ -45772,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{ @@ -45841,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{ @@ -45912,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, @@ -45934,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, @@ -45997,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, @@ -46023,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, @@ -46034,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{ @@ -46053,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, @@ -46083,10 +35352,7 @@ 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{ @@ -46094,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, @@ -46132,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{ @@ -46181,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, @@ -46222,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{ @@ -46251,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{ @@ -46303,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{ @@ -46314,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{ @@ -46328,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{ @@ -46340,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, @@ -46360,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, @@ -46383,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{ @@ -46400,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, @@ -46456,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, @@ -46466,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{ @@ -46485,24 +35684,16 @@ 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{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/landing_pad_one) "cSo" = ( /obj/structure/surface/table/reinforced, @@ -46530,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, @@ -46542,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, @@ -46569,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, @@ -46587,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, @@ -46632,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{ @@ -46681,23 +35841,17 @@ /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{ @@ -46725,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, @@ -46749,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{ @@ -46796,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, @@ -46826,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, @@ -46871,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, @@ -46908,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{ @@ -46919,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{ @@ -47000,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{ @@ -47063,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{ @@ -47089,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{ @@ -47114,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{ @@ -47169,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{ @@ -47215,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{ @@ -47324,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, @@ -47414,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{ @@ -47451,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, @@ -47464,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, @@ -47496,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{ @@ -47514,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{ @@ -47641,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{ @@ -47668,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{ @@ -47679,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{ @@ -47724,16 +36622,11 @@ /turf/open/asphalt, /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, @@ -47743,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, @@ -47800,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{ @@ -47849,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{ @@ -47896,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{ @@ -47918,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, @@ -47936,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{ @@ -47971,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{ @@ -48008,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{ @@ -48024,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{ @@ -48059,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{ @@ -48077,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, @@ -48109,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, @@ -48131,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{ @@ -48143,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{ @@ -48182,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, @@ -48195,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, @@ -48222,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, @@ -48241,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{ @@ -48287,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{ @@ -48303,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, @@ -48350,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, @@ -48383,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, @@ -48402,100 +37166,65 @@ /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, @@ -48512,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, @@ -48535,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{ @@ -48546,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{ @@ -48571,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, @@ -48588,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{ @@ -48603,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, @@ -48638,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, @@ -48689,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, @@ -48759,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{ @@ -48786,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{ @@ -48805,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{ @@ -48830,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, @@ -48879,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, @@ -48907,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, @@ -48925,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{ @@ -48944,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{ @@ -48996,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{ @@ -49022,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, @@ -49032,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{ @@ -49102,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, @@ -49162,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{ @@ -49203,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, @@ -49219,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{ @@ -49264,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{ @@ -49287,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{ @@ -49332,10 +37926,7 @@ /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{ @@ -49343,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, @@ -49410,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{ @@ -49460,9 +38022,7 @@ /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{ @@ -49472,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, @@ -49497,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{ @@ -49522,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{ @@ -49571,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{ @@ -49618,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, @@ -49695,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, @@ -49752,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{ @@ -49799,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{ @@ -49852,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{ @@ -49903,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{ @@ -49928,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, @@ -49961,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, @@ -50029,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{ @@ -50099,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, @@ -50149,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, @@ -50176,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, @@ -50235,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{ @@ -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,41 +39863,31 @@ /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{ @@ -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" - }, +/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{ @@ -57198,36 +43956,23 @@ /area/desert_dam/exterior/river/riverside_south) "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, @@ -57236,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{ @@ -57247,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, @@ -57278,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, @@ -57288,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{ @@ -57438,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{ @@ -57450,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{ @@ -57461,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{ @@ -57480,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{ @@ -57579,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{ @@ -57604,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, @@ -57639,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, @@ -57651,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{ @@ -57671,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{ @@ -57729,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, @@ -57747,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{ @@ -57786,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{ @@ -57797,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{ @@ -57814,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, @@ -57826,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{ @@ -57865,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{ @@ -57878,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, @@ -57905,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{ @@ -57949,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{ @@ -57963,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{ @@ -57975,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{ @@ -57987,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{ @@ -58003,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{ @@ -58016,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, @@ -58051,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, @@ -58066,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, @@ -58093,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, @@ -58133,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, @@ -58154,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{ @@ -58310,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, @@ -58340,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{ @@ -58351,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{ @@ -58368,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{ @@ -58403,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, @@ -58430,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{ @@ -58488,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, @@ -58519,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, @@ -58538,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, @@ -58602,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{ @@ -58628,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, @@ -58681,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{ @@ -58711,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, @@ -58788,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, @@ -58813,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, @@ -58826,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, @@ -58879,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{ @@ -58914,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{ @@ -58941,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, @@ -58971,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{ @@ -59041,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{ @@ -59071,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, @@ -59104,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{ @@ -59166,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{ @@ -59183,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{ @@ -59202,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, @@ -59217,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{ @@ -59240,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{ @@ -59271,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{ @@ -59283,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{ @@ -59295,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{ @@ -59308,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{ @@ -59322,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{ @@ -59334,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{ @@ -59347,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{ @@ -59361,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{ @@ -59373,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{ @@ -59385,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{ @@ -59399,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, @@ -59447,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{ @@ -59459,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{ @@ -59546,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{ @@ -59557,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{ @@ -59569,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, @@ -59591,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{ @@ -59617,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, @@ -59652,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, @@ -59680,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{ @@ -59698,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{ @@ -59778,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{ @@ -59817,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{ @@ -59855,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, @@ -59871,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{ @@ -59888,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{ @@ -59899,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{ @@ -60036,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, @@ -60066,71 +46193,50 @@ /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{ @@ -60142,9 +46248,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_telecoms) "eqo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -60158,16 +46262,10 @@ /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{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/landing_pad_two) "esG" = ( /obj/effect/decal/warning_stripes{ @@ -60182,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, @@ -60198,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{ @@ -60224,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, @@ -60234,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{ @@ -60266,10 +46352,7 @@ "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{ @@ -60281,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, @@ -60294,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, @@ -60319,18 +46396,14 @@ /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{ @@ -60370,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{ @@ -60384,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{ @@ -60395,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{ @@ -60423,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, @@ -60452,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{ @@ -60463,44 +46521,30 @@ /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "fqj" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/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{ @@ -60509,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{ @@ -60557,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{ @@ -60572,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{ @@ -60605,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, @@ -60616,9 +46637,7 @@ 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, @@ -60630,17 +46649,13 @@ /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, @@ -60649,27 +46664,20 @@ "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, @@ -60677,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, @@ -60713,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{ @@ -60736,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, @@ -60756,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{ @@ -60777,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, @@ -60801,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, @@ -60829,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, @@ -60847,10 +46819,7 @@ 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{ @@ -60865,9 +46834,7 @@ "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, @@ -60889,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, @@ -60899,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{ @@ -60909,41 +46872,28 @@ 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{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/landing_pad_two) "gLl" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -60957,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{ @@ -60978,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{ @@ -60996,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{ @@ -61044,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, @@ -61055,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{ @@ -61119,10 +47038,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) "hjW" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/landing_pad_two) "hmA" = ( /obj/structure/surface/table/almayer, @@ -61131,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{ @@ -61148,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{ @@ -61160,19 +47072,13 @@ /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{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/landing_pad_two) "hvD" = ( /obj/structure/shuttle/diagonal{ @@ -61181,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, @@ -61207,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, @@ -61223,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{ @@ -61245,9 +47140,7 @@ /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, @@ -61277,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, @@ -61288,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{ @@ -61313,17 +47197,12 @@ /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{ @@ -61333,17 +47212,13 @@ /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, @@ -61363,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, @@ -61379,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{ @@ -61404,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, @@ -61422,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{ @@ -61443,18 +47303,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "ign" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/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, @@ -61462,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, @@ -61475,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, @@ -61514,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{ @@ -61567,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{ @@ -61596,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{ @@ -61609,29 +47433,19 @@ /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{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/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, @@ -61648,10 +47462,7 @@ 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, @@ -61664,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{ @@ -61707,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, @@ -61718,27 +47521,20 @@ /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, @@ -61747,10 +47543,7 @@ "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, @@ -61775,9 +47568,7 @@ /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{ @@ -61790,10 +47581,7 @@ /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, @@ -61814,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{ @@ -61833,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{ @@ -61843,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, @@ -61903,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, @@ -61915,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{ @@ -61933,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{ @@ -61946,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, @@ -61980,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, @@ -61999,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{ @@ -62043,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{ @@ -62076,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, @@ -62090,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{ @@ -62104,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, @@ -62128,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, @@ -62169,36 +47891,23 @@ /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, @@ -62222,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{ @@ -62247,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, @@ -62259,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{ @@ -62271,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, @@ -62291,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{ @@ -62319,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, @@ -62332,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, @@ -62351,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, @@ -62374,16 +48054,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "lzs" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/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{ @@ -62391,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, @@ -62409,10 +48082,7 @@ /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, @@ -62430,9 +48100,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_hydro) "lKW" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -62442,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, @@ -62464,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, @@ -62480,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{ @@ -62534,9 +48184,7 @@ /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, @@ -62555,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{ @@ -62587,9 +48230,7 @@ /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{ @@ -62608,9 +48249,7 @@ "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{ @@ -62622,10 +48261,7 @@ /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, @@ -62642,28 +48278,18 @@ /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{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_one) "mqM" = ( /obj/effect/landmark/monkey_spawn, @@ -62690,10 +48316,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) "muj" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -62701,10 +48324,7 @@ /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, @@ -62750,9 +48370,7 @@ /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{ @@ -62764,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, @@ -62816,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, @@ -62833,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, @@ -62853,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{ @@ -62877,17 +48467,12 @@ /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, @@ -62897,9 +48482,7 @@ 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, @@ -62923,10 +48506,7 @@ /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "ndF" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/landing_pad_one) "ndP" = ( /obj/structure/stairs/perspective{ @@ -62938,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{ @@ -62949,9 +48527,7 @@ /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{ @@ -62961,17 +48537,12 @@ /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, @@ -62980,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{ @@ -63001,15 +48566,10 @@ "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{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/landing_pad_one) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63021,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, @@ -63037,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, @@ -63073,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{ @@ -63098,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{ @@ -63113,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{ @@ -63161,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{ @@ -63192,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{ @@ -63213,16 +48733,11 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "ogc" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/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{ @@ -63237,24 +48752,18 @@ "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{ @@ -63266,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{ @@ -63281,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, @@ -63329,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{ @@ -63358,10 +48856,7 @@ /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, @@ -63380,33 +48875,23 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "oMz" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/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{ @@ -63415,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, @@ -63438,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, @@ -63448,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, @@ -63466,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, @@ -63503,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{ @@ -63518,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, @@ -63552,10 +49017,7 @@ "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{ @@ -63575,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{ @@ -63600,23 +49055,17 @@ /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{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) "pzv" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63626,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{ @@ -63660,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, @@ -63690,10 +49128,7 @@ "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{ @@ -63705,61 +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{ - icon_state = "desert_transition_edge1" - }, +/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{ @@ -63780,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, @@ -63800,9 +49215,7 @@ /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{ @@ -63819,9 +49232,7 @@ /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, @@ -63830,18 +49241,14 @@ "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{ @@ -63862,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{ @@ -63885,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, @@ -63903,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{ @@ -63932,27 +49321,18 @@ }, /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{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) "qEJ" = ( /obj/structure/desertdam/decals/road_edge, @@ -63964,9 +49344,7 @@ "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, @@ -63981,9 +49359,7 @@ "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, @@ -64002,39 +49378,24 @@ /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{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/landing_pad_one) "qLT" = ( /obj/structure/showcase{ @@ -64042,10 +49403,7 @@ 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, @@ -64058,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{ @@ -64080,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, @@ -64092,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, @@ -64104,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, @@ -64121,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, @@ -64142,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, @@ -64161,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{ @@ -64176,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, @@ -64187,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, @@ -64224,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, @@ -64236,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, @@ -64248,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, @@ -64269,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, @@ -64280,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{ @@ -64302,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, @@ -64333,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, @@ -64352,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{ @@ -64372,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{ @@ -64383,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, @@ -64393,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, @@ -64417,9 +49710,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "sav" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/landing_pad_two) "saQ" = ( /obj/structure/fence, @@ -64432,9 +49723,7 @@ "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{ @@ -64445,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, @@ -64477,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{ @@ -64535,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{ @@ -64554,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{ @@ -64577,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{ @@ -64589,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{ @@ -64608,15 +49869,10 @@ 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{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/landing_pad_two) "sAZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64630,17 +49886,13 @@ /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{ @@ -64689,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{ @@ -64714,50 +49962,35 @@ 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{ - icon_state = "cement_sunbleached18" - }, +/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, @@ -64766,9 +49999,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_one) "sWS" = ( /obj/structure/disposalpipe/segment, @@ -64809,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{ @@ -64831,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, @@ -64847,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{ @@ -64860,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, @@ -64887,9 +50105,7 @@ /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{ @@ -64909,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, @@ -64922,16 +50136,10 @@ /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{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/landing_pad_one) "txD" = ( /obj/structure/toilet{ @@ -64941,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{ @@ -64953,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{ @@ -64970,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{ @@ -64983,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{ @@ -64994,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{ @@ -65016,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, @@ -65066,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, @@ -65086,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, @@ -65132,9 +50303,7 @@ }, /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{ @@ -65144,18 +50313,13 @@ /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, @@ -65163,9 +50327,7 @@ /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, @@ -65174,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{ @@ -65185,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{ @@ -65226,9 +50376,7 @@ 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{ @@ -65251,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, @@ -65298,9 +50436,7 @@ /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{ @@ -65315,10 +50451,7 @@ "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, @@ -65334,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{ @@ -65360,17 +50489,13 @@ /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, @@ -65383,24 +50508,18 @@ 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{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_two) "uTo" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -65408,9 +50527,7 @@ /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, @@ -65431,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{ @@ -65444,16 +50559,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "uZr" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/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{ @@ -65463,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{ @@ -65483,10 +50587,7 @@ /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, @@ -65505,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, @@ -65529,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, @@ -65546,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, @@ -65557,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, @@ -65574,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{ @@ -65605,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, @@ -65617,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{ @@ -65634,14 +50715,10 @@ /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{ @@ -65659,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, @@ -65704,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, @@ -65720,15 +50790,10 @@ /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{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_two) "vTR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -65747,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, @@ -65766,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{ @@ -65784,43 +50845,28 @@ /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, @@ -65828,9 +50874,7 @@ /area/desert_dam/interior/dam_interior/garage) "wpr" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_one) "wpW" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -65849,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{ @@ -65864,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{ @@ -65876,10 +50915,7 @@ /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, @@ -65898,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{ @@ -65928,17 +50962,11 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) "wEy" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/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, @@ -65949,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{ @@ -65969,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, @@ -66029,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, @@ -66042,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, @@ -66060,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, @@ -66072,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, @@ -66141,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{ @@ -66159,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, @@ -66172,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{ @@ -66188,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{ @@ -66200,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{ @@ -66241,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{ @@ -66252,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{ @@ -66274,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, @@ -66330,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, @@ -66359,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, @@ -66379,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, @@ -66400,9 +51350,7 @@ /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, @@ -66429,39 +51377,25 @@ /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{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/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{ @@ -66472,16 +51406,11 @@ "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{ @@ -66494,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{ @@ -66521,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{ @@ -66543,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{ @@ -66569,9 +51492,7 @@ /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{ @@ -66588,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) = {" @@ -88552,11 +73470,11 @@ lyB fdk hOK dhs -dpv -dqe +dpw +dqf dqO -dqe -dqe +dqf +dqf edO dus dVT 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 53aaaee59201..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,19 +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" }, -/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, @@ -330,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{ @@ -347,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{ @@ -357,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{ @@ -413,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{ @@ -428,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, @@ -480,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{ @@ -494,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{ @@ -506,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{ @@ -533,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{ @@ -562,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, @@ -573,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{ @@ -587,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, @@ -612,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, @@ -647,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{ @@ -679,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, @@ -690,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{ @@ -708,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{ @@ -720,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, @@ -737,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..f66743b6388e 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,15 @@ /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 +25392,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 +25413,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 +25435,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 +25447,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 +25471,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 +25493,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 +25522,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 +25539,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 +25548,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 +25565,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 +25577,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 +25625,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 +25644,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 +25658,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 +25668,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 +25697,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 +25716,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 +25731,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 +25743,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 +25760,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 +25784,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 +25810,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 +25831,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 +25871,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 +25892,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 +25906,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 +25926,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 +25948,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 +25980,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 +25989,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 +26009,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 +26025,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 +26041,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 +26052,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 +26066,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 +26074,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 +26083,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 +26101,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 +26117,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 +26140,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 +26154,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 +26162,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 +26207,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 +26216,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 +26234,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 +26266,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 +26275,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 +26286,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 +26298,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 +26313,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 +26337,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 +26365,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 +26378,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 +26423,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 +26431,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 +26463,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 +26498,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 +26518,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 +26533,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 +26557,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 +26571,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 +26599,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 +26620,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 +26636,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 +26645,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 +26673,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 +26689,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 +26697,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 +26708,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 +26722,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 +26740,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 +26756,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 +26782,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 +26790,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 +26804,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 +26813,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 +26829,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 +26840,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 +26854,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 +26875,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 +26898,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 +26906,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 +26914,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 +26937,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 +26956,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 +26993,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 +27009,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 +27027,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 +27063,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 +27098,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 +27110,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 +27126,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 +27155,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 +27184,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 +27200,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 +27218,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 +27232,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 +27247,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 +27274,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 +27294,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 +27331,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 +27339,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 +27364,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 +27383,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 +27393,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 +27415,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 +27433,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 +27475,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 +27491,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 +27505,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 +27517,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 +27530,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 +27553,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 +27610,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 +27635,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 +27643,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 +27670,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 +27688,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 +27718,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 +27762,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 +27774,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 +27821,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 +27853,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 +27884,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 +27897,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 +27924,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 +27945,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 +27954,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 +27966,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 +27980,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 +28003,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 +28030,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 +28041,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 +28058,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 +28071,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 +28087,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 +28096,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 +28110,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 +28123,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 +28144,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 +28166,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 +28211,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 +28224,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 +28241,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 +28270,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 +28288,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 +28297,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 +28318,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 +28336,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 +28356,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 +28367,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 +28389,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 +28418,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 +28437,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 +28458,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 +28468,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 +28478,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 +28499,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 +28510,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 +28526,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 +28534,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 +28559,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 +28575,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 +28588,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 +28600,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 +28608,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 +28623,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 +28632,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 +28640,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 +28678,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 +28688,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 +28725,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 +28744,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 +28752,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 +28764,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 +28808,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 +28816,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 +28862,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 +28882,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 +28911,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 +28929,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 +28947,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 +28959,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 +28973,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 +28991,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 +29002,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 +29014,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 +29027,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 +29061,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 +29099,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 +29120,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 +29131,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 +29147,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 +29165,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 +29173,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 +29196,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 +29209,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 +29229,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 +29241,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 +29260,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 +29302,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 +29318,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 +29328,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 +29355,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 +29378,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 +29394,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 +29406,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 +29417,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 +29454,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 +29469,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 +29491,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 +29514,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 +29524,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 +29532,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 +29544,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 +29563,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 +29582,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 +29594,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 +29611,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 +29627,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 +29638,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 +29656,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 +29690,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 +29711,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 +29721,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 +29734,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 +29742,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 +29753,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 +29765,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 +29782,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 +29791,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 +29801,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 +29809,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 +29850,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 +29877,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 +29888,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 +29899,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 +29916,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 +29925,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 +29941,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 +29950,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 +29979,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 +29997,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 +30011,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 +30020,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 +30055,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 +30086,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 +30094,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 +30121,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 +30132,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 +30154,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 +30166,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 +30185,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 +30200,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 +30229,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 +30258,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 +30275,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 +30289,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 +30298,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 +30315,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 +30334,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 +30354,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 +30365,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 +30377,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 +30397,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 +30426,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 +30442,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 +30450,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 +30458,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 +30468,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 +30481,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 +30501,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 +30514,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 +30529,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 +30545,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 +30563,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 +30574,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 +30588,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 +30604,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 +30638,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 +30646,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 +30673,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 +30689,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 +30697,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 +30737,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 +30771,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 +30790,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 +30798,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 +30808,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 +30835,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 +30848,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 +30871,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 +30891,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 +30913,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 +30937,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 +30985,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 +31008,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 +31031,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 +31066,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 +31087,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 +31101,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 +31120,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 +31149,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 +31163,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 +31209,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 +31229,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 +31241,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 +31294,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 +31302,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 +31313,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 +31325,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 +31358,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 +31374,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 +31385,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 +31425,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 +31442,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 +31465,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 +31510,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 +31520,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 +77423,7 @@ vlU xSz uYi lRT -deL +dzl dzl dzl dzl @@ -88367,10 +80146,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..80342068f6e6 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,10 +10133,7 @@ /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, @@ -12603,10 +10141,7 @@ /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 +10152,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 +10217,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 +10226,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 +10356,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 +10391,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 +10411,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 +10458,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 +10592,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 +10607,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 +10622,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 +10675,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 +10768,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 +10780,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 +10809,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 +10861,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 +10872,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 +10892,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 +10907,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 +10924,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 +10937,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 +10969,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 +11017,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 +11060,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 +11074,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 +11104,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 +11161,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 +11182,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 +11192,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 +11204,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 +11214,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 +11225,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 +11234,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 +11246,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 +11266,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 +11274,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 +11284,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 +11299,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 +11314,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 +11323,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 +11333,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 +11380,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 +11394,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 +11403,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 +11411,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 +11424,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 +11453,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 +11494,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 +11530,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 +11576,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 +11609,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 +11625,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 +11658,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 +11667,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 +11675,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 +11686,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 +11700,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 +11720,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 +11729,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 +11741,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 +11774,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 +11799,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 +11808,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 +11839,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 +11851,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 +11935,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 +11949,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 +11978,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 +11987,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 +12015,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 +12024,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 +12046,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 +12077,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 +12131,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 +12164,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 +12180,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 +12196,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 +12204,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 +12215,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 +12237,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 +12262,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 +12285,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 +12311,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 +12415,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 +12436,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 +12444,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 +12460,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 +12469,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 +12481,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 +12490,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 +12522,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 +12542,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 +12558,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 +12577,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 +12614,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 +12623,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 +12634,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 +12657,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 +12673,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 +12685,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 +12695,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 +12714,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 +12749,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 +12759,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 +12795,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 +12875,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 +12906,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 +12915,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 +12948,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 +12999,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 +13068,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 +13080,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 +13095,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 +13111,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 +13126,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 +13158,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 +13169,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 +13191,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 +13207,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 +13287,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 +13313,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 +13342,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 +13361,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 +13397,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 +13434,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 +13488,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 +13509,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 +13537,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 +13547,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 +13560,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 +13578,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 +13588,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 +13601,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 +13611,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 +13626,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 +13639,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 +13673,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 +13689,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 +13699,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 +13711,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 +13746,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 +13768,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 +13806,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 +13830,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 +13873,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 +13943,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 +13951,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 +13979,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 +14016,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 +14028,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 +14040,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 +14052,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 +14088,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 +14120,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 +14135,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 +14145,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 +14172,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 +14185,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 +14207,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 +14263,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 +14313,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 +14326,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 +14398,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 +14441,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 +14504,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 +14524,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 +14536,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 +14567,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 +14580,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 +14589,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 +14611,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 +14655,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 +14690,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 +14706,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 +14715,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 +14726,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 +14739,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 +14751,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 +14760,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 +14768,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 +14790,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 +14825,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 +14859,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 +14883,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 +14892,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 +14943,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 +15000,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 +15041,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 +15156,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 +15194,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 +15220,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 +15243,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 +15264,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 +15276,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 +15293,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 +15323,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 +15339,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 +15351,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 +15363,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 +15379,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 +15424,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 +15440,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 +15466,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 +15482,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 +15514,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 +15522,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 +15532,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 +15544,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 +15562,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 +15580,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 +15639,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 +15656,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 +15693,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 +15704,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 +15734,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 +15781,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 +15801,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 +15811,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 +15866,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 +15892,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 +15919,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 +15935,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 +15962,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 +15984,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 +16025,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 +16076,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 +16097,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 +16110,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 +16132,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 +16181,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 +16203,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 +16217,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 +16284,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 +16305,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 +16330,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 +16376,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 +16427,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 +16448,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 +16481,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 +16519,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 +16527,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 +16543,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 +16588,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 +16626,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 +16634,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 +16656,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 +16667,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 +16678,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 +16719,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 +16734,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 +16793,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 +16802,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 +16823,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 +16865,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 +16884,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 +16941,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 +16950,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 +16980,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 +17003,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 +17017,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 +17029,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 +17052,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 +17102,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 +17142,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 +17162,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 +17184,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 +17219,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 +17239,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 +17251,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 +17306,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 +17351,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 +17360,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 +17369,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 +17379,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 +17399,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 +17408,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 +17418,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 +17431,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 +17458,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 +17467,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 +17479,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 +17489,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 +17501,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 +17510,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 +17519,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 +17529,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 +17542,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 +17640,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 +17687,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 +17705,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 +17743,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 +17754,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 +17773,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 +17817,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 +17864,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 +17925,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 +17941,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 +17997,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 +18021,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 +18108,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 +18126,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 +18145,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 +18206,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 +18215,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 +18235,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 +18244,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 +18254,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 +18296,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 +18305,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 +18323,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 +18419,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 +18451,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 +18506,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 +18514,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 +18584,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 +18624,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 +18638,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 +18653,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 +18663,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 +18675,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 +18685,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 +18695,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 +18828,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 +18837,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 +18859,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 +18872,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 +18915,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 +18933,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 +18943,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 +19046,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 +19091,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 +19103,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 +19206,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 +19220,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 +19235,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 +19261,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 +19281,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 +19305,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 +19350,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 +19388,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 +19435,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 +19458,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 +19526,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 +19589,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 +19662,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 +19671,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 +19696,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 +19705,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 +19752,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 +19798,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 +19829,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 +19863,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 +19894,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 +19904,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 +19925,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 +19944,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 +19972,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 +19993,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 +20132,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 +20152,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 +20204,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 +20301,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 +20345,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 +20357,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 +20370,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 +20385,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 +20404,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 +20447,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 +20458,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 +20493,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 +20524,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 +20573,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 +20581,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 +20625,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 +20646,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 +20654,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 +20662,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 +20698,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 +20713,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 +20794,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 +20843,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 +20887,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 +20930,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 +20954,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 +20993,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 +21014,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 +21087,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 +21125,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 +21153,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 +21187,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 +21206,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 +21261,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 +21278,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 +21287,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 +21296,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 +21312,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 +21332,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 +21358,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 +21411,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 +21419,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 +21434,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 +21461,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 +21489,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 +21504,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 +21660,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 +21672,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 +21743,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 +21792,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 +21806,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 +21814,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 +21858,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 +21869,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 +21926,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 +21956,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 +21968,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 +21978,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 +22030,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 +22044,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 +22060,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 +22079,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 +22097,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 +22183,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 +22259,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 +22292,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 +22311,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 +22342,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 +22358,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 +22366,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 +22414,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 +22432,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 +22538,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 +22566,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 +22580,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 +22598,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 +22608,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 +22618,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 +22628,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 +22637,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 +22646,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 +22656,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 +22664,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 +22693,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 +22702,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 +22719,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 +22728,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 +22756,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 +22901,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 +22912,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 +22923,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 +22936,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 +22963,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 +22977,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 +23009,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 +23055,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 +23063,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 +23106,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 +23124,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 +23178,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 +23193,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 +23204,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 +23264,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 +23279,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 +23304,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 +23318,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 +23328,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 +23337,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 +23346,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 +23370,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 +23387,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 +23395,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 +23405,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 +23414,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 +23430,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 +23440,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 +23459,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 +23468,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 +23481,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 +23493,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 +23520,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 +23544,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 +23579,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 +23609,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 +23664,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 +23695,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 +23707,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 +23719,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 +23731,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 +23779,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 +23788,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 +23832,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 +23851,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 +23879,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 +23889,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 +23946,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 +23960,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 +23983,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 +23997,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 +24035,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 +24118,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 +24127,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 +24136,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 +24208,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 +24218,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 +24237,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 +24249,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 +24281,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 +24291,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 +24312,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 +24325,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 +24367,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 +24387,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 +24404,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 +24427,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 +24452,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 +24486,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 +24502,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 +24530,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 +24583,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 +24591,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 +24642,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 +24680,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 +24739,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 +24765,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 +24774,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 +24838,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 +24846,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 +24858,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 +24952,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 +24964,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 +24983,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 +25005,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 +25014,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 +25026,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 +25063,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 +25072,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 +25081,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 +25103,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 +25119,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 +25131,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 +25140,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 +25149,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 +25165,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 +25176,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 +25194,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 +25209,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 +25224,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 +25232,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 +25240,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 +25287,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 +25298,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 +25319,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 +25352,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 +25403,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 +25470,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 +25510,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 +25530,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 +25545,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 +25555,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 +25577,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 +25586,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 +25636,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 +25659,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 +25680,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 +25709,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 +25743,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 +25753,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 +25762,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 +25774,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 +25783,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 +25809,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 +25828,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 +25846,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 +25886,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 +25902,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 +25914,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 +25960,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 +25976,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 +25993,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 +26007,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 +26015,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 +26038,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 +26114,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 +26124,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 +26198,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 +26227,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 +26270,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 +26278,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 +26322,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 +26330,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 +26338,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 +26346,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 +26361,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 +26385,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 +26409,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 +26420,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 +26479,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 +26507,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 +26515,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 +26527,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 +26547,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 +26567,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 +26581,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 +26620,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 +26628,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 +26637,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 +26653,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 +26661,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 +26669,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 +26700,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 +26740,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 +26775,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 +26805,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 +26822,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 +26845,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 +26865,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 +26913,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 +26929,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 +26946,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 +26982,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 +26998,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 +27006,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 +27029,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 +27045,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 +27060,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 +27086,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 +27095,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 +27134,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 +27161,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 +27180,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 +27222,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 +27258,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 +27297,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 +27318,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 +27333,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 +27352,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 +27365,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 +27398,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 +27412,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 +27431,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 +27440,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 +27464,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 +27488,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 +27501,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 +27543,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 fc8a5f896be1..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{ @@ -1949,25 +1658,17 @@ 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{ @@ -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,9 +3180,7 @@ 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{ @@ -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{ @@ -6671,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, @@ -6695,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, @@ -6729,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, @@ -6747,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{ @@ -6770,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, @@ -6814,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{ @@ -6835,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, @@ -6867,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, @@ -6877,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, @@ -6905,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, @@ -6933,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, @@ -6948,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, @@ -6975,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, @@ -7010,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{ @@ -7037,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, @@ -7058,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, @@ -7093,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, @@ -7120,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, @@ -7134,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{ @@ -7150,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, @@ -7197,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{ @@ -7222,18 +6189,14 @@ /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{ @@ -7249,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{ @@ -7277,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, @@ -7296,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{ @@ -7337,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, @@ -7353,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, @@ -7377,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{ @@ -7393,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, @@ -7440,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{ @@ -7453,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{ @@ -7468,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, @@ -7534,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{ @@ -7551,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{ @@ -7569,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, @@ -7579,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, @@ -7609,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{ @@ -7619,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, @@ -7632,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, @@ -7663,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{ @@ -7694,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, @@ -7705,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{ @@ -7723,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, @@ -7745,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, @@ -7758,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, @@ -7774,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, @@ -7786,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{ @@ -7815,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{ @@ -7851,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, @@ -7862,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{ @@ -7876,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, @@ -7886,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, @@ -7959,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{ @@ -7972,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, @@ -7997,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, @@ -8015,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, @@ -8032,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{ @@ -8060,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{ @@ -8111,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, @@ -8158,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{ @@ -8180,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, @@ -8201,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{ @@ -8243,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, @@ -8263,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, @@ -8280,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, @@ -8305,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, @@ -8318,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, @@ -8331,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{ @@ -8346,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, @@ -8365,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{ @@ -8381,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{ @@ -8429,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{ @@ -8460,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{ @@ -8473,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{ @@ -8498,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{ @@ -8513,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, @@ -8539,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, @@ -8571,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{ @@ -8601,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, @@ -8620,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{ @@ -8656,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, @@ -8674,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, @@ -8692,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{ @@ -8703,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{ @@ -8751,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, @@ -8783,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, @@ -8801,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, @@ -8818,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, @@ -8836,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{ @@ -8856,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, @@ -8872,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{ @@ -8895,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, @@ -8907,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, @@ -8932,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, @@ -8945,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, @@ -8955,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{ @@ -8976,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, @@ -8998,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, @@ -9052,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{ @@ -9116,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{ @@ -9137,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, @@ -9153,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{ @@ -9172,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{ @@ -9199,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, @@ -9213,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{ @@ -9237,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, @@ -9257,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{ @@ -9298,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, @@ -9321,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{ @@ -9355,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{ @@ -9401,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, @@ -9435,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, @@ -9453,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{ @@ -9467,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, @@ -9500,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, @@ -9520,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{ @@ -9582,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, @@ -9609,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, @@ -9635,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{ @@ -9667,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, @@ -9678,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{ @@ -9688,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, @@ -9700,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, @@ -9723,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, @@ -9739,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, @@ -9775,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, @@ -9802,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, @@ -9822,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{ @@ -9848,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, @@ -9870,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, @@ -9902,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{ @@ -9912,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, @@ -9925,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{ @@ -9939,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, @@ -9971,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, @@ -9989,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, @@ -10000,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, @@ -10011,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{ @@ -10031,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, @@ -10074,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, @@ -10086,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{ @@ -10101,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{ @@ -10141,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, @@ -10185,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, @@ -10195,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, @@ -10211,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, @@ -10231,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, @@ -10261,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, @@ -10271,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, @@ -10293,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, @@ -10317,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{ @@ -10357,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, @@ -10385,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, @@ -10406,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{ @@ -10421,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{ @@ -10445,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, @@ -10458,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{ @@ -10475,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, @@ -10492,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{ @@ -10509,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, @@ -10525,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, @@ -10538,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, @@ -10548,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{ @@ -10564,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, @@ -10576,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{ @@ -10609,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{ @@ -10648,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, @@ -10658,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, @@ -10669,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{ @@ -10696,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, @@ -10706,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{ @@ -10736,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, @@ -10771,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, @@ -10800,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, @@ -10829,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, @@ -10842,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{ @@ -10876,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, @@ -10887,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, @@ -10926,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{ @@ -10952,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{ @@ -10992,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, @@ -11004,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, @@ -11045,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{ @@ -11070,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{ @@ -11095,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, @@ -11130,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, @@ -11145,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, @@ -11158,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, @@ -11179,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, @@ -11201,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, @@ -11218,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, @@ -11229,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{ @@ -11246,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{ @@ -11274,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, @@ -11287,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{ @@ -11309,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, @@ -11333,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{ @@ -11364,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, @@ -11383,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, @@ -11424,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{ @@ -11436,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{ @@ -11450,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, @@ -11492,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, @@ -11509,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{ @@ -11528,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, @@ -11546,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{ @@ -11569,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{ @@ -11590,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, @@ -11603,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, @@ -11618,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, @@ -11630,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, @@ -11643,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, @@ -11655,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, @@ -11690,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{ @@ -11702,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, @@ -11717,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{ @@ -11729,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{ @@ -11759,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, @@ -11774,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, @@ -11784,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{ @@ -11840,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, @@ -11868,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, @@ -11900,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{ @@ -11917,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, @@ -11937,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, @@ -11964,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, @@ -11997,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, @@ -12018,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{ @@ -12041,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, @@ -12091,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, @@ -12107,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, @@ -12146,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, @@ -12156,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{ @@ -12191,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, @@ -12202,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, @@ -12223,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{ @@ -12255,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{ @@ -12267,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, @@ -12295,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{ @@ -12320,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{ @@ -12335,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{ @@ -12371,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{ @@ -12416,9 +10615,7 @@ /turf/open/auto_turf/snow/layer2, /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{ @@ -12438,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, @@ -12470,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{ @@ -12481,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{ @@ -12502,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, @@ -12513,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{ @@ -12526,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, @@ -12616,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{ @@ -12628,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, @@ -12662,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{ @@ -12689,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, @@ -12702,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, @@ -12722,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, @@ -12739,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, @@ -12769,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{ @@ -12797,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{ @@ -12826,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{ @@ -12855,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, @@ -12896,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{ @@ -12915,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{ @@ -12961,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{ @@ -12981,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{ @@ -13000,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, @@ -13010,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, @@ -13020,18 +11153,14 @@ 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) "idR" = ( /obj/structure/platform_decoration/strata{ @@ -13043,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{ @@ -13071,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, @@ -13089,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, @@ -13143,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, @@ -13158,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{ @@ -13194,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, @@ -13236,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, @@ -13257,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, @@ -13274,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{ @@ -13298,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{ @@ -13317,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{ @@ -13339,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, @@ -13379,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, @@ -13405,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{ @@ -13436,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{ @@ -13461,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{ @@ -13481,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, @@ -13507,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, @@ -13520,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, @@ -13537,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, @@ -13547,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{ @@ -13563,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, @@ -13581,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, @@ -13602,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{ @@ -13634,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{ @@ -13653,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, @@ -13672,10 +11694,7 @@ 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{ @@ -13685,10 +11704,7 @@ /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{ @@ -13711,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{ @@ -13742,16 +11755,10 @@ /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{ @@ -13764,15 +11771,11 @@ 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, @@ -13794,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, @@ -13829,10 +11830,7 @@ /turf/open/auto_turf/snow/layer0, /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, @@ -13840,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, @@ -13850,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{ @@ -13866,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, @@ -13893,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{ @@ -13931,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{ @@ -13948,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{ @@ -13985,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, @@ -14015,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, @@ -14046,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, @@ -14056,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, @@ -14066,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, @@ -14077,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{ @@ -14095,10 +12051,7 @@ /turf/open/auto_turf/snow/layer3, /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, @@ -14110,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, @@ -14132,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{ @@ -14169,10 +12115,7 @@ 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{ @@ -14181,9 +12124,7 @@ /turf/open/auto_turf/snow/layer4, /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, @@ -14207,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{ @@ -14251,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, @@ -14265,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{ @@ -14334,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{ @@ -14364,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, @@ -14401,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{ @@ -14425,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{ @@ -14438,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, @@ -14449,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, @@ -14460,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, @@ -14512,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{ @@ -14526,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{ @@ -14572,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{ @@ -14584,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{ @@ -14602,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{ @@ -14647,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, @@ -14673,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, @@ -14703,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{ @@ -14718,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{ @@ -14800,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{ @@ -14820,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, @@ -14860,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, @@ -14874,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{ @@ -14888,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, @@ -14907,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{ @@ -14918,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, @@ -14936,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{ @@ -14974,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, @@ -14996,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, @@ -15033,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{ @@ -15053,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, @@ -15126,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{ @@ -15151,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{ @@ -15189,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{ @@ -15244,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{ @@ -15255,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, @@ -15269,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, @@ -15288,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, @@ -15323,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, @@ -15356,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, @@ -15384,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, @@ -15394,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{ @@ -15438,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, @@ -15455,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{ @@ -15502,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{ @@ -15546,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, @@ -15566,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, @@ -15625,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, @@ -15679,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, @@ -15698,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, @@ -15717,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, @@ -15743,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{ @@ -15760,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{ @@ -15784,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, @@ -15808,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, @@ -15819,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{ @@ -15835,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{ @@ -15853,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, @@ -15863,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, @@ -15873,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, @@ -15899,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, @@ -15924,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, @@ -15949,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{ @@ -15969,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, @@ -15988,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{ @@ -16026,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, @@ -16063,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{ @@ -16085,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{ @@ -16129,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, @@ -16148,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, @@ -16183,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{ @@ -16195,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, @@ -16231,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{ @@ -16248,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{ @@ -16265,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{ @@ -16295,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{ @@ -16309,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{ @@ -16338,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, @@ -16376,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{ @@ -16396,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, @@ -16414,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{ @@ -16439,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, @@ -16459,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{ @@ -16479,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{ @@ -16509,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, @@ -16532,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{ @@ -16546,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{ @@ -16614,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{ @@ -16633,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, @@ -16659,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, @@ -16684,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, @@ -16712,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, @@ -16724,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{ @@ -16751,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{ @@ -16811,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, @@ -16839,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{ @@ -16892,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{ @@ -16918,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, @@ -16962,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{ @@ -16979,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, @@ -17021,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, @@ -17032,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{ @@ -17049,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{ @@ -17071,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{ @@ -17083,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{ @@ -17098,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, @@ -17113,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, @@ -17129,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{ @@ -17149,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, @@ -17177,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, @@ -17193,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, @@ -17219,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, @@ -17235,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{ @@ -17255,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, @@ -17275,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, @@ -17285,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, @@ -17310,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, @@ -17332,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{ @@ -17346,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{ @@ -17392,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{ @@ -17405,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{ @@ -17456,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{ @@ -17472,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, @@ -17486,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{ @@ -17501,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{ @@ -17533,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, @@ -17558,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, @@ -17576,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, @@ -17595,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, @@ -17615,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{ @@ -17642,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, @@ -17678,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, @@ -17701,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, @@ -17722,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{ @@ -17741,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{ @@ -17775,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{ @@ -17803,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{ @@ -17852,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{ @@ -17865,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{ @@ -17896,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{ @@ -17912,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, @@ -17931,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{ @@ -17974,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{ @@ -17989,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, @@ -18003,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, @@ -18036,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, @@ -18052,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{ @@ -18083,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{ @@ -18099,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, @@ -18115,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, @@ -18146,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{ @@ -18194,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{ @@ -18207,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{ @@ -18233,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{ @@ -18270,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, @@ -18284,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, @@ -18301,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, @@ -18312,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, @@ -18369,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, @@ -18383,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, @@ -18406,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, @@ -18460,14 +15799,10 @@ /turf/open/auto_turf/snow/layer1, /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, @@ -18487,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, @@ -18526,10 +15854,7 @@ /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) "nEQ" = ( /obj/structure/inflatable, @@ -18543,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, @@ -18579,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, @@ -18611,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{ @@ -18624,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{ @@ -18647,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, @@ -18666,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{ @@ -18695,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, @@ -18729,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{ @@ -18755,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{ @@ -18776,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{ @@ -18792,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, @@ -18807,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{ @@ -18837,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, @@ -18849,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, @@ -18867,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{ @@ -18889,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, @@ -18906,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, @@ -18987,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, @@ -19001,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{ @@ -19017,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{ @@ -19051,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{ @@ -19064,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, @@ -19114,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, @@ -19150,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, @@ -19167,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, @@ -19177,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{ @@ -19201,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{ @@ -19218,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, @@ -19232,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, @@ -19254,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{ @@ -19298,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, @@ -19321,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, @@ -19334,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{ @@ -19346,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{ @@ -19369,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, @@ -19392,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, @@ -19417,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, @@ -19442,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{ @@ -19463,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, @@ -19490,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{ @@ -19505,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, @@ -19539,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{ @@ -19567,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{ @@ -19595,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, @@ -19637,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{ @@ -19649,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, @@ -19661,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{ @@ -19675,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, @@ -19707,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{ @@ -19729,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, @@ -19739,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{ @@ -19751,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{ @@ -19778,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, @@ -19826,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, @@ -19838,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{ @@ -19862,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, @@ -19877,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{ @@ -19892,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, @@ -19903,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, @@ -19915,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, @@ -19930,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{ @@ -19943,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{ @@ -19983,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{ @@ -20010,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{ @@ -20030,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, @@ -20041,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{ @@ -20068,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{ @@ -20083,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{ @@ -20093,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, @@ -20111,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, @@ -20144,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{ @@ -20166,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{ @@ -20195,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, @@ -20221,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, @@ -20284,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, @@ -20343,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, @@ -20370,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{ @@ -20381,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, @@ -20434,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{ @@ -20448,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{ @@ -20470,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, @@ -20498,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, @@ -20531,10 +17558,7 @@ /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, @@ -20555,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, @@ -20579,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{ @@ -20606,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{ @@ -20620,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, @@ -20637,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, @@ -20648,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, @@ -20684,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, @@ -20710,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, @@ -20734,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, @@ -20754,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{ @@ -20775,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, @@ -20869,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{ @@ -20893,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{ @@ -20925,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, @@ -20951,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, @@ -20977,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, @@ -20987,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, @@ -21009,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, @@ -21057,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{ @@ -21080,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{ @@ -21092,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{ @@ -21106,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{ @@ -21145,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, @@ -21162,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{ @@ -21188,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, @@ -21235,9 +18159,7 @@ 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, @@ -21248,10 +18170,7 @@ 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, @@ -21269,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, @@ -21286,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, @@ -21328,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{ @@ -21344,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, @@ -21368,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{ @@ -21417,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, @@ -21443,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, @@ -21456,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, @@ -21467,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{ @@ -21508,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, @@ -21550,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, @@ -21579,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, @@ -21594,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{ @@ -21625,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, @@ -21649,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, @@ -21666,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, @@ -21691,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{ @@ -21724,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, @@ -21764,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{ @@ -21789,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, @@ -21829,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, @@ -21849,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, @@ -21873,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{ @@ -21895,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{ @@ -21910,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, @@ -21920,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, @@ -21952,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{ @@ -21972,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{ @@ -21992,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{ @@ -22011,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{ @@ -22033,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, @@ -22052,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, @@ -22063,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, @@ -22084,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, @@ -22111,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, @@ -22133,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{ @@ -22155,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, @@ -22174,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, @@ -22199,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{ @@ -22227,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, @@ -22252,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{ @@ -22269,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, @@ -22279,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{ @@ -22294,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{ @@ -22311,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{ @@ -22358,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{ @@ -22388,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, @@ -22420,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, @@ -22447,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{ @@ -22469,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, @@ -22480,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, @@ -22520,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{ @@ -22539,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{ @@ -22562,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{ @@ -22584,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, @@ -22610,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, @@ -22636,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, @@ -22658,10 +19360,7 @@ /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, @@ -22672,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, @@ -22749,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{ @@ -22761,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{ @@ -22784,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, @@ -22808,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, @@ -22826,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, @@ -22840,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, @@ -22858,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, @@ -22869,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{ @@ -22889,9 +19555,7 @@ "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{ @@ -22910,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{ @@ -22945,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{ @@ -22965,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, @@ -22995,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, @@ -23017,19 +19665,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/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{ @@ -23042,9 +19685,7 @@ 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, @@ -23052,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{ @@ -23067,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, @@ -23077,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{ @@ -23117,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, @@ -23155,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{ @@ -23183,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, @@ -23214,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{ @@ -23237,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, @@ -23253,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{ @@ -23285,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{ @@ -23312,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{ @@ -23329,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{ @@ -23364,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{ @@ -23377,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, @@ -23417,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, @@ -23434,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, @@ -23447,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{ @@ -23494,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{ @@ -23514,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, @@ -23532,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, @@ -23559,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{ @@ -23582,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, @@ -23610,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{ @@ -23635,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{ @@ -23650,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, @@ -23670,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, @@ -23703,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, @@ -23714,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, @@ -23740,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, @@ -23751,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, @@ -23770,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{ @@ -23791,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, @@ -23807,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, @@ -23827,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{ @@ -23840,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{ @@ -23878,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, @@ -23890,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{ @@ -23920,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, @@ -23946,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{ @@ -24002,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, @@ -24017,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{ @@ -24040,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, @@ -24079,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, @@ -24131,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{ @@ -24162,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{ @@ -24181,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, @@ -24201,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{ @@ -24220,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{ @@ -24239,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, @@ -24277,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, @@ -24312,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, @@ -24335,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{ @@ -24347,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, @@ -24368,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{ @@ -24391,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{ @@ -24405,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{ @@ -24430,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, @@ -24472,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{ @@ -24504,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, @@ -24525,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, @@ -24546,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, @@ -24577,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, @@ -24593,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, @@ -24638,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{ @@ -24670,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, @@ -24683,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, @@ -24706,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, @@ -24724,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, @@ -24763,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{ @@ -24797,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, @@ -24839,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{ @@ -24857,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, @@ -24869,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, @@ -24880,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{ @@ -24911,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, @@ -24928,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, @@ -24938,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{ @@ -24975,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, @@ -24990,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{ @@ -25002,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{ @@ -25022,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, @@ -25038,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, @@ -25050,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{ @@ -25064,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{ @@ -25103,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, @@ -25115,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, @@ -25127,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{ @@ -25146,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{ @@ -25160,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{ @@ -25175,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, @@ -25202,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{ @@ -25224,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, @@ -25243,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, @@ -25253,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{ @@ -25291,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{ @@ -25316,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{ @@ -25330,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{ @@ -25359,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, @@ -25386,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, @@ -25417,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{ @@ -25430,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, @@ -25461,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{ @@ -25507,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, @@ -25532,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{ @@ -25544,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, @@ -25560,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{ @@ -25577,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{ @@ -25595,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{ @@ -25620,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{ @@ -25643,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, @@ -25664,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{ @@ -25697,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, @@ -25707,31 +21931,22 @@ /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) "vdw" = ( /obj/item/lightstick/red/spoke/planted{ @@ -25748,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, @@ -25768,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, @@ -25790,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, @@ -25803,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, @@ -25815,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, @@ -25841,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{ @@ -25853,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, @@ -25888,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, @@ -25899,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{ @@ -25914,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, @@ -25927,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, @@ -25944,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{ @@ -25973,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, @@ -26003,9 +22168,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) "vrG" = ( /obj/structure/largecrate/random/barrel/blue, @@ -26015,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{ @@ -26039,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, @@ -26058,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{ @@ -26074,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{ @@ -26110,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{ @@ -26141,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{ @@ -26167,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{ @@ -26203,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, @@ -26238,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, @@ -26249,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{ @@ -26269,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, @@ -26288,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{ @@ -26308,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, @@ -26353,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{ @@ -26367,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, @@ -26388,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, @@ -26425,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{ @@ -26451,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, @@ -26468,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, @@ -26482,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{ @@ -26499,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{ @@ -26530,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{ @@ -26565,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{ @@ -26582,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{ @@ -26615,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{ @@ -26645,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, @@ -26656,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, @@ -26675,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{ @@ -26704,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, @@ -26735,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, @@ -26755,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, @@ -26774,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, @@ -26807,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{ @@ -26825,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{ @@ -26864,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{ @@ -26891,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{ @@ -26911,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, @@ -26961,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{ @@ -26971,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, @@ -26989,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{ @@ -27004,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, @@ -27021,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{ @@ -27051,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, @@ -27061,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, @@ -27083,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{ @@ -27127,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, @@ -27163,10 +23136,7 @@ /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{ @@ -27175,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, @@ -27206,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, @@ -27233,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, @@ -27252,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, @@ -27290,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{ @@ -27301,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, @@ -27327,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, @@ -27342,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, @@ -27369,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{ @@ -27389,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, @@ -27400,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, @@ -27426,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{ @@ -27468,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, @@ -27483,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, @@ -27516,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{ @@ -27528,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{ @@ -27554,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, @@ -27581,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{ @@ -27621,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, @@ -27644,17 +23546,12 @@ /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, @@ -27669,9 +23566,7 @@ "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{ @@ -27713,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{ @@ -27748,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{ @@ -27760,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{ @@ -27776,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{ @@ -27795,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{ @@ -27812,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, @@ -27845,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{ @@ -27862,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{ @@ -27903,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, @@ -27936,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{ @@ -27967,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{ @@ -28000,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, @@ -28046,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, @@ -28062,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{ @@ -28083,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{ @@ -28108,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{ @@ -28125,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, @@ -28140,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{ @@ -28177,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{ @@ -28191,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{ @@ -28205,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, @@ -28229,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, @@ -28252,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, @@ -28277,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, @@ -28288,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, @@ -28307,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{ @@ -28325,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) = {" @@ -46500,7 +42277,7 @@ aaY jFy jFy axz -doc +tfd ivr axz jFy @@ -46660,12 +42437,12 @@ wlj axz axz rnz -doc +tfd uPo -doc -doc +tfd +tfd uPo -doc +tfd rnz jFy qrz @@ -46821,14 +42598,14 @@ qCn tKg axz axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF jqY @@ -46983,14 +42760,14 @@ qCn ssf axz axz -doc +tfd nCo kRK nCo kRK nCo kRK -doc +tfd aaY ilo jqY @@ -47145,14 +42922,14 @@ rCO ssf axz axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF gNF @@ -47307,14 +43084,14 @@ qCn jVx aaY aaY -doc +tfd nCo kRK nCo kRK nCo kRK -doc +tfd jFy jqY jqY @@ -47469,14 +43246,14 @@ qCn gPg xha axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF jqY @@ -47631,14 +43408,14 @@ xha aaX xha axz -doc +tfd jMZ gvz jMZ gvz jMZ gvz -doc +tfd axz kFJ jqY @@ -47793,13 +43570,13 @@ aaY xha xha vWt -doc -doc +tfd +tfd cRP dqW bMn cRP -doc +tfd sQt aaY axz @@ -47955,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 f61ed5ee3597..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, @@ -250,18 +240,14 @@ /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, @@ -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,9 +710,7 @@ /area/kutjevo/interior/complex/botany) "bdd" = ( /obj/structure/largecrate, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/lz_pad) "bde" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -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, @@ -1170,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{ @@ -1190,9 +1098,7 @@ /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, @@ -1235,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{ @@ -1263,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, @@ -1283,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, @@ -1301,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, @@ -1328,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{ @@ -1349,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, @@ -1377,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{ @@ -1400,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{ @@ -1451,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, @@ -1472,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, @@ -1486,9 +1372,7 @@ /turf/open/floor/kutjevo/multi_tiles, /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{ @@ -1497,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{ @@ -1557,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, @@ -1568,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, @@ -1608,9 +1480,7 @@ 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, @@ -1648,9 +1518,7 @@ /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{ @@ -1665,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{ @@ -1739,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, @@ -1749,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{ @@ -1766,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, @@ -1815,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{ @@ -1895,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{ @@ -1906,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, @@ -1963,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{ @@ -2000,9 +1846,7 @@ /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, @@ -2029,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{ @@ -2058,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, @@ -2091,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, @@ -2154,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{ @@ -2178,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, @@ -2241,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, @@ -2273,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{ @@ -2321,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, @@ -2360,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, @@ -2382,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{ @@ -2450,17 +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, @@ -2495,9 +2310,7 @@ /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{ @@ -2517,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{ @@ -2528,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, @@ -2538,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{ @@ -2562,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, @@ -2574,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, @@ -2620,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{ @@ -2640,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, @@ -2661,14 +2454,10 @@ /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 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/lz_pad) "dzd" = ( /obj/item/storage/briefcase, @@ -2692,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, @@ -2702,17 +2489,13 @@ /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, @@ -2722,9 +2505,7 @@ 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, @@ -2759,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, @@ -2780,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, @@ -2809,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{ @@ -2840,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{ @@ -2874,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{ @@ -2903,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{ @@ -2924,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, @@ -2945,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, @@ -2965,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, @@ -2991,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{ @@ -3024,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, @@ -3116,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, @@ -3131,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{ @@ -3153,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{ @@ -3168,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{ @@ -3180,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, @@ -3207,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{ @@ -3218,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{ @@ -3251,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, @@ -3298,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{ @@ -3311,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{ @@ -3343,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{ @@ -3379,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, @@ -3394,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, @@ -3409,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, @@ -3473,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, @@ -3490,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, @@ -3535,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, @@ -3569,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, @@ -3581,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, @@ -3650,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, @@ -3670,9 +3375,7 @@ /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "eFy" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/lz_pad) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -3705,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, @@ -3717,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, @@ -3733,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{ @@ -3778,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, @@ -3829,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, @@ -3851,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, @@ -3889,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, @@ -3909,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{ @@ -3925,9 +3606,7 @@ /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, @@ -3938,9 +3617,7 @@ /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, @@ -3953,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, @@ -4005,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, @@ -4031,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, @@ -4067,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, @@ -4100,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{ @@ -4132,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, @@ -4186,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, @@ -4215,9 +3874,7 @@ "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, @@ -4230,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{ @@ -4243,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{ @@ -4323,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, @@ -4335,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{ @@ -4348,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, @@ -4364,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, @@ -4374,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, @@ -4393,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, @@ -4430,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, @@ -4470,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{ @@ -4486,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, @@ -4524,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{ @@ -4557,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, @@ -4591,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{ @@ -4620,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{ @@ -4632,9 +4252,7 @@ /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, @@ -4642,9 +4260,7 @@ /turf/open/auto_turf/sand/layer1, /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, @@ -4668,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, @@ -4701,9 +4315,7 @@ "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{ @@ -4712,17 +4324,13 @@ /turf/open/auto_turf/sand/layer1, /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, @@ -4731,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, @@ -4762,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, @@ -4787,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, @@ -4816,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, @@ -4843,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, @@ -4886,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{ @@ -4914,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, @@ -4938,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, @@ -4952,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, @@ -4964,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{ @@ -4977,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{ @@ -4993,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{ @@ -5011,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{ @@ -5029,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, @@ -5041,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, @@ -5074,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, @@ -5123,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{ @@ -5145,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{ @@ -5179,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, @@ -5201,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, @@ -5216,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{ @@ -5274,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{ @@ -5343,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, @@ -5402,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{ @@ -5497,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, @@ -5516,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, @@ -5541,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, @@ -5565,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, @@ -5647,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, @@ -5713,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{ @@ -5805,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{ @@ -5826,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, @@ -5865,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{ @@ -5894,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, @@ -5908,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{ @@ -5952,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, @@ -5987,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, @@ -6030,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, @@ -6050,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, @@ -6136,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, @@ -6156,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, @@ -6199,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{ @@ -6220,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, @@ -6230,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, @@ -6262,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{ @@ -6282,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, @@ -6311,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{ @@ -6326,29 +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{ @@ -6386,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{ @@ -6396,9 +5872,7 @@ }, /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, @@ -6448,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{ @@ -6459,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, @@ -6477,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, @@ -6512,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, @@ -6538,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, @@ -6567,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, @@ -6654,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, @@ -6720,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, @@ -6816,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{ @@ -6854,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, @@ -6890,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, @@ -6900,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, @@ -6936,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{ @@ -7050,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, @@ -7073,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{ @@ -7094,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, @@ -7110,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, @@ -7144,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{ @@ -7185,9 +6609,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) "jGF" = ( /turf/open/floor/almayer/research/containment/floor2, @@ -7231,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, @@ -7257,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, @@ -7267,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, @@ -7323,9 +6737,7 @@ /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{ @@ -7344,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{ @@ -7361,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{ @@ -7374,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, @@ -7389,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{ @@ -7409,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{ @@ -7425,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{ @@ -7470,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, @@ -7485,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{ @@ -7501,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, @@ -7511,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, @@ -7521,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, @@ -7532,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{ @@ -7548,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, @@ -7560,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, @@ -7622,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, @@ -7681,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, @@ -7709,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, @@ -7776,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, @@ -7786,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, @@ -7811,9 +7185,7 @@ 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, @@ -7887,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, @@ -7901,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{ @@ -7948,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{ @@ -7959,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, @@ -7969,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{ @@ -8035,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{ @@ -8051,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{ @@ -8114,17 +7468,13 @@ /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, @@ -8132,9 +7482,7 @@ "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, @@ -8163,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{ @@ -8201,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, @@ -8229,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, @@ -8269,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{ @@ -8283,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, @@ -8317,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, @@ -8331,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, @@ -8365,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, @@ -8386,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{ @@ -8408,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, @@ -8424,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, @@ -8437,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, @@ -8487,17 +7809,13 @@ /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, @@ -8562,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, @@ -8582,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, @@ -8616,23 +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, @@ -8660,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{ @@ -8770,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, @@ -8803,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, @@ -8816,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, @@ -8846,9 +8144,7 @@ /turf/open/auto_turf/sand/layer0, /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, @@ -8856,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{ @@ -8882,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, @@ -8893,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{ @@ -8909,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, @@ -8962,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, @@ -8987,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{ @@ -9001,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{ @@ -9025,24 +8305,18 @@ /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 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/lz_pad) "mkJ" = ( /obj/structure/machinery/light, @@ -9060,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{ @@ -9097,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, @@ -9108,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, @@ -9128,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, @@ -9182,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, @@ -9210,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{ @@ -9231,9 +8489,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) "mAb" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/lz_pad) "mAD" = ( /obj/structure/barricade/wooden{ @@ -9269,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, @@ -9287,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{ @@ -9336,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, @@ -9386,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{ @@ -9426,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{ @@ -9462,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{ @@ -9509,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, @@ -9524,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, @@ -9536,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, @@ -9582,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{ @@ -9601,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, @@ -9624,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{ @@ -9639,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, @@ -9654,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, @@ -9675,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{ @@ -9712,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{ @@ -9726,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, @@ -9739,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{ @@ -9750,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{ @@ -9806,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, @@ -9825,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{ @@ -9843,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{ @@ -9856,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, @@ -9867,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, @@ -9911,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{ @@ -9993,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{ @@ -10029,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, @@ -10085,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{ @@ -10153,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, @@ -10192,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, @@ -10221,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{ @@ -10267,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, @@ -10315,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, @@ -10336,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, @@ -10348,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, @@ -10401,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{ @@ -10412,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{ @@ -10458,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, @@ -10498,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{ @@ -10514,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, @@ -10561,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{ @@ -10667,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{ @@ -10695,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, @@ -10798,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, @@ -10809,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{ @@ -10874,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, @@ -10899,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{ @@ -10926,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, @@ -10974,9 +10112,7 @@ /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, @@ -10997,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{ @@ -11019,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, @@ -11045,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, @@ -11063,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, @@ -11125,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{ @@ -11169,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, @@ -11199,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, @@ -11212,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, @@ -11228,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{ @@ -11273,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, @@ -11310,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, @@ -11343,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{ @@ -11370,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, @@ -11382,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, @@ -11416,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, @@ -11433,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, @@ -11445,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, @@ -11527,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{ @@ -11560,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{ @@ -11575,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, @@ -11587,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, @@ -11611,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, @@ -11623,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, @@ -11642,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{ @@ -11682,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{ @@ -11696,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, @@ -11728,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{ @@ -11784,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, @@ -11797,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, @@ -11840,9 +10898,7 @@ "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{ @@ -11884,9 +10940,7 @@ /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, @@ -11954,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, @@ -11985,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{ @@ -12017,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, @@ -12031,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, @@ -12086,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 - }, +/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, @@ -12154,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, @@ -12173,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{ @@ -12192,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{ @@ -12212,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, @@ -12224,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, @@ -12257,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{ @@ -12285,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{ @@ -12323,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 - }, +/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{ @@ -12366,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, @@ -12382,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{ @@ -12421,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, @@ -12433,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, @@ -12469,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{ @@ -12489,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, @@ -12507,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, @@ -12529,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{ @@ -12567,9 +11558,7 @@ /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{ @@ -12596,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{ @@ -12668,9 +11653,7 @@ /area/kutjevo/exterior/runoff_dunes) "rfz" = ( /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/lz_pad) "rfE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -12716,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, @@ -12758,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, @@ -12791,9 +11770,7 @@ /turf/open/floor/kutjevo/tan, /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, @@ -12814,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, @@ -12876,14 +11847,10 @@ 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, @@ -12900,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, @@ -12970,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, @@ -13032,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, @@ -13053,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, @@ -13094,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{ @@ -13112,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, @@ -13162,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, @@ -13183,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, @@ -13203,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, @@ -13226,9 +12171,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "rSU" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/exterior/lz_pad) "rTi" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -13241,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{ @@ -13300,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{ @@ -13313,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, @@ -13323,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{ @@ -13350,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, @@ -13361,9 +12294,7 @@ /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, @@ -13388,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, @@ -13436,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{ @@ -13454,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, @@ -13497,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{ @@ -13561,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{ @@ -13599,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, @@ -13616,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, @@ -13648,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{ @@ -13679,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{ @@ -13720,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{ @@ -13757,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{ @@ -13770,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, @@ -13788,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, @@ -13806,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, @@ -13820,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{ @@ -13860,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{ @@ -13926,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, @@ -13941,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{ @@ -14009,18 +12894,14 @@ "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, @@ -14086,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, @@ -14103,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{ @@ -14154,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, @@ -14245,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{ @@ -14274,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, @@ -14289,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 - }, +/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{ @@ -14345,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{ @@ -14391,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, @@ -14413,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, @@ -14496,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, @@ -14526,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{ @@ -14549,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, @@ -14569,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{ @@ -14593,9 +13440,7 @@ /turf/open/floor/kutjevo/multi_tiles, /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, @@ -14635,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, @@ -14699,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{ @@ -14751,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, @@ -14795,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, @@ -14814,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{ @@ -14846,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, @@ -14857,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{ @@ -14890,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, @@ -14995,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, @@ -15008,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{ @@ -15034,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, @@ -15044,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, @@ -15064,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{ @@ -15103,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{ @@ -15135,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{ @@ -15160,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, @@ -15251,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{ @@ -15267,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, @@ -15341,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{ @@ -15377,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, @@ -15407,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{ @@ -15515,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, @@ -15536,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{ @@ -15555,9 +14339,7 @@ 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{ @@ -15571,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, @@ -15601,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{ @@ -15640,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{ @@ -15660,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{ @@ -15680,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{ @@ -15746,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{ @@ -15757,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{ @@ -15790,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, @@ -15802,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{ @@ -15826,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, @@ -15837,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, @@ -15849,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{ @@ -15901,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, @@ -15930,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, @@ -15977,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, @@ -15989,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{ @@ -16007,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{ @@ -16052,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, @@ -16096,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, @@ -16114,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, @@ -16213,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{ @@ -16285,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, @@ -16300,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{ @@ -16321,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, @@ -16360,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{ @@ -16449,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{ @@ -16509,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, @@ -16541,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, @@ -16565,9 +15282,7 @@ /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{ @@ -16576,23 +15291,17 @@ /turf/open/floor/kutjevo/multi_tiles, /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, @@ -16608,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{ @@ -16695,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, @@ -16777,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{ @@ -16799,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{ @@ -16813,10 +15514,7 @@ "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, @@ -16869,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, @@ -16901,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{ @@ -16976,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, @@ -17041,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, @@ -17056,9 +15746,7 @@ 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, @@ -17069,9 +15757,7 @@ 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, @@ -17109,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{ @@ -17124,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, @@ -17172,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, @@ -17198,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{ @@ -17210,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{ @@ -17291,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{ @@ -17354,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, @@ -17390,9 +16054,7 @@ /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{ @@ -17490,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{ @@ -17515,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, @@ -17568,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, @@ -17588,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, @@ -17621,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{ @@ -17679,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{ @@ -17712,24 +16360,18 @@ /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 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_pad) "yfo" = ( /turf/open/floor/kutjevo/colors/orange, @@ -17784,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, @@ -17804,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, @@ -17829,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, @@ -17858,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{ 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 93436ca83de0..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,9 +283,7 @@ /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) "aiw" = ( /obj/structure/desertdam/decals/road_edge{ @@ -354,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{ @@ -370,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, @@ -384,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{ @@ -396,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, @@ -409,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, @@ -427,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, @@ -446,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, @@ -457,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{ @@ -485,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{ @@ -504,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, @@ -522,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, @@ -533,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{ @@ -552,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{ @@ -568,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{ @@ -604,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{ @@ -621,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{ @@ -641,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{ @@ -651,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, @@ -662,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, @@ -706,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{ @@ -726,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{ @@ -737,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, @@ -758,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{ @@ -771,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{ @@ -797,10 +674,7 @@ /turf/open/floor/plating, /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, @@ -811,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, @@ -843,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{ @@ -853,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, @@ -871,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{ @@ -915,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, @@ -941,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, @@ -951,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, @@ -962,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, @@ -988,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{ @@ -1007,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{ @@ -1025,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{ @@ -1048,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{ @@ -1066,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, @@ -1086,17 +911,13 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/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, @@ -1108,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, @@ -1126,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, @@ -1141,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, @@ -1174,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{ @@ -1203,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{ @@ -1221,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{ @@ -1237,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, @@ -1248,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{ @@ -1281,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{ @@ -1324,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, @@ -1341,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{ @@ -1352,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{ @@ -1372,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, @@ -1393,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{ @@ -1415,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, @@ -1434,33 +1191,23 @@ /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" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel/far) "aQU" = ( /obj/structure/machinery/computer/cameras{ @@ -1468,22 +1215,15 @@ 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{ @@ -1504,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, @@ -1519,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, @@ -1533,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{ @@ -1564,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, @@ -1576,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, @@ -1598,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, @@ -1615,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{ @@ -1638,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, @@ -1654,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, @@ -1667,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, @@ -1682,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, @@ -1697,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, @@ -1710,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, @@ -1781,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{ @@ -1817,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{ @@ -1850,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{ @@ -1866,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, @@ -1894,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, @@ -1944,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, @@ -1955,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{ @@ -1967,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, @@ -1993,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, @@ -2009,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, @@ -2038,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{ @@ -2061,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{ @@ -2076,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{ @@ -2102,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{ @@ -2124,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, @@ -2149,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, @@ -2184,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, @@ -2246,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{ @@ -2300,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{ @@ -2343,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, @@ -2360,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, @@ -2372,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{ @@ -2392,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, @@ -2404,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, @@ -2419,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{ @@ -2429,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, @@ -2460,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{ @@ -2483,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, @@ -2496,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{ @@ -2518,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, @@ -2539,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, @@ -2549,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{ @@ -2575,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{ @@ -2600,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, @@ -2619,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{ @@ -2651,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, @@ -2693,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, @@ -2715,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, @@ -2737,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, @@ -2754,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{ @@ -2764,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{ @@ -2796,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{ @@ -2809,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{ @@ -2820,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{ @@ -2851,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, @@ -2861,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{ @@ -2895,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{ @@ -2905,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{ @@ -2939,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{ @@ -2953,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, @@ -2967,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, @@ -2992,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, @@ -3028,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, @@ -3044,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, @@ -3072,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{ @@ -3113,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, @@ -3140,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, @@ -3153,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{ @@ -3170,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{ @@ -3209,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, @@ -3219,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, @@ -3232,9 +2660,7 @@ 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{ @@ -3246,10 +2672,7 @@ /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{ @@ -3260,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{ @@ -3307,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{ @@ -3351,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{ @@ -3380,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, @@ -3423,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,10 +2845,7 @@ /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{ @@ -3466,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{ @@ -3501,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{ @@ -3521,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{ @@ -3564,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{ @@ -3587,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, @@ -3604,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, @@ -3617,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{ @@ -3643,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{ @@ -3663,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, @@ -3675,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, @@ -3706,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, @@ -3736,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, @@ -3772,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, @@ -3831,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, @@ -3848,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, @@ -3864,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{ @@ -3888,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, @@ -3902,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{ @@ -3927,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{ @@ -3943,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{ @@ -3955,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, @@ -3992,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, @@ -4006,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, @@ -4018,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, @@ -4048,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{ @@ -4080,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{ @@ -4110,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{ @@ -4133,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, @@ -4144,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{ @@ -4161,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, @@ -4191,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{ @@ -4204,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{ @@ -4246,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{ @@ -4271,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, @@ -4292,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, @@ -4313,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{ @@ -4331,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{ @@ -4352,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{ @@ -4403,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{ @@ -4428,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{ @@ -4446,10 +3687,7 @@ "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) "cpX" = ( /obj/item/toy/beach_ball/holoball, @@ -4464,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{ @@ -4488,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{ @@ -4510,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, @@ -4560,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, @@ -4604,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{ @@ -4620,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, @@ -4639,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{ @@ -4651,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{ @@ -4663,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{ @@ -4688,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, @@ -4712,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, @@ -4746,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{ @@ -4761,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, @@ -4771,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{ @@ -4823,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{ @@ -4870,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, @@ -4904,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{ @@ -4919,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{ @@ -4935,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, @@ -4998,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, @@ -5016,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{ @@ -5037,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, @@ -5077,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, @@ -5087,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{ @@ -5113,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{ @@ -5132,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{ @@ -5149,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, @@ -5176,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, @@ -5196,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, @@ -5219,17 +4300,11 @@ 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) "cIe" = ( /obj/structure/surface/rack, @@ -5249,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{ @@ -5277,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, @@ -5321,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{ @@ -5345,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{ @@ -5368,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, @@ -5394,17 +4445,13 @@ /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, @@ -5412,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, @@ -5476,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{ @@ -5496,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{ @@ -5518,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, @@ -5539,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{ @@ -5550,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, @@ -5562,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{ @@ -5597,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{ @@ -5616,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, @@ -5644,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, @@ -5658,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, @@ -5698,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{ @@ -5716,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, @@ -5743,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{ @@ -5758,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, @@ -5836,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, @@ -5871,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, @@ -5892,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, @@ -5907,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, @@ -5927,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, @@ -5940,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{ @@ -5955,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, @@ -5984,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, @@ -6001,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, @@ -6014,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{ @@ -6058,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{ @@ -6114,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, @@ -6132,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, @@ -6143,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, @@ -6164,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, @@ -6180,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, @@ -6191,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, @@ -6218,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{ @@ -6235,10 +5125,7 @@ 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/structure/machinery/landinglight/ds1/delayone, @@ -6250,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, @@ -6286,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, @@ -6341,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, @@ -6353,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, @@ -6366,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, @@ -6378,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{ @@ -6406,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, @@ -6433,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, @@ -6444,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{ @@ -6466,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{ @@ -6502,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{ @@ -6513,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{ @@ -6538,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{ @@ -6565,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{ @@ -6594,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{ @@ -6612,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{ @@ -6675,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, @@ -6686,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, @@ -6709,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, @@ -6730,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{ @@ -6778,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, @@ -6793,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{ @@ -6814,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{ @@ -6851,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, @@ -6873,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{ @@ -6892,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{ @@ -6909,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, @@ -6919,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, @@ -6932,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{ @@ -6957,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{ @@ -6973,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, @@ -6991,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, @@ -7027,9 +5768,7 @@ /turf/open/floor/plating, /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, @@ -7044,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{ @@ -7059,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{ @@ -7081,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{ @@ -7092,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{ @@ -7124,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{ @@ -7141,9 +5865,7 @@ /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{ @@ -7168,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, @@ -7182,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{ @@ -7200,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, @@ -7214,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{ @@ -7239,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, @@ -7282,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, @@ -7308,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, @@ -7325,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{ @@ -7355,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, @@ -7385,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, @@ -7414,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{ @@ -7436,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{ @@ -7463,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, @@ -7540,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{ @@ -7575,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{ @@ -7597,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{ @@ -7616,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, @@ -7649,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{ @@ -7678,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{ @@ -7710,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, @@ -7743,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, @@ -7778,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, @@ -7832,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{ @@ -7858,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, @@ -7889,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{ @@ -7905,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{ @@ -7949,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, @@ -7963,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, @@ -7976,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, @@ -8009,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{ @@ -8021,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{ @@ -8035,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, @@ -8060,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, @@ -8099,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{ @@ -8119,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{ @@ -8147,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{ @@ -8160,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{ @@ -8171,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{ @@ -8186,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, @@ -8202,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, @@ -8222,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, @@ -8247,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, @@ -8304,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, @@ -8366,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{ @@ -8377,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{ @@ -8388,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, @@ -8415,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{ @@ -8440,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, @@ -8462,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, @@ -8482,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, @@ -8527,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, @@ -8546,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, @@ -8570,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{ @@ -8581,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{ @@ -8604,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, @@ -8614,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, @@ -8634,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, @@ -8650,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, @@ -8689,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{ @@ -8701,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, @@ -8712,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, @@ -8726,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, @@ -8746,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, @@ -8774,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, @@ -8789,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, @@ -8848,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, @@ -8869,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{ @@ -8889,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{ @@ -8905,10 +7275,7 @@ /turf/open/floor/plating, /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, @@ -8917,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{ @@ -8958,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, @@ -8970,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{ @@ -8982,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{ @@ -9006,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, @@ -9067,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, @@ -9084,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{ @@ -9102,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{ @@ -9123,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{ @@ -9143,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{ @@ -9162,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, @@ -9185,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, @@ -9195,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{ @@ -9210,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{ @@ -9228,26 +7544,18 @@ pixel_y = -6 }, /obj/effect/decal/cleanable/dirt, -/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{ @@ -9272,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{ @@ -9322,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, @@ -9340,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{ @@ -9379,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{ @@ -9406,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{ @@ -9433,16 +7707,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) "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, @@ -9450,15 +7720,11 @@ /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{ @@ -9469,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, @@ -9485,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{ @@ -9503,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{ @@ -9536,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, @@ -9566,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, @@ -9599,25 +7846,16 @@ /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, @@ -9627,17 +7865,12 @@ /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{ @@ -9649,42 +7882,28 @@ 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, @@ -9703,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, @@ -9721,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, @@ -9743,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{ @@ -9766,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{ @@ -9798,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{ @@ -9816,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{ @@ -9840,10 +8035,7 @@ /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{ @@ -9865,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, @@ -9904,47 +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, -/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{ @@ -9980,9 +8151,7 @@ /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{ @@ -9996,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{ @@ -10020,15 +8187,11 @@ /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/structure/machinery/landinglight/ds1, @@ -10046,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, @@ -10082,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, @@ -10110,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{ @@ -10131,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, @@ -10149,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, @@ -10167,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, @@ -10178,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, @@ -10188,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, @@ -10237,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{ @@ -10270,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, @@ -10287,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{ @@ -10298,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{ @@ -10318,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{ @@ -10337,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, @@ -10356,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, @@ -10372,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, @@ -10403,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, @@ -10418,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, @@ -10502,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, @@ -10520,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{ @@ -10538,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, @@ -10549,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, @@ -10577,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{ @@ -10588,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{ @@ -10598,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{ @@ -10608,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{ @@ -10635,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, @@ -10656,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{ @@ -10668,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{ @@ -10699,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{ @@ -10712,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{ @@ -10730,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, @@ -10743,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{ @@ -10759,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{ @@ -10777,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{ @@ -10817,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{ @@ -10839,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{ @@ -10860,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, @@ -10898,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, @@ -10908,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{ @@ -10928,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, @@ -10949,27 +8949,21 @@ /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, @@ -10981,9 +8975,7 @@ /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) "eTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10995,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{ @@ -11024,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{ @@ -11044,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{ @@ -11071,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, @@ -11101,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, @@ -11124,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, @@ -11156,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, @@ -11209,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{ @@ -11231,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{ @@ -11249,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{ @@ -11303,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, @@ -11313,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{ @@ -11326,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{ @@ -11339,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{ @@ -11357,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, @@ -11368,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{ @@ -11423,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{ @@ -11448,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, @@ -11475,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, @@ -11485,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, @@ -11538,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, @@ -11574,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{ @@ -11629,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, @@ -11662,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{ @@ -11681,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{ @@ -11710,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, @@ -11729,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, @@ -11766,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, @@ -11789,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, @@ -11800,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, @@ -11825,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, @@ -11842,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{ @@ -11858,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{ @@ -11889,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, @@ -11915,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{ @@ -11927,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, @@ -11939,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, @@ -11962,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{ @@ -11986,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{ @@ -12014,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{ @@ -12031,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{ @@ -12081,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, @@ -12092,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{ @@ -12134,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, @@ -12162,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{ @@ -12189,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{ @@ -12212,9 +10004,7 @@ /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{ @@ -12232,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{ @@ -12248,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, @@ -12258,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, @@ -12271,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{ @@ -12305,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{ @@ -12324,22 +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) "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, @@ -12364,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{ @@ -12387,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{ @@ -12401,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, @@ -12412,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{ @@ -12434,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{ @@ -12460,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{ @@ -12475,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{ @@ -12500,36 +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/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{ @@ -12537,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{ @@ -12552,15 +10284,11 @@ /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{ @@ -12572,14 +10300,10 @@ /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, @@ -12588,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{ @@ -12632,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, @@ -12645,23 +10359,15 @@ /obj/item/tool/pen/blue/clicky, /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/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, @@ -12670,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, @@ -12690,17 +10391,11 @@ pixel_x = 5; registered_name = "John Forklift" }, -/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{ @@ -12711,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, @@ -12722,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{ @@ -12734,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, @@ -12767,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, @@ -12798,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, @@ -12810,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, @@ -12839,29 +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) "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, @@ -12869,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{ @@ -12881,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{ @@ -12908,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{ @@ -12946,22 +10591,15 @@ /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{ @@ -12975,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{ @@ -12986,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{ @@ -13013,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{ @@ -13023,9 +10654,7 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) "fLK" = ( /obj/structure/cryofeed, @@ -13044,10 +10673,7 @@ /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, @@ -13059,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{ @@ -13071,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{ @@ -13084,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, @@ -13129,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, @@ -13156,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{ @@ -13178,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{ @@ -13198,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{ @@ -13214,9 +10815,7 @@ "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, @@ -13233,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{ @@ -13252,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, @@ -13291,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{ @@ -13317,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, @@ -13329,23 +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/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, @@ -13369,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, @@ -13380,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{ @@ -13397,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{ @@ -13433,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{ @@ -13452,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{ @@ -13483,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, @@ -13493,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, @@ -13510,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{ @@ -13531,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{ @@ -13543,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{ @@ -13580,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{ @@ -13599,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, @@ -13610,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, @@ -13623,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{ @@ -13638,21 +11162,14 @@ /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, @@ -13664,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{ @@ -13694,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{ @@ -13715,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{ @@ -13741,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, @@ -13769,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{ @@ -13812,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{ @@ -13826,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{ @@ -13846,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, @@ -13873,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, @@ -13886,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{ @@ -13899,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, @@ -13909,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, @@ -13929,23 +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, -/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{ @@ -13958,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{ @@ -13977,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, @@ -13996,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{ @@ -14025,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{ @@ -14051,9 +11497,7 @@ 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, @@ -14063,9 +11507,7 @@ "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{ @@ -14079,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, @@ -14090,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, @@ -14120,16 +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" = ( -/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{ @@ -14138,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, @@ -14177,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{ @@ -14196,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, @@ -14213,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, @@ -14223,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, @@ -14233,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{ @@ -14259,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{ @@ -14302,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{ @@ -14338,9 +11727,7 @@ /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{ @@ -14349,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, @@ -14373,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{ @@ -14395,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{ @@ -14407,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{ @@ -14419,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, @@ -14466,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{ @@ -14512,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{ @@ -14530,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, @@ -14572,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, @@ -14598,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{ @@ -14658,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{ @@ -14684,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, @@ -14704,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{ @@ -14730,15 +12061,11 @@ 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, @@ -14751,17 +12078,13 @@ 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{ @@ -14773,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{ @@ -14795,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{ @@ -14816,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, @@ -14834,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, @@ -14847,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, @@ -14861,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, @@ -14882,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, @@ -14903,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, @@ -14914,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{ @@ -14945,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, @@ -14963,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{ @@ -14983,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{ @@ -15027,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{ @@ -15049,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{ @@ -15072,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{ @@ -15085,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, @@ -15097,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, @@ -15118,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{ @@ -15136,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, @@ -15150,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{ @@ -15175,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, @@ -15215,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, @@ -15242,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{ @@ -15264,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{ @@ -15292,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{ @@ -15395,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{ @@ -15430,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, @@ -15450,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, @@ -15468,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, @@ -15502,23 +12696,17 @@ /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, @@ -15526,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, @@ -15543,18 +12727,14 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/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{ @@ -15575,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{ @@ -15599,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{ @@ -15611,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{ @@ -15632,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{ @@ -15693,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{ @@ -15711,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, @@ -15728,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, @@ -15744,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{ @@ -15782,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{ @@ -15811,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{ @@ -15822,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{ @@ -15839,10 +12976,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/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{ @@ -15863,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, @@ -15887,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, @@ -15929,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, @@ -15953,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, @@ -15976,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, @@ -15994,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, @@ -16047,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{ @@ -16062,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, @@ -16089,39 +13183,26 @@ "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, @@ -16132,9 +13213,7 @@ 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{ @@ -16157,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, @@ -16168,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{ @@ -16183,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{ @@ -16215,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, @@ -16232,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, @@ -16257,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{ @@ -16268,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{ @@ -16283,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, @@ -16345,10 +13382,7 @@ 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/structure/machinery/landinglight/ds1/delaytwo, @@ -16357,24 +13391,17 @@ "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, @@ -16385,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, @@ -16398,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{ @@ -16408,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{ @@ -16433,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, @@ -16452,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, @@ -16481,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{ @@ -16493,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{ @@ -16513,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{ @@ -16547,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, @@ -16560,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, @@ -16582,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, @@ -16621,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{ @@ -16644,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, @@ -16675,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{ @@ -16693,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, @@ -16716,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, @@ -16727,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, @@ -16749,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, @@ -16769,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{ @@ -16808,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, @@ -16830,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{ @@ -16840,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{ @@ -16870,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{ @@ -16906,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{ @@ -16935,10 +13849,7 @@ /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{ @@ -16947,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, @@ -16993,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, @@ -17022,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, @@ -17034,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, @@ -17044,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, @@ -17061,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, @@ -17092,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, @@ -17116,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{ @@ -17135,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, @@ -17145,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, @@ -17168,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{ @@ -17188,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{ @@ -17217,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{ @@ -17256,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, @@ -17275,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, @@ -17293,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, @@ -17357,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, @@ -17374,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, @@ -17384,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{ @@ -17394,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{ @@ -17422,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{ @@ -17439,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{ @@ -17471,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, @@ -17503,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, @@ -17524,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, @@ -17551,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{ @@ -17566,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{ @@ -17612,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{ @@ -17634,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{ @@ -17650,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, @@ -17676,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{ @@ -17691,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, @@ -17709,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{ @@ -17747,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, @@ -17762,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, @@ -17776,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{ @@ -17786,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{ @@ -17805,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{ @@ -17834,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{ @@ -17849,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{ @@ -17872,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, @@ -17902,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, @@ -17958,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, @@ -17979,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, @@ -18020,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, @@ -18045,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{ @@ -18075,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, @@ -18091,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{ @@ -18110,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{ @@ -18143,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{ @@ -18189,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{ @@ -18230,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, @@ -18242,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{ @@ -18256,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, @@ -18268,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{ @@ -18298,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{ @@ -18332,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, @@ -18368,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{ @@ -18414,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{ @@ -18430,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, @@ -18451,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, @@ -18466,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{ @@ -18484,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{ @@ -18498,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{ @@ -18519,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{ @@ -18556,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{ @@ -18567,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{ @@ -18583,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{ @@ -18648,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, @@ -18695,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{ @@ -18706,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{ @@ -18719,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{ @@ -18748,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{ @@ -18776,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{ @@ -18801,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{ @@ -18840,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{ @@ -18863,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{ @@ -18874,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, @@ -18906,9 +15428,7 @@ "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, @@ -18923,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, @@ -18959,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{ @@ -18981,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, @@ -19005,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{ @@ -19017,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{ @@ -19068,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, @@ -19092,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, @@ -19134,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, @@ -19154,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, @@ -19191,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, @@ -19208,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{ @@ -19219,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, @@ -19230,9 +15689,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) "ica" = ( /obj/effect/decal/cleanable/dirt, @@ -19246,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{ @@ -19289,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{ @@ -19319,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, @@ -19348,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, @@ -19365,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{ @@ -19381,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{ @@ -19418,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, @@ -19464,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{ @@ -19489,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, @@ -19516,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, @@ -19554,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, @@ -19576,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{ @@ -19591,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{ @@ -19618,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{ @@ -19629,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{ @@ -19669,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, @@ -19693,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, @@ -19715,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, @@ -19725,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{ @@ -19746,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{ @@ -19789,10 +16157,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/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, @@ -19807,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, @@ -19825,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{ @@ -19874,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{ @@ -19904,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, @@ -19926,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{ @@ -19950,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, @@ -19969,9 +16308,7 @@ 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{ @@ -19988,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, @@ -20009,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{ @@ -20030,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, @@ -20081,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{ @@ -20105,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{ @@ -20127,33 +16435,22 @@ "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, @@ -20167,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{ @@ -20198,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, @@ -20232,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, @@ -20249,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, @@ -20289,87 +16573,62 @@ 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{ @@ -20378,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, @@ -20398,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, @@ -20409,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, @@ -20423,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, @@ -20449,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, @@ -20462,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, @@ -20479,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{ @@ -20492,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{ @@ -20535,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, @@ -20563,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{ @@ -20581,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{ @@ -20601,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, @@ -20652,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, @@ -20680,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{ @@ -20698,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{ @@ -20714,10 +16907,7 @@ 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{ @@ -20727,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, @@ -20747,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, @@ -20770,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{ @@ -20781,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, @@ -20809,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{ @@ -20825,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, @@ -20850,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{ @@ -20867,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, @@ -20896,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, @@ -20923,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, @@ -20940,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{ @@ -20962,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, @@ -20972,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{ @@ -21018,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{ @@ -21035,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{ @@ -21066,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{ @@ -21091,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{ @@ -21102,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{ @@ -21114,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{ @@ -21160,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{ @@ -21178,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, @@ -21198,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{ @@ -21242,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{ @@ -21258,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, @@ -21287,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, @@ -21319,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{ @@ -21337,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{ @@ -21381,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{ @@ -21405,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{ @@ -21433,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, @@ -21452,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{ @@ -21480,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, @@ -21498,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, @@ -21535,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{ @@ -21571,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{ @@ -21608,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{ @@ -21627,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, @@ -21640,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{ @@ -21657,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{ @@ -21675,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, @@ -21691,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, @@ -21712,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{ @@ -21738,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, @@ -21774,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{ @@ -21793,15 +17790,11 @@ 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, @@ -21812,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{ @@ -21828,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{ @@ -21848,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, @@ -21884,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, @@ -21912,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{ @@ -21982,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{ @@ -22019,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{ @@ -22032,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{ @@ -22044,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{ @@ -22081,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{ @@ -22111,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, @@ -22128,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{ @@ -22143,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{ @@ -22171,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{ @@ -22204,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{ @@ -22214,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, @@ -22245,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, @@ -22259,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, @@ -22294,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{ @@ -22322,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, @@ -22342,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{ @@ -22361,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{ @@ -22376,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, @@ -22397,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, @@ -22420,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{ @@ -22441,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, @@ -22456,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{ @@ -22507,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, @@ -22520,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{ @@ -22555,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{ @@ -22582,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{ @@ -22596,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{ @@ -22613,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{ @@ -22634,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{ @@ -22651,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, @@ -22672,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{ @@ -22687,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{ @@ -22732,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{ @@ -22756,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{ @@ -22772,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, @@ -22784,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{ @@ -22796,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, @@ -22811,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, @@ -22824,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, @@ -22837,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{ @@ -22847,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{ @@ -22872,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, @@ -22883,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, @@ -22897,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, @@ -22930,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{ @@ -22946,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{ @@ -22975,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, @@ -23030,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, @@ -23058,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{ @@ -23089,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, @@ -23102,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, @@ -23134,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{ @@ -23148,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{ @@ -23166,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{ @@ -23194,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, @@ -23210,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, @@ -23297,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{ @@ -23316,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{ @@ -23354,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{ @@ -23376,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{ @@ -23400,25 +19126,19 @@ /area/lv522/outdoors/nw_rockies) "jCh" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/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, @@ -23426,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{ @@ -23444,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{ @@ -23464,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{ @@ -23476,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{ @@ -23513,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, @@ -23525,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, @@ -23550,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{ @@ -23575,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, @@ -23599,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, @@ -23645,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{ @@ -23689,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, @@ -23700,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{ @@ -23714,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{ @@ -23738,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{ @@ -23753,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{ @@ -23778,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, @@ -23803,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, @@ -23832,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{ @@ -23858,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{ @@ -23899,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{ @@ -23937,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{ @@ -23981,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, @@ -24000,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{ @@ -24012,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, @@ -24026,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, @@ -24039,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{ @@ -24061,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{ @@ -24097,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, @@ -24131,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{ @@ -24141,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, @@ -24159,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, @@ -24184,10 +19785,7 @@ "jQC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/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, @@ -24203,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, @@ -24219,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{ @@ -24254,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{ @@ -24266,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{ @@ -24304,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{ @@ -24321,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, @@ -24342,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{ @@ -24357,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, @@ -24373,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, @@ -24411,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{ @@ -24423,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{ @@ -24440,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{ @@ -24466,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, @@ -24491,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{ @@ -24560,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, @@ -24573,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{ @@ -24598,15 +20122,11 @@ /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{ @@ -24618,10 +20138,7 @@ "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, @@ -24632,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{ @@ -24645,14 +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" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "jZE" = ( /obj/structure/platform_decoration{ @@ -24665,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{ @@ -24676,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{ @@ -24705,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{ @@ -24725,17 +20223,11 @@ "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, @@ -24750,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, @@ -24774,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{ @@ -24788,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{ @@ -24799,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, @@ -24825,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{ @@ -24839,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{ @@ -24850,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, @@ -24883,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, @@ -24893,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{ @@ -24916,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, @@ -24942,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{ @@ -24956,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, @@ -24988,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{ @@ -25008,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{ @@ -25025,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{ @@ -25035,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{ @@ -25054,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{ @@ -25091,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, @@ -25102,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{ @@ -25115,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, @@ -25196,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, @@ -25206,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{ @@ -25220,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{ @@ -25232,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{ @@ -25243,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{ @@ -25255,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{ @@ -25283,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, @@ -25300,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, @@ -25332,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{ @@ -25380,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{ @@ -25429,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, @@ -25457,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, @@ -25475,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{ @@ -25488,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{ @@ -25502,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{ @@ -25534,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, @@ -25570,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{ @@ -25603,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{ @@ -25632,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, @@ -25657,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{ @@ -25676,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{ @@ -25706,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, @@ -25729,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{ @@ -25757,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{ @@ -25777,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{ @@ -25797,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, @@ -25809,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, @@ -25826,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{ @@ -25844,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{ @@ -25877,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, @@ -25906,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, @@ -25931,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, @@ -25960,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, @@ -25978,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, @@ -25991,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, @@ -26021,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, @@ -26052,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, @@ -26075,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{ @@ -26110,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{ @@ -26136,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{ @@ -26198,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, @@ -26217,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, @@ -26230,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, @@ -26261,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, @@ -26299,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{ @@ -26313,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, @@ -26326,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{ @@ -26337,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{ @@ -26350,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, @@ -26372,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, @@ -26393,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{ @@ -26442,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, @@ -26460,30 +21648,22 @@ /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, @@ -26505,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{ @@ -26547,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, @@ -26560,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{ @@ -26589,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, @@ -26602,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, @@ -26613,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, @@ -26627,9 +21785,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/security) "kHW" = ( /obj/structure/stairs/perspective{ @@ -26644,9 +21800,7 @@ /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, @@ -26660,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{ @@ -26684,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{ @@ -26701,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{ @@ -26719,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, @@ -26733,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, @@ -26744,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, @@ -26769,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{ @@ -26783,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{ @@ -26836,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{ @@ -26877,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, @@ -26888,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{ @@ -26904,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{ @@ -26929,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{ @@ -26945,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{ @@ -26967,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{ @@ -26979,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{ @@ -27003,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{ @@ -27024,9 +22107,7 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/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{ @@ -27040,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{ @@ -27080,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{ @@ -27104,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, @@ -27134,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, @@ -27160,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, @@ -27188,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{ @@ -27206,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{ @@ -27255,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{ @@ -27274,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{ @@ -27285,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{ @@ -27303,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, @@ -27314,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, @@ -27342,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, @@ -27353,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{ @@ -27376,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, @@ -27411,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, @@ -27430,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{ @@ -27453,33 +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) "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{ @@ -27487,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, @@ -27503,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{ @@ -27516,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, @@ -27528,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{ @@ -27540,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, @@ -27558,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{ @@ -27576,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{ @@ -27628,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{ @@ -27683,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{ @@ -27716,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, @@ -27730,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, @@ -27784,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{ @@ -27821,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, @@ -27836,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, @@ -27874,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{ @@ -27885,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{ @@ -27925,39 +22849,27 @@ /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{ @@ -27978,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{ @@ -27990,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{ @@ -28027,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, @@ -28067,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, @@ -28077,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, @@ -28103,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{ @@ -28125,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, @@ -28138,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{ @@ -28152,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, @@ -28200,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, @@ -28255,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, @@ -28283,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, @@ -28295,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{ @@ -28337,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{ @@ -28357,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, @@ -28377,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, @@ -28415,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, @@ -28455,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{ @@ -28496,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{ @@ -28569,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{ @@ -28589,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, @@ -28609,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, @@ -28637,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, @@ -28661,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, @@ -28718,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{ @@ -28739,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, @@ -28766,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{ @@ -28785,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, @@ -28810,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{ @@ -28829,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, @@ -28848,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, @@ -28863,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{ @@ -28883,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, @@ -28897,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, @@ -28917,57 +23649,41 @@ /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) "lBu" = ( /obj/structure/machinery/light{ @@ -28975,10 +23691,7 @@ }, /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{ @@ -28991,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{ @@ -29012,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, @@ -29029,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{ @@ -29044,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{ @@ -29056,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, @@ -29109,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, @@ -29121,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, @@ -29143,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{ @@ -29219,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, @@ -29242,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, @@ -29279,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{ @@ -29310,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, @@ -29329,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{ @@ -29343,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, @@ -29359,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, @@ -29372,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{ @@ -29410,10 +24039,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/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, @@ -29425,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{ @@ -29448,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, @@ -29476,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{ @@ -29496,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{ @@ -29508,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{ @@ -29535,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{ @@ -29555,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, @@ -29579,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{ @@ -29607,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{ @@ -29626,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{ @@ -29653,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{ @@ -29708,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, @@ -29735,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{ @@ -29787,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{ @@ -29798,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, @@ -29818,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{ @@ -29859,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, @@ -29869,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{ @@ -29903,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{ @@ -29938,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, @@ -29960,9 +24502,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) "lWj" = ( /obj/structure/platform, @@ -29971,9 +24511,7 @@ "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{ @@ -29983,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, @@ -29995,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{ @@ -30013,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{ @@ -30037,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, @@ -30057,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{ @@ -30081,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{ @@ -30112,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, @@ -30126,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, @@ -30152,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, @@ -30176,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, @@ -30190,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, @@ -30202,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{ @@ -30220,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{ @@ -30240,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{ @@ -30254,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{ @@ -30282,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, @@ -30297,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{ @@ -30318,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, @@ -30359,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, @@ -30375,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{ @@ -30399,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, @@ -30418,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{ @@ -30451,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, @@ -30485,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{ @@ -30502,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, @@ -30522,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{ @@ -30550,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, @@ -30591,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{ @@ -30615,10 +25037,7 @@ /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, @@ -30633,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{ @@ -30660,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, @@ -30687,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{ @@ -30700,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{ @@ -30719,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{ @@ -30730,9 +25131,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/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{ @@ -30741,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{ @@ -30763,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, @@ -30776,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{ @@ -30790,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, @@ -30821,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{ @@ -30838,10 +25220,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/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, @@ -30855,10 +25234,7 @@ pixel_x = 8; pixel_y = 20 }, -/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{ @@ -30870,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{ @@ -30897,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{ @@ -30929,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, @@ -30947,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{ @@ -30957,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{ @@ -30977,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, @@ -31021,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{ @@ -31049,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, @@ -31060,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, @@ -31078,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{ @@ -31105,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{ @@ -31152,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, @@ -31181,15 +25504,10 @@ /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{ @@ -31200,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, @@ -31211,33 +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, /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{ @@ -31248,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, @@ -31269,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, @@ -31280,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{ @@ -31292,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, @@ -31302,32 +25599,22 @@ /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{ @@ -31346,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{ @@ -31381,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, @@ -31392,10 +25669,7 @@ dir = 8; pixel_y = 5 }, -/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, @@ -31411,10 +25685,7 @@ /obj/item/device/flashlight/lamp{ pixel_x = 6 }, -/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, @@ -31428,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{ @@ -31444,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, @@ -31494,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, @@ -31516,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, @@ -31540,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, @@ -31553,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{ @@ -31571,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, @@ -31625,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, @@ -31643,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, @@ -31660,10 +25887,7 @@ }, /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/landing_zone_1/ceiling) "mFA" = ( /obj/structure/stairs/perspective{ @@ -31677,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{ @@ -31701,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{ @@ -31749,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, @@ -31759,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, @@ -31787,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{ @@ -31800,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{ @@ -31829,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{ @@ -31842,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{ @@ -31880,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, @@ -31897,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{ @@ -31927,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{ @@ -31944,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{ @@ -31979,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{ @@ -32010,21 +26174,14 @@ /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, @@ -32043,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, @@ -32061,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, @@ -32084,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{ @@ -32096,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, @@ -32115,32 +26260,23 @@ /obj/item/device/flashlight/lamp{ pixel_x = -8 }, -/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, @@ -32159,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{ @@ -32177,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{ @@ -32200,10 +26331,7 @@ name = "remote door-control"; pixel_y = 4 }, -/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, @@ -32211,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{ @@ -32226,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, @@ -32241,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, @@ -32265,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{ @@ -32295,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{ @@ -32316,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{ @@ -32358,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{ @@ -32392,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, @@ -32422,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{ @@ -32444,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{ @@ -32492,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{ @@ -32518,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{ @@ -32531,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, @@ -32541,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, @@ -32551,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, @@ -32576,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{ @@ -32591,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, @@ -32622,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, @@ -32639,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, @@ -32656,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{ @@ -32673,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{ @@ -32688,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{ @@ -32700,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, @@ -32721,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, @@ -32733,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, @@ -32752,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, @@ -32777,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, @@ -32793,10 +26838,7 @@ /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/structure/machinery/landinglight/ds1/delaythree, @@ -32810,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{ @@ -32824,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, @@ -32853,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, @@ -32874,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, @@ -32912,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, @@ -32930,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, @@ -32946,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{ @@ -32966,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{ @@ -32991,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{ @@ -33019,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{ @@ -33029,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, @@ -33055,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{ @@ -33074,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{ @@ -33117,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{ @@ -33126,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, @@ -33162,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{ @@ -33181,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{ @@ -33193,15 +27181,11 @@ /area/lv522/atmos/filt) "niA" = ( /obj/structure/largecrate/random/barrel/green, -/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{ @@ -33209,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, @@ -33228,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, @@ -33247,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{ @@ -33275,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, @@ -33286,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{ @@ -33301,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{ @@ -33370,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{ @@ -33391,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, @@ -33408,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, @@ -33430,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{ @@ -33441,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{ @@ -33485,9 +27423,7 @@ 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, @@ -33496,17 +27432,13 @@ /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{ @@ -33527,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, @@ -33554,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{ @@ -33570,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{ @@ -33608,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, @@ -33620,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, @@ -33641,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{ @@ -33663,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{ @@ -33675,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{ @@ -33699,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, @@ -33720,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{ @@ -33737,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, @@ -33749,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{ @@ -33762,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{ @@ -33778,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, @@ -33809,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{ @@ -33838,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, @@ -33862,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, @@ -33872,9 +27745,7 @@ /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, @@ -33889,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{ @@ -33920,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, @@ -33931,10 +27797,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/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, @@ -33943,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, @@ -33965,38 +27826,27 @@ /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, @@ -34011,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{ @@ -34024,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{ @@ -34037,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{ @@ -34067,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, @@ -34091,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{ @@ -34114,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{ @@ -34141,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, @@ -34190,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{ @@ -34232,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, @@ -34275,9 +28089,7 @@ /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" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -34305,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{ @@ -34342,19 +28149,14 @@ /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, @@ -34381,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{ @@ -34424,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{ @@ -34445,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, @@ -34455,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{ @@ -34478,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, @@ -34500,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, @@ -34514,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, @@ -34544,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, @@ -34590,17 +28362,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_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, @@ -34608,10 +28376,7 @@ /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, @@ -34621,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, @@ -34640,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{ @@ -34658,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, @@ -34683,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, @@ -34695,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{ @@ -34710,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, @@ -34761,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{ @@ -34772,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, @@ -34785,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, @@ -34796,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{ @@ -34811,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{ @@ -34823,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, @@ -34865,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{ @@ -34875,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, @@ -34891,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{ @@ -34902,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, @@ -34912,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, @@ -34946,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{ @@ -34981,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{ @@ -35006,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{ @@ -35030,9 +28737,7 @@ "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, @@ -35044,10 +28749,7 @@ /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, @@ -35067,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{ @@ -35118,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, @@ -35139,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, @@ -35151,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, @@ -35162,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, @@ -35175,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{ @@ -35192,10 +28877,7 @@ 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, @@ -35218,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, @@ -35228,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, @@ -35270,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{ @@ -35294,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{ @@ -35305,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{ @@ -35326,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{ @@ -35339,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{ @@ -35352,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, @@ -35374,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{ @@ -35386,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, @@ -35400,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{ @@ -35413,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, @@ -35449,9 +29092,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) "nYU" = ( /obj/effect/acid_hole, @@ -35478,23 +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{ @@ -35508,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{ @@ -35529,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{ @@ -35545,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{ @@ -35561,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{ @@ -35574,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, @@ -35591,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, @@ -35618,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, @@ -35629,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{ @@ -35642,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, @@ -35654,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{ @@ -35698,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{ @@ -35721,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{ @@ -35740,10 +29337,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/c_block/mining) "oeU" = ( /obj/structure/bed/chair/comfy{ @@ -35760,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, @@ -35776,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, @@ -35798,22 +29387,16 @@ /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, @@ -35842,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{ @@ -35854,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{ @@ -35873,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, @@ -35905,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{ @@ -35923,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{ @@ -35967,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{ @@ -35983,24 +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" = ( -/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{ @@ -36010,16 +29561,11 @@ /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/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, @@ -36035,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, @@ -36045,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{ @@ -36060,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, @@ -36086,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{ @@ -36097,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{ @@ -36116,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, @@ -36131,10 +29658,7 @@ pixel_x = 9; pixel_y = 4 }, -/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{ @@ -36153,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, @@ -36187,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{ @@ -36209,9 +29721,7 @@ /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, @@ -36243,10 +29753,7 @@ }, /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/landing_zone_1/ceiling) "opO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -36266,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{ @@ -36288,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{ @@ -36312,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, @@ -36325,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{ @@ -36344,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{ @@ -36354,16 +29852,11 @@ /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{ @@ -36381,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{ @@ -36398,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{ @@ -36421,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, @@ -36486,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{ @@ -36551,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{ @@ -36570,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{ @@ -36605,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{ @@ -36621,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, @@ -36638,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{ @@ -36677,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{ @@ -36698,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{ @@ -36715,40 +30149,28 @@ /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, @@ -36759,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, @@ -36772,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{ @@ -36793,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{ @@ -36805,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, @@ -36824,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{ @@ -36848,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, @@ -36867,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, @@ -36901,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, @@ -36919,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{ @@ -36934,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{ @@ -37000,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{ @@ -37019,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, @@ -37063,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, @@ -37087,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{ @@ -37106,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{ @@ -37116,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{ @@ -37135,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{ @@ -37164,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, @@ -37206,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{ @@ -37218,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, @@ -37253,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, @@ -37274,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{ @@ -37291,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, @@ -37330,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{ @@ -37352,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{ @@ -37366,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, @@ -37401,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, @@ -37422,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, @@ -37443,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, @@ -37465,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, @@ -37490,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{ @@ -37519,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, @@ -37532,39 +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 }, -/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, @@ -37579,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{ @@ -37596,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, @@ -37612,10 +30881,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/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{ @@ -37645,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{ @@ -37669,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, @@ -37713,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, @@ -37751,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, @@ -37764,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{ @@ -37796,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, @@ -37812,10 +31049,7 @@ /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/landing_zone_1/ceiling) "oVL" = ( /obj/structure/surface/table/reinforced/prison, @@ -37828,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{ @@ -37844,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, @@ -37877,24 +31100,18 @@ name = "High Pressure Door"; unacidable = 1 }, -/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{ @@ -37904,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{ @@ -37924,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{ @@ -37959,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, @@ -37981,9 +31186,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) "oYO" = ( /obj/structure/platform{ @@ -37997,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, @@ -38032,15 +31230,11 @@ /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, @@ -38062,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, @@ -38083,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, @@ -38104,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, @@ -38145,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, @@ -38159,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{ @@ -38173,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, @@ -38192,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, @@ -38202,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, @@ -38232,10 +31401,7 @@ /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, @@ -38253,10 +31419,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) "pfe" = ( /obj/structure/bed/chair{ @@ -38278,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{ @@ -38294,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, @@ -38316,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, @@ -38332,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, @@ -38348,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, @@ -38367,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{ @@ -38384,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{ @@ -38396,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, @@ -38406,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{ @@ -38434,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{ @@ -38458,25 +31586,18 @@ /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, @@ -38510,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{ @@ -38534,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, @@ -38564,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{ @@ -38585,9 +31697,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "plb" = ( /obj/structure/machinery/door_display/research_cell{ @@ -38596,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, @@ -38612,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, @@ -38649,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{ @@ -38688,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, @@ -38710,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{ @@ -38741,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, @@ -38788,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{ @@ -38804,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{ @@ -38846,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, @@ -38883,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, @@ -38902,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{ @@ -38933,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, @@ -38975,9 +32020,7 @@ "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{ @@ -38994,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{ @@ -39015,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{ @@ -39025,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, @@ -39045,19 +32081,14 @@ /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, @@ -39068,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, @@ -39086,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{ @@ -39103,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{ @@ -39124,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{ @@ -39180,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, @@ -39191,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{ @@ -39208,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, @@ -39221,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{ @@ -39237,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, @@ -39279,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{ @@ -39303,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{ @@ -39334,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{ @@ -39350,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, @@ -39371,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{ @@ -39445,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, @@ -39470,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, @@ -39482,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{ @@ -39536,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{ @@ -39550,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{ @@ -39562,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{ @@ -39604,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, @@ -39643,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{ @@ -39654,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{ @@ -39683,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{ @@ -39709,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{ @@ -39749,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, @@ -39763,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, @@ -39809,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{ @@ -39824,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, @@ -39868,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{ @@ -39889,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{ @@ -39908,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{ @@ -39928,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, @@ -39939,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, @@ -39963,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, @@ -39987,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{ @@ -40011,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, @@ -40037,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, @@ -40050,10 +32929,7 @@ }, /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, @@ -40062,9 +32938,7 @@ /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, @@ -40080,10 +32954,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/landing_zone_1/ceiling) "pQN" = ( /obj/item/cell/apc{ @@ -40094,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, @@ -40136,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{ @@ -40165,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{ @@ -40183,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, @@ -40251,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{ @@ -40273,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, @@ -40289,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, @@ -40302,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, @@ -40329,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, @@ -40346,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{ @@ -40361,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{ @@ -40375,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{ @@ -40395,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{ @@ -40410,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, @@ -40431,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, @@ -40466,10 +33263,7 @@ /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{ @@ -40481,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, @@ -40499,10 +33290,7 @@ 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, @@ -40518,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{ @@ -40537,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{ @@ -40556,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{ @@ -40577,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{ @@ -40608,16 +33384,12 @@ 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{ @@ -40635,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, @@ -40653,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{ @@ -40699,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{ @@ -40723,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, @@ -40743,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{ @@ -40794,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, @@ -40808,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{ @@ -40850,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{ @@ -40882,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{ @@ -40910,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{ @@ -40936,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, @@ -40950,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{ @@ -40969,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, @@ -40996,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, @@ -41027,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, @@ -41042,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{ @@ -41069,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, @@ -41116,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, @@ -41136,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, @@ -41153,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{ @@ -41195,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, @@ -41210,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, @@ -41228,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, @@ -41247,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, @@ -41285,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, @@ -41313,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{ @@ -41342,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{ @@ -41357,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{ @@ -41407,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, @@ -41437,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, @@ -41450,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, @@ -41462,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, @@ -41489,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{ @@ -41525,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, @@ -41539,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{ @@ -41551,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{ @@ -41576,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{ @@ -41619,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{ @@ -41654,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{ @@ -41665,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, @@ -41698,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, @@ -41725,9 +34348,7 @@ 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, @@ -41750,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{ @@ -41767,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{ @@ -41788,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{ @@ -41839,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, @@ -41850,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{ @@ -41882,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{ @@ -41917,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{ @@ -41959,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, @@ -42020,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, @@ -42045,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{ @@ -42063,14 +34641,10 @@ 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) "qCB" = ( /obj/structure/surface/rack, @@ -42088,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{ @@ -42100,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{ @@ -42132,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{ @@ -42211,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, @@ -42233,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{ @@ -42257,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{ @@ -42267,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, @@ -42288,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, @@ -42310,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{ @@ -42330,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{ @@ -42353,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{ @@ -42378,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, @@ -42413,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, @@ -42446,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{ @@ -42458,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, @@ -42469,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, @@ -42502,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, @@ -42530,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{ @@ -42545,10 +35058,7 @@ /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, @@ -42558,10 +35068,7 @@ 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, @@ -42573,9 +35080,7 @@ /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{ @@ -42587,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{ @@ -42637,9 +35140,7 @@ /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, @@ -42660,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, @@ -42708,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, @@ -42721,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{ @@ -42738,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{ @@ -42763,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{ @@ -42841,10 +35308,7 @@ /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{ @@ -42860,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{ @@ -42872,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{ @@ -42884,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{ @@ -42901,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{ @@ -42915,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{ @@ -42926,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, @@ -42947,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, @@ -42977,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{ @@ -42993,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{ @@ -43038,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{ @@ -43054,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{ @@ -43067,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{ @@ -43084,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, @@ -43103,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, @@ -43119,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{ @@ -43167,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{ @@ -43179,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{ @@ -43215,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{ @@ -43237,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{ @@ -43249,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{ @@ -43281,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, @@ -43289,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{ @@ -43299,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{ @@ -43324,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{ @@ -43337,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, @@ -43365,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, @@ -43387,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{ @@ -43406,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{ @@ -43419,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{ @@ -43438,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{ @@ -43463,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{ @@ -43492,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{ @@ -43510,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{ @@ -43528,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, @@ -43574,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{ @@ -43657,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{ @@ -43673,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, @@ -43740,26 +36074,18 @@ "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{ @@ -43778,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, @@ -43803,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, @@ -43830,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, @@ -43847,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{ @@ -43859,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{ @@ -43870,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{ @@ -43895,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{ @@ -43907,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, @@ -43924,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, @@ -43937,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{ @@ -43975,48 +36270,32 @@ "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{ @@ -44038,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{ @@ -44052,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, @@ -44067,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{ @@ -44092,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, @@ -44145,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, @@ -44161,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{ @@ -44173,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, @@ -44198,10 +36448,7 @@ /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, @@ -44209,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{ @@ -44232,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, @@ -44259,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, @@ -44273,17 +36509,12 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "rnT" = ( -/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, @@ -44301,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{ @@ -44317,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{ @@ -44353,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{ @@ -44369,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, @@ -44419,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, @@ -44435,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, @@ -44465,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, @@ -44479,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, @@ -44527,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{ @@ -44543,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, @@ -44577,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{ @@ -44601,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, @@ -44631,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, @@ -44642,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, @@ -44669,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{ @@ -44682,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{ @@ -44699,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, @@ -44720,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{ @@ -44771,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{ @@ -44793,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, @@ -44822,25 +36973,18 @@ /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{ @@ -44857,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, @@ -44907,17 +37035,12 @@ /area/lv522/outdoors/colony_streets/north_west_street) "rzz" = ( /obj/effect/decal/cleanable/dirt, -/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{ @@ -44938,44 +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, -/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/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{ @@ -45006,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{ @@ -45017,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{ @@ -45053,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, @@ -45074,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{ @@ -45086,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, @@ -45115,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{ @@ -45131,9 +37218,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) "rFp" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -45155,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, @@ -45173,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, @@ -45205,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{ @@ -45222,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{ @@ -45239,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, @@ -45250,30 +37317,21 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/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) "rJB" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -45298,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{ @@ -45318,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, @@ -45332,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{ @@ -45352,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, @@ -45381,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, @@ -45391,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{ @@ -45408,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{ @@ -45421,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, @@ -45442,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{ @@ -45456,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{ @@ -45478,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, @@ -45497,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{ @@ -45514,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, @@ -45534,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{ @@ -45554,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, @@ -45564,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{ @@ -45617,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{ @@ -45631,9 +37634,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/central_streets) "rPu" = ( /obj/structure/machinery/light, @@ -45642,9 +37643,7 @@ /area/lv522/indoors/c_block/t_comm) "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, @@ -45652,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, @@ -45678,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{ @@ -45688,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{ @@ -45703,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{ @@ -45715,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, @@ -45740,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, @@ -45759,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{ @@ -45790,26 +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, -/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{ @@ -45822,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{ @@ -45833,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{ @@ -45873,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{ @@ -45900,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{ @@ -45928,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, @@ -45973,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, @@ -45989,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, @@ -46010,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{ @@ -46025,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, @@ -46043,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{ @@ -46070,19 +38000,14 @@ /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{ @@ -46121,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{ @@ -46150,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, @@ -46167,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, @@ -46185,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{ @@ -46213,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{ @@ -46249,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, @@ -46262,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{ @@ -46273,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{ @@ -46284,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{ @@ -46295,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, @@ -46312,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{ @@ -46330,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{ @@ -46357,9 +38246,7 @@ "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, @@ -46369,9 +38256,7 @@ /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{ @@ -46397,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, @@ -46409,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, @@ -46422,32 +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 }, -/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{ @@ -46462,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{ @@ -46489,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, @@ -46502,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, @@ -46520,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{ @@ -46547,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{ @@ -46572,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{ @@ -46595,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{ @@ -46634,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, @@ -46644,10 +38478,7 @@ /obj/item/key/cargo_train{ icon_state = "keys" }, -/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{ @@ -46655,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{ @@ -46666,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, @@ -46709,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, @@ -46722,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, @@ -46737,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{ @@ -46767,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{ @@ -46798,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{ @@ -46829,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{ @@ -46847,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, @@ -46858,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{ @@ -46884,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, @@ -46908,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, @@ -46921,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, @@ -46962,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{ @@ -46986,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{ @@ -47012,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, @@ -47022,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{ @@ -47050,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{ @@ -47061,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{ @@ -47090,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, @@ -47101,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, @@ -47112,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{ @@ -47123,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{ @@ -47140,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{ @@ -47164,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, @@ -47184,24 +38922,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/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{ @@ -47211,10 +38942,7 @@ "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, @@ -47227,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{ @@ -47247,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, @@ -47262,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{ @@ -47284,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, @@ -47294,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, @@ -47333,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{ @@ -47357,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, @@ -47387,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{ @@ -47403,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, @@ -47442,15 +39136,11 @@ /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_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{ @@ -47466,30 +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 }, -/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{ @@ -47504,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{ @@ -47539,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, @@ -47562,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, @@ -47588,9 +39257,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "sCi" = ( /obj/item/clothing/shoes/jackboots{ @@ -47602,9 +39269,7 @@ 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) "sCp" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -47624,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{ @@ -47635,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{ @@ -47650,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{ @@ -47675,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, @@ -47694,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{ @@ -47734,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{ @@ -47752,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{ @@ -47790,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{ @@ -47808,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, @@ -47837,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{ @@ -47854,16 +39478,12 @@ /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{ @@ -47871,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{ @@ -47893,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, @@ -47917,10 +39533,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/landing_zone_1/ceiling) "sIK" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -47932,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{ @@ -47949,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{ @@ -47982,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, @@ -47993,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{ @@ -48030,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, @@ -48040,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{ @@ -48079,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, @@ -48112,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, @@ -48137,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{ @@ -48163,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{ @@ -48190,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, @@ -48234,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, @@ -48256,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{ @@ -48269,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{ @@ -48285,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{ @@ -48315,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{ @@ -48332,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, @@ -48350,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, @@ -48398,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, @@ -48417,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, @@ -48448,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, @@ -48469,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, @@ -48479,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{ @@ -48492,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, @@ -48510,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{ @@ -48529,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, @@ -48558,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, @@ -48588,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, @@ -48599,56 +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" }, -/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{ @@ -48659,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{ @@ -48717,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{ @@ -48731,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, @@ -48760,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, @@ -48812,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{ @@ -48824,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, @@ -48846,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, @@ -48858,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, @@ -48869,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, @@ -48900,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, @@ -48913,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{ @@ -48938,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{ @@ -48958,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{ @@ -48973,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{ @@ -49000,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{ @@ -49017,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{ @@ -49036,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, @@ -49066,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{ @@ -49095,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, @@ -49126,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{ @@ -49139,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{ @@ -49158,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{ @@ -49169,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{ @@ -49188,9 +40606,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "tfi" = ( /obj/structure/platform_decoration{ @@ -49201,16 +40617,12 @@ "tfl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/railgun_camera_pos, -/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{ @@ -49229,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, @@ -49249,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{ @@ -49272,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{ @@ -49294,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{ @@ -49318,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, @@ -49337,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, @@ -49364,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, @@ -49388,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, @@ -49420,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{ @@ -49432,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{ @@ -49455,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{ @@ -49475,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{ @@ -49487,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{ @@ -49497,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{ @@ -49516,45 +40876,32 @@ /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, @@ -49566,20 +40913,14 @@ pixel_x = -1; pixel_y = 1 }, -/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{ @@ -49588,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{ @@ -49624,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, @@ -49644,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{ @@ -49655,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{ @@ -49692,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{ @@ -49712,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, @@ -49730,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{ @@ -49748,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, @@ -49764,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{ @@ -49818,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{ @@ -49842,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{ @@ -49873,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{ @@ -49893,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, @@ -49919,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, @@ -49933,9 +41211,7 @@ 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{ @@ -49946,10 +41222,7 @@ /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, @@ -49957,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, @@ -49978,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{ @@ -50019,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{ @@ -50039,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{ @@ -50049,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{ @@ -50065,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{ @@ -50092,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, @@ -50110,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, @@ -50160,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{ @@ -50189,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{ @@ -50214,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{ @@ -50242,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, @@ -50276,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, @@ -50291,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, @@ -50317,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{ @@ -50337,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{ @@ -50378,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, @@ -50399,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, @@ -50415,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, @@ -50425,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{ @@ -50447,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{ @@ -50485,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, @@ -50509,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, @@ -50562,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{ @@ -50607,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{ @@ -50642,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, @@ -50657,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, @@ -50677,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, @@ -50700,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{ @@ -50723,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, @@ -50734,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{ @@ -50751,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{ @@ -50789,15 +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, -/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{ @@ -50811,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, @@ -50844,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, @@ -50874,19 +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" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/landing_zone_1) "tMt" = ( /obj/structure/platform_decoration, @@ -50894,9 +42000,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "tMD" = ( /obj/item/prop/alien/hugger, @@ -50904,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, @@ -50916,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, @@ -50931,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, @@ -50944,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, @@ -50968,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, @@ -50989,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, @@ -51004,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{ @@ -51024,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, @@ -51041,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, @@ -51059,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, @@ -51073,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{ @@ -51090,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{ @@ -51140,16 +42206,11 @@ pixel_y = 4 }, /obj/structure/machinery/light, -/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{ @@ -51167,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{ @@ -51181,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, @@ -51198,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, @@ -51216,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{ @@ -51238,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, @@ -51252,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, @@ -51270,25 +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, -/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{ @@ -51305,16 +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, -/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{ @@ -51326,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{ @@ -51366,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, @@ -51377,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, @@ -51402,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{ @@ -51427,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{ @@ -51451,9 +42459,7 @@ }, /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_1/ceiling) "tXW" = ( /turf/open/auto_turf/shale/layer2, @@ -51463,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{ @@ -51484,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{ @@ -51512,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, @@ -51524,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{ @@ -51550,39 +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) "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, @@ -51593,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, @@ -51612,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, @@ -51658,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{ @@ -51670,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{ @@ -51701,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{ @@ -51724,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{ @@ -51742,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, @@ -51758,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, @@ -51783,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, @@ -51794,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{ @@ -51818,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, @@ -51829,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{ @@ -51863,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{ @@ -51876,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{ @@ -51902,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{ @@ -51920,16 +42836,11 @@ pixel_y = 6 }, /obj/structure/machinery/light, -/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{ @@ -51937,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{ @@ -51948,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, @@ -51970,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, @@ -52002,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{ @@ -52031,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, @@ -52045,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{ @@ -52059,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{ @@ -52072,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{ @@ -52090,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, @@ -52122,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, @@ -52140,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, @@ -52174,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{ @@ -52192,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, @@ -52212,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, @@ -52236,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{ @@ -52246,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, @@ -52271,9 +43123,7 @@ /obj/structure/platform{ dir = 4 }, -/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{ @@ -52304,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, @@ -52314,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{ @@ -52343,10 +43187,7 @@ pixel_x = -8; pixel_y = 4 }, -/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{ @@ -52364,10 +43205,7 @@ /area/lv522/landing_zone_1/ceiling) "uom" = ( /obj/structure/machinery/disposal, -/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{ @@ -52379,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{ @@ -52397,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, @@ -52415,10 +43246,7 @@ pixel_x = 6; pixel_y = 16 }, -/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, @@ -52466,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, @@ -52476,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{ @@ -52530,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, @@ -52577,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, @@ -52598,10 +43406,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/close, -/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, @@ -52621,10 +43426,7 @@ /obj/item/trash/cigbutt{ pixel_x = 4 }, -/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, @@ -52636,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{ @@ -52647,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{ @@ -52675,26 +43470,18 @@ /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{ @@ -52717,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{ @@ -52743,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, @@ -52764,16 +43540,11 @@ /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, @@ -52781,19 +43552,14 @@ /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, @@ -52810,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, @@ -52823,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, @@ -52834,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{ @@ -52868,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, @@ -52886,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, @@ -52923,19 +43669,14 @@ 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{ @@ -52944,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, @@ -52960,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, @@ -52981,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, @@ -53004,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{ @@ -53033,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, @@ -53056,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{ @@ -53071,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{ @@ -53113,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, @@ -53126,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, @@ -53165,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, @@ -53177,18 +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 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/landing_zone_1) "uFz" = ( /obj/item/clipboard, @@ -53200,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{ @@ -53213,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, @@ -53248,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{ @@ -53264,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{ @@ -53289,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, @@ -53310,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, @@ -53332,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, @@ -53354,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, @@ -53370,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{ @@ -53396,9 +44056,7 @@ }, /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, @@ -53418,15 +44076,10 @@ /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, @@ -53444,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{ @@ -53458,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, @@ -53487,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{ @@ -53499,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{ @@ -53544,20 +44184,14 @@ /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{ @@ -53609,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, @@ -53626,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, @@ -53663,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, @@ -53745,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, @@ -53763,32 +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, -/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{ @@ -53801,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{ @@ -53826,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{ @@ -53863,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{ @@ -53888,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{ @@ -53919,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, @@ -53936,9 +44513,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) "uRR" = ( /obj/structure/platform{ @@ -53947,9 +44522,7 @@ /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{ @@ -53969,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{ @@ -54013,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, @@ -54024,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{ @@ -54035,17 +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 }, -/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, @@ -54053,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{ @@ -54096,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, @@ -54109,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, @@ -54134,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{ @@ -54148,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, @@ -54160,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, @@ -54173,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{ @@ -54211,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, @@ -54222,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, @@ -54263,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, @@ -54282,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, @@ -54309,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, @@ -54344,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, @@ -54359,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{ @@ -54381,10 +44879,7 @@ 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" = ( /turf/open/floor/prison, @@ -54419,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, @@ -54454,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, @@ -54497,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, @@ -54514,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{ @@ -54549,9 +45026,7 @@ /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, @@ -54565,28 +45040,21 @@ 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, @@ -54600,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{ @@ -54640,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{ @@ -54679,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, @@ -54694,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{ @@ -54714,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{ @@ -54752,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{ @@ -54781,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{ @@ -54800,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, @@ -54828,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{ @@ -54840,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{ @@ -54865,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{ @@ -54880,9 +45313,7 @@ /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{ @@ -54915,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, @@ -54927,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, @@ -54947,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, @@ -54971,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, @@ -54997,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{ @@ -55011,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{ @@ -55026,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, @@ -55071,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{ @@ -55100,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, @@ -55121,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{ @@ -55142,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, @@ -55161,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, @@ -55171,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, @@ -55182,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{ @@ -55205,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, @@ -55236,24 +45603,17 @@ 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{ @@ -55263,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{ @@ -55278,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, @@ -55293,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{ @@ -55320,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, @@ -55340,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{ @@ -55351,24 +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, -/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{ @@ -55378,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, @@ -55398,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, @@ -55418,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, @@ -55438,14 +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" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/landing_zone_1) "vtP" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ @@ -55455,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{ @@ -55473,25 +45789,17 @@ /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/ceiling) "vuH" = ( /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/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{ @@ -55501,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, @@ -55536,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, @@ -55556,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{ @@ -55575,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, @@ -55590,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{ @@ -55602,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, @@ -55618,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, @@ -55636,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{ @@ -55663,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{ @@ -55686,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{ @@ -55697,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{ @@ -55726,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, @@ -55751,43 +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" = ( -/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{ @@ -55810,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, @@ -55824,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{ @@ -55838,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, @@ -55862,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{ @@ -55918,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, @@ -55928,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, @@ -55952,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{ @@ -55968,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{ @@ -55997,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, @@ -56058,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{ @@ -56068,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{ @@ -56099,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{ @@ -56127,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{ @@ -56152,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, @@ -56184,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, @@ -56200,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{ @@ -56237,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{ @@ -56274,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, @@ -56296,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, @@ -56321,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, @@ -56334,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{ @@ -56364,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{ @@ -56395,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{ @@ -56421,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, @@ -56438,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, @@ -56470,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, @@ -56484,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, @@ -56497,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, @@ -56519,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{ @@ -56539,17 +46670,12 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/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{ @@ -56562,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{ @@ -56637,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, @@ -56668,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, @@ -56710,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, @@ -56726,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{ @@ -56752,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, @@ -56765,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, @@ -56793,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{ @@ -56809,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{ @@ -56829,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{ @@ -56854,28 +46920,20 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "vTT" = ( -/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{ @@ -56893,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, @@ -56916,16 +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, -/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, @@ -56944,38 +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, -/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{ @@ -56990,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, @@ -57010,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, @@ -57027,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, @@ -57039,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{ @@ -57053,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{ @@ -57087,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, @@ -57105,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{ @@ -57121,17 +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, -/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{ @@ -57141,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, @@ -57161,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, @@ -57178,10 +47185,7 @@ /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{ @@ -57195,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, @@ -57220,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{ @@ -57256,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{ @@ -57276,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, @@ -57287,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, @@ -57297,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, @@ -57333,31 +47316,21 @@ 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, @@ -57373,29 +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, -/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{ @@ -57405,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{ @@ -57472,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{ @@ -57497,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, @@ -57536,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, @@ -57559,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, @@ -57587,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, @@ -57597,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{ @@ -57620,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{ @@ -57645,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{ @@ -57724,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{ @@ -57756,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{ @@ -57770,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{ @@ -57795,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{ @@ -57811,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, @@ -57841,10 +47743,7 @@ /area/lv522/indoors/c_block/cargo) "wlY" = ( /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/ceiling) "wmk" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -57857,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, @@ -57879,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, @@ -57892,10 +47785,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/landing_zone_1/ceiling) "wob" = ( /obj/effect/decal/cleanable/dirt, @@ -57903,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, @@ -57957,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, @@ -57973,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, @@ -57994,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, @@ -58015,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{ @@ -58033,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{ @@ -58057,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, @@ -58077,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{ @@ -58087,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{ @@ -58130,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{ @@ -58211,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, @@ -58223,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, @@ -58268,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, @@ -58280,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{ @@ -58302,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, @@ -58315,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, @@ -58335,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, @@ -58348,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{ @@ -58384,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{ @@ -58404,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{ @@ -58430,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, @@ -58445,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{ @@ -58494,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, @@ -58507,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{ @@ -58519,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, @@ -58537,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{ @@ -58574,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{ @@ -58591,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{ @@ -58631,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, @@ -58644,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{ @@ -58656,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, @@ -58688,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, @@ -58721,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, @@ -58752,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{ @@ -58769,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, @@ -58785,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, @@ -58839,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, @@ -58849,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{ @@ -58859,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{ @@ -58881,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, @@ -58891,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, @@ -58911,10 +48612,7 @@ }, /obj/item/clothing/head/hardhat/white, /obj/effect/decal/cleanable/dirt, -/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, @@ -58925,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, @@ -58937,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, @@ -58959,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{ @@ -58987,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, @@ -59003,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, @@ -59040,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{ @@ -59057,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, @@ -59100,9 +48777,7 @@ /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{ @@ -59115,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, @@ -59126,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{ @@ -59137,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, @@ -59155,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, @@ -59180,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{ @@ -59229,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, @@ -59247,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{ @@ -59292,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, @@ -59309,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{ @@ -59320,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{ @@ -59332,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, @@ -59374,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, @@ -59399,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, @@ -59410,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, @@ -59439,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, @@ -59459,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, @@ -59520,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, @@ -59553,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{ @@ -59593,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, @@ -59616,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{ @@ -59660,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, @@ -59670,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, @@ -59680,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{ @@ -59691,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{ @@ -59702,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{ @@ -59719,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, @@ -59746,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{ @@ -59774,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, @@ -59801,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{ @@ -59829,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, @@ -59839,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, @@ -59861,10 +49403,7 @@ pixel_x = -13; pixel_y = 2 }, -/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{ @@ -59888,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{ @@ -59930,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, @@ -59958,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{ @@ -59971,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{ @@ -59985,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{ @@ -60004,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, @@ -60035,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{ @@ -60074,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, @@ -60084,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{ @@ -60102,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{ @@ -60140,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{ @@ -60183,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, @@ -60194,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, @@ -60208,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, @@ -60225,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{ @@ -60255,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, @@ -60282,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, @@ -60309,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, @@ -60337,19 +49793,14 @@ /obj/structure/bed/chair{ dir = 1 }, -/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{ @@ -60365,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, @@ -60379,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, @@ -60405,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, @@ -60418,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, @@ -60431,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, @@ -60445,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{ @@ -60472,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, @@ -60499,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, @@ -60583,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, @@ -60616,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, @@ -60629,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, @@ -60644,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{ @@ -60677,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, @@ -60691,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{ @@ -60737,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, @@ -60747,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{ @@ -60766,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, @@ -60789,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{ @@ -60801,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, @@ -60837,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, @@ -60866,17 +50209,12 @@ 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/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, @@ -60892,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{ @@ -60920,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, @@ -60932,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{ @@ -60947,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, @@ -60960,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{ @@ -60973,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{ @@ -60992,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{ @@ -61006,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{ @@ -61020,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, @@ -61072,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, @@ -61083,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{ @@ -61104,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{ @@ -61124,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{ @@ -61147,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{ @@ -61190,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, @@ -61204,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{ @@ -61228,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, @@ -61246,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, @@ -61278,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, @@ -61321,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, @@ -61342,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{ @@ -61360,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, @@ -61377,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{ @@ -61393,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, @@ -61408,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, @@ -61424,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, @@ -61448,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, @@ -61461,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{ @@ -61488,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, @@ -61546,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{ @@ -61592,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, @@ -61608,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, @@ -61648,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, @@ -61674,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, @@ -61695,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, @@ -61712,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, @@ -61741,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, @@ -61767,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{ @@ -61782,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{ @@ -61816,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, @@ -61841,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, @@ -61854,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{ @@ -61902,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{ @@ -61945,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, @@ -61965,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{ @@ -61986,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, @@ -62010,15 +51177,10 @@ "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{ @@ -62031,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{ @@ -62061,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{ @@ -62074,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, @@ -62117,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, @@ -62134,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{ @@ -62155,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, @@ -62189,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, @@ -62216,9 +51342,7 @@ dir = 5; id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "xZP" = ( /obj/structure/stairs/perspective{ @@ -62232,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, @@ -62245,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, @@ -62261,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{ @@ -62276,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, @@ -62289,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, @@ -62330,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, @@ -62342,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, @@ -62356,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, @@ -62367,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, @@ -62377,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, @@ -62394,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, @@ -62428,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, @@ -62457,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{ @@ -62507,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, @@ -62529,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, @@ -62544,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, @@ -62560,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{ @@ -62598,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, @@ -62637,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, @@ -62654,29 +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" = ( -/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{ @@ -62685,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, @@ -62715,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, @@ -62756,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, @@ -62790,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{ @@ -62802,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, @@ -62816,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{ @@ -62828,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, @@ -62840,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, @@ -62866,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, @@ -62884,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, @@ -62909,24 +51910,17 @@ pixel_x = -7 }, /obj/effect/landmark/objective_landmark/close, -/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, @@ -62939,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{ @@ -62956,9 +51948,7 @@ /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, @@ -88335,7 +77325,7 @@ yhi yhi fxl six -gbq +jCU jwM jwM ild @@ -93100,7 +82090,7 @@ icW eHI xvl xvl -xwv +otS hMz gBy mUr @@ -94008,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 ba8e782344ca..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, @@ -17355,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, @@ -17375,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{ @@ -17389,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, @@ -17419,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, @@ -17431,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, @@ -17459,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, @@ -17497,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{ @@ -17526,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{ @@ -17541,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, @@ -17559,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{ @@ -17580,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, @@ -17607,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{ @@ -17624,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, @@ -17661,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, @@ -17752,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, @@ -17787,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, @@ -17825,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, @@ -17865,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, @@ -17875,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, @@ -17894,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, @@ -17916,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, @@ -17939,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, @@ -17965,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, @@ -17994,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, @@ -18010,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{ @@ -18051,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{ @@ -18067,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, @@ -18083,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, @@ -18103,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{ @@ -18133,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, @@ -18198,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{ @@ -18287,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, @@ -18332,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, @@ -18344,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{ @@ -18359,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, @@ -18393,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, @@ -18403,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, @@ -18431,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, @@ -18453,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, @@ -18467,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, @@ -18491,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{ @@ -18512,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{ @@ -18556,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, @@ -18592,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{ @@ -18635,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, @@ -18694,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, @@ -18743,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, @@ -18794,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, @@ -18808,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, @@ -18850,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, @@ -18863,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{ @@ -18879,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{ @@ -18919,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, @@ -18983,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, @@ -18994,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{ @@ -19020,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, @@ -19042,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, @@ -19081,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, @@ -19106,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, @@ -19124,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{ @@ -19140,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{ @@ -19151,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, @@ -19175,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, @@ -19186,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, @@ -19213,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, @@ -19230,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{ @@ -19251,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{ @@ -19265,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{ @@ -19277,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, @@ -19308,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, @@ -19351,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, @@ -19370,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, @@ -19407,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, @@ -19446,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, @@ -19471,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, @@ -19516,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, @@ -19563,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, @@ -19646,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{ @@ -19665,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" = ( @@ -19711,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, @@ -19751,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, @@ -19768,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, @@ -19778,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, @@ -19788,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, @@ -19814,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, @@ -19825,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, @@ -19836,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, @@ -19857,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{ @@ -19891,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, @@ -19920,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, @@ -19974,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, @@ -19993,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, @@ -20019,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, @@ -20048,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, @@ -20106,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" = ( @@ -20125,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, @@ -20151,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, @@ -20179,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, @@ -20196,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, @@ -20216,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, @@ -20233,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, @@ -20272,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, @@ -20285,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, @@ -20300,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, @@ -20336,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{ @@ -20372,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, @@ -20410,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" = ( @@ -20429,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, @@ -20443,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, @@ -20465,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{ @@ -20484,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{ @@ -20519,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, @@ -20568,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, @@ -20602,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, @@ -20657,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, @@ -20687,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, @@ -20743,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, @@ -20766,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, @@ -20829,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, @@ -20874,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, @@ -20896,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, @@ -20920,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, @@ -20936,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{ @@ -20971,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, @@ -21018,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, @@ -21055,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, @@ -21090,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{ @@ -21126,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, @@ -21139,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, @@ -21156,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, @@ -21191,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{ @@ -21210,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{ @@ -21247,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, @@ -21313,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, @@ -21325,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" = ( @@ -21347,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, @@ -21359,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{ @@ -21384,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{ @@ -21500,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, @@ -21549,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, @@ -21580,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{ @@ -21620,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, @@ -21633,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{ @@ -21658,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, @@ -21697,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, @@ -21732,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, @@ -21745,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, @@ -21793,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{ @@ -21829,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, @@ -21889,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, @@ -21914,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, @@ -21926,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, @@ -21962,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{ @@ -21981,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, @@ -22115,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, @@ -22145,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{ @@ -22174,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, @@ -22210,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, @@ -22236,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, @@ -22282,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, @@ -22341,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, @@ -22434,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, @@ -22465,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{ @@ -22493,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, @@ -22527,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, @@ -22544,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, @@ -22556,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{ @@ -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, @@ -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 16dc3740a77d..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{ @@ -1525,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{ @@ -1558,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{ @@ -1568,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{ @@ -1582,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{ @@ -1597,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, @@ -1610,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{ @@ -1652,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{ @@ -1695,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, @@ -1772,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{ @@ -1797,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{ @@ -1822,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{ @@ -1834,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{ @@ -1888,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{ @@ -1916,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,22 @@ pixel_y = 12 }, /obj/item/trash/cigbutt, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/corporate_dome) "Wx" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/lv624/lazarus/corporate_dome) "Xc" = ( /obj/structure/barricade/metal{ dir = 4; health = 200 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Xf" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/corporate_dome) "Xp" = ( /obj/structure/window/reinforced{ @@ -1161,10 +887,7 @@ /obj/item/clothing/under/colonist{ pixel_y = -2 }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "Xt" = ( /turf/template_noop, @@ -1173,38 +896,27 @@ /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) "XC" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/corporate_dome) "XG" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) "Ye" = ( /obj/structure/largecrate/supply/supplies/water, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "Yg" = ( /obj/item/moneybag, /obj/structure/surface/rack, /obj/item/coin/diamond, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "Yv" = ( /obj/item/frame/table/reinforced, @@ -1217,22 +929,16 @@ /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, /obj/item/restraint/handcuffs, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "ZO" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ZT" = ( /obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/laststand.dmm b/maps/map_files/LV624/standalone/laststand.dmm index 43201f92cb17..3b678e2c09a6 100644 --- a/maps/map_files/LV624/standalone/laststand.dmm +++ b/maps/map_files/LV624/standalone/laststand.dmm @@ -15,9 +15,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) "ah" = ( /turf/closed/wall/wood, @@ -30,9 +28,7 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "ak" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "al" = ( /obj/structure/bed/alien, @@ -51,9 +47,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) "ao" = ( /obj/structure/surface/table/woodentable/poor, @@ -70,9 +64,7 @@ /area/lv624/ground/caves/north_central_caves) "ap" = ( /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) "aq" = ( /obj/structure/closet/crate, @@ -93,9 +85,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) "au" = ( /obj/structure/surface/table/woodentable/poor, @@ -106,15 +96,11 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "ay" = ( /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) "aA" = ( /obj/structure/barricade/sandbags/wired, @@ -126,9 +112,7 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aC" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) "aD" = ( /turf/closed/wall/strata_ice/jungle, @@ -183,9 +167,7 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aP" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "aQ" = ( /obj/structure/surface/table/woodentable/poor, @@ -195,23 +177,17 @@ 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) "aR" = ( /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) "aS" = ( /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) "aU" = ( /obj/effect/decal/cleanable/blood, @@ -224,9 +200,7 @@ /area/lv624/ground/caves/north_central_caves) "aW" = ( /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) "aZ" = ( /obj/structure/window_frame/wood, @@ -243,9 +217,7 @@ /area/lv624/ground/caves/north_central_caves) "bc" = ( /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) "bd" = ( /obj/structure/closet/crate, @@ -270,16 +242,12 @@ "jP" = ( /obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "jQ" = ( /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) "lJ" = ( /obj/structure/curtain/red, @@ -291,9 +259,7 @@ 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) "mu" = ( /obj/structure/surface/table/woodentable/poor, @@ -317,9 +283,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) "pH" = ( /obj/structure/surface/table/woodentable/poor, @@ -355,9 +319,7 @@ "EY" = ( /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) "Ic" = ( /obj/structure/bed/chair/wood/normal{ @@ -372,31 +334,23 @@ /area/lv624/ground/caves/north_central_caves) "Ms" = ( /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) "ND" = ( /obj/structure/surface/table/woodentable/poor, /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) "OT" = ( /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) "Td" = ( /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) "UM" = ( /obj/structure/bed/alien, diff --git a/maps/map_files/LV624/standalone/lv-bridge-east.dmm b/maps/map_files/LV624/standalone/lv-bridge-east.dmm index 62df758ef0df..09f938cadc91 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-east.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-east.dmm @@ -5,25 +5,16 @@ "ac" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/barrens/central_barrens) "ad" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/barrens/central_barrens) "ae" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/barrens/central_barrens) "af" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -50,16 +41,10 @@ "al" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "am" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "ao" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -80,10 +65,7 @@ "au" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "av" = ( /obj/effect/landmark/crap_item, @@ -128,10 +110,7 @@ /area/lv624/ground/river/central_river) "aO" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/central_river) "aQ" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -148,17 +127,11 @@ /turf/open/gm/dirt, /area/lv624/ground/river/central_river) "aW" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "aX" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/central_river) "aZ" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -254,10 +227,7 @@ /area/lv624/ground/river/central_river) "Bv" = ( /obj/effect/landmark/good_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "BA" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -272,10 +242,7 @@ /area/lv624/ground/jungle/north_jungle) "GU" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "Hi" = ( /obj/structure/flora/jungle/plantbot1, @@ -313,10 +280,7 @@ /area/lv624/ground/river/central_river) "XY" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "YA" = ( /obj/structure/flora/jungle/plantbot1, @@ -324,10 +288,7 @@ /area/lv624/ground/river/central_river) "YL" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm index 1b9b8a9408b8..d715a9e30fcf 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm @@ -4,52 +4,31 @@ /area/lv624/ground/river/central_river) "ab" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/river/central_river) "ac" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) "ad" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/river/central_river) "ae" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "af" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "ag" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/central_river) "ah" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/central_river) "ai" = ( /turf/open/gm/dirt, @@ -62,20 +41,14 @@ /area/lv624/ground/jungle/north_jungle) "al" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "dC" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/central_river) "iW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "jr" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -97,10 +70,7 @@ /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) "lY" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "mq" = ( /obj/structure/machinery/colony_floodlight, @@ -129,10 +99,7 @@ "qL" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "xB" = ( /obj/effect/landmark/crap_item, @@ -146,16 +113,10 @@ /area/lv624/ground/jungle/north_jungle) "BW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "DX" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "EG" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -167,10 +128,7 @@ "Uh" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "VN" = ( /turf/open/gm/grass/grass1, @@ -179,10 +137,7 @@ /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) "Yw" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/rightsidepass.dmm b/maps/map_files/LV624/standalone/rightsidepass.dmm index 944be98dfbe7..e7ce416997f0 100644 --- a/maps/map_files/LV624/standalone/rightsidepass.dmm +++ b/maps/map_files/LV624/standalone/rightsidepass.dmm @@ -96,25 +96,19 @@ /area/lv624/ground/jungle/east_jungle) "tn" = ( /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) "tJ" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "tN" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "tT" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "ww" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/river/east_river) "zT" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -202,9 +196,7 @@ /turf/open/gm/dirt, /area/lv624/ground/river/east_river) "PZ" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/jungle/east_jungle) "Qb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -225,9 +217,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) "Wq" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "WK" = ( /obj/structure/flora/bush/ausbushes/reedbush, diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index 770d6a93473e..724344cd0743 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -244,12 +244,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"Wp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "WQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -415,7 +409,7 @@ LW DF oD oD -Wp +cP uj uj WQ diff --git a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm index 90b9f293b9f8..f31ebd3d2995 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm @@ -12,16 +12,11 @@ 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) "d" = ( /obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "e" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -31,9 +26,7 @@ name = "\improper Armory Vault"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "i" = ( /obj/structure/surface/rack, @@ -54,10 +47,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "j" = ( /turf/closed/wall, @@ -74,10 +64,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "p" = ( /turf/open/gm/dirt, @@ -95,29 +82,20 @@ /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "t" = ( /obj/item/tool/pickaxe, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "v" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "x" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/fp9000, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "y" = ( /obj/structure/surface/table/reinforced/prison, @@ -128,10 +106,7 @@ /obj/item/explosive/grenade/high_explosive/stick{ pixel_x = -6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "z" = ( /obj/structure/surface/rack, @@ -142,10 +117,7 @@ pixel_y = -3 }, /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) "B" = ( /obj/structure/closet/crate, @@ -156,9 +128,7 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "F" = ( /obj/structure/surface/table/reinforced/prison, @@ -166,9 +136,7 @@ /obj/item/weapon/gun/smg/nailgun, /obj/item/ammo_box/magazine/nailgun, /obj/item/ammo_box/magazine/nailgun, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "G" = ( /obj/structure/surface/rack, @@ -178,10 +146,7 @@ /obj/item/weapon/gun/smg/mp27{ pixel_y = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "I" = ( /obj/structure/machinery/light{ @@ -200,27 +165,20 @@ /obj/item/ammo_magazine/smg/mac15{ pixel_x = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "K" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "N" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "O" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "P" = ( /obj/structure/surface/rack, @@ -228,20 +186,14 @@ /obj/item/weapon/gun/smg/mac15{ pixel_y = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "Q" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/diamond{ amount = 2 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "T" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -250,18 +202,13 @@ name = "\improper Armory Vault"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "U" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/lmg, /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) "V" = ( /obj/structure/surface/rack, @@ -271,10 +218,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) "X" = ( /obj/effect/alien/weeds/node, @@ -290,10 +234,7 @@ }, /obj/effect/landmark/crap_item, /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) (1,1,1) = {" diff --git a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm index c76947ab37e8..c8363f1720ab 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm @@ -8,18 +8,14 @@ amount = 50 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "e" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/largecrate/supply, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "f" = ( /turf/closed/wall, @@ -29,9 +25,7 @@ /obj/item/stack/sheet/mineral/diamond{ amount = 2 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "l" = ( /obj/effect/landmark/crap_item, @@ -52,9 +46,7 @@ /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "p" = ( /obj/structure/surface/rack, @@ -62,16 +54,11 @@ amount = 20 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "q" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "r" = ( /obj/effect/landmark/crap_item, @@ -81,16 +68,12 @@ /obj/structure/surface/rack, /obj/item/tool/pickaxe, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "t" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "y" = ( /obj/structure/surface/rack, @@ -103,43 +86,30 @@ amount = 30 }, /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) "C" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/platinum{ pixel_x = -6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "D" = ( /obj/structure/largecrate/supply, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "G" = ( /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) "H" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "I" = ( /obj/structure/surface/rack, @@ -149,10 +119,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) "M" = ( /obj/structure/surface/rack, @@ -160,9 +127,7 @@ amount = 5 }, /obj/item/tool/pickaxe/diamond, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "N" = ( /obj/effect/alien/weeds/node, @@ -180,10 +145,7 @@ pixel_y = 6 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "U" = ( /obj/structure/closet/crate, @@ -194,9 +156,7 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "V" = ( /obj/structure/machinery/light{ @@ -208,9 +168,7 @@ amount = 5 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "X" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -219,14 +177,10 @@ 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) "Z" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) (1,1,1) = {" diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index 6e4bfd4c3d1e..42e94f253587 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -17,9 +17,7 @@ "aaA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -32,18 +30,12 @@ dir = 4 }, /mob/living/simple_animal/mouse, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "abl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "abu" = ( /obj/item/stack/sheet/wood, @@ -69,9 +61,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "abL" = ( /obj/item/device/flashlight/lamp/tripod, @@ -81,10 +71,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/beakers, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "adw" = ( /turf/closed/wall/r_wall, @@ -98,10 +85,7 @@ /area/varadero/interior/research) "adR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "aer" = ( /obj/structure/platform_decoration/kutjevo{ @@ -118,10 +102,7 @@ /obj/structure/machinery/light, /obj/structure/closet/l3closet/scientist, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "afx" = ( /obj/structure/machinery/light{ @@ -132,16 +113,11 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "afz" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_N) "afR" = ( /obj/effect/decal/warning_stripes{ @@ -150,9 +126,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "agi" = ( /obj/structure/window/reinforced{ @@ -184,18 +158,13 @@ /area/varadero/interior/hall_SE) "agn" = ( /obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "agJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/trackimp, /obj/item/device/binoculars, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -229,27 +198,20 @@ pixel_x = 10; pixel_y = -4 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ahK" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "aiR" = ( /obj/structure/machinery/door/airlock/almayer/security{ name = "\improper Underground Security Evidence Storage"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "akd" = ( /obj/structure/closet/secure_closet/freezer/fridge, @@ -257,22 +219,16 @@ pixel_y = 24 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "akf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "akg" = ( /obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/monsoon) "akk" = ( /obj/structure/surface/table/woodentable, @@ -294,18 +250,14 @@ /area/varadero/interior_protected/vessel) "akO" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "ald" = ( /obj/structure/pipes/unary/freezer{ dir = 8; icon_state = "freezer_1" }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "alh" = ( /obj/structure/filingcabinet{ @@ -345,27 +297,21 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "alL" = ( /obj/structure/prop/structure_lattice{ dir = 1; health = 300 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "alM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "ami" = ( /obj/structure/prop/dam/crane/damaged{ @@ -376,10 +322,7 @@ /area/varadero/interior_protected/caves/digsite) "ani" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/technical_storage) "anu" = ( /obj/structure/disposalpipe/junction{ @@ -389,9 +332,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "anA" = ( /obj/effect/decal/cleanable/dirt, @@ -401,9 +342,7 @@ /area/varadero/interior/beach_bar) "aoi" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "aoo" = ( /obj/structure/prop/structure_lattice{ @@ -412,9 +351,7 @@ icon_state = "book-5"; name = "book case" }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "aoC" = ( /turf/closed/wall/rock/brown, @@ -440,10 +377,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "apG" = ( /obj/structure/blocker/invisible_wall/water, @@ -452,9 +386,7 @@ /area/varadero/exterior/farocean) "apH" = ( /obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "apI" = ( /obj/structure/machinery/computer/cameras/telescreen{ @@ -465,28 +397,20 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "apY" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "aqb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "aqh" = ( /obj/structure/flora/bush/desert{ @@ -498,16 +422,11 @@ pixel_x = -17; pixel_y = -19 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "aqk" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "aqq" = ( /obj/structure/prop/rock/brown, @@ -521,26 +440,18 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) "arg" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "arC" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "arF" = ( /obj/structure/closet/crate/trashcart, @@ -555,27 +466,18 @@ /obj/structure/bed/chair/hunter{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "asx" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "atz" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) "atM" = ( /obj/structure/prop/mech/drill, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "aud" = ( /obj/structure/sink{ @@ -585,19 +487,14 @@ pixel_y = 28 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "auE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_NW) "avl" = ( /obj/structure/disposalpipe/junction{ @@ -605,16 +502,11 @@ icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "avy" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/administration) "avD" = ( /turf/closed/wall/huntership, @@ -634,16 +526,12 @@ /area/varadero/exterior/comms4) "awr" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/lz1_near) "awu" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "awJ" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -653,18 +541,14 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "axs" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "axv" = ( /obj/structure/platform/kutjevo/smooth{ @@ -674,10 +558,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "axY" = ( /obj/structure/bed/chair/comfy/lime, @@ -689,17 +570,11 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "ayx" = ( -/obj/structure/prop/power_transformer{ - dir = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -707,10 +582,7 @@ /area/varadero/exterior/lz2_near) "azh" = ( /obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "azr" = ( /obj/structure/platform/kutjevo/smooth{ @@ -724,32 +596,22 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "azv" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "azw" = ( /obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "azK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) "aAg" = ( /obj/structure/machinery/disposal, @@ -763,9 +625,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "aAr" = ( /obj/structure/platform/kutjevo/smooth{ @@ -783,19 +643,13 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "aAC" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "aAX" = ( /obj/docking_port/stationary/marine_dropship/lz2{ @@ -807,29 +661,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "aBp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "aBz" = ( /obj/item/stack/cable_coil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "aBB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ @@ -845,9 +691,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/disposals) "aBY" = ( /obj/structure/barricade/handrail{ @@ -861,10 +705,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "aCd" = ( /obj/structure/barricade/handrail/wire{ @@ -874,10 +715,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "aCl" = ( /obj/structure/machinery/door/airlock/strata/autoname{ @@ -887,22 +725,15 @@ locked = 1; name = "\improper Engine Room" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "aCo" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "aCz" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "aCH" = ( /obj/structure/bed/chair/wheelchair{ @@ -912,9 +743,7 @@ name = "Dr. O's fantastic self rolling wheelie chair"; pixel_x = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "aCW" = ( /obj/effect/overlay/palmtree_r{ @@ -926,19 +755,14 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "aCY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "aDu" = ( /obj/structure/machinery/power/apc{ @@ -946,18 +770,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "aDF" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "aDQ" = ( /obj/structure/filingcabinet{ @@ -979,16 +798,12 @@ /area/varadero/interior/administration) "aDZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "aEf" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "aEg" = ( /obj/effect/decal/cleanable/blood{ @@ -1000,16 +815,11 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "aEi" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "aED" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -1017,19 +827,14 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "aEQ" = ( /obj/structure/shuttle/engine/router{ dir = 4; unacidable = 0 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1052,24 +857,18 @@ pixel_x = 6; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) "aFu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "aFK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "aFM" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -1080,19 +879,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "aFX" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/east, /area/varadero/interior/hall_SE) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -1112,10 +906,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "aHs" = ( /obj/structure/surface/table/reinforced/prison, @@ -1131,9 +922,7 @@ /turf/open/floor/wood, /area/varadero/interior/research) "aHu" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "aHw" = ( /obj/structure/prop/structure_lattice{ @@ -1145,16 +934,11 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "aHy" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "aHM" = ( /obj/structure/machinery/firealarm{ @@ -1166,17 +950,13 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "aIq" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "aJc" = ( /obj/structure/pipes/vents/pump{ @@ -1195,9 +975,7 @@ pixel_x = 5; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) "aJp" = ( /obj/effect/decal/cleanable/blood{ @@ -1215,9 +993,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "aJD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1240,10 +1016,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1257,9 +1030,7 @@ /area/varadero/interior/hall_SE) "aJI" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "aJP" = ( /obj/structure/bed/chair/wood/normal, @@ -1267,10 +1038,7 @@ /area/varadero/interior/library) "aJW" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "aKk" = ( /obj/structure/machinery/light/small{ @@ -1281,9 +1049,7 @@ pixel_x = -5; pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "aKJ" = ( /obj/item/tool/warning_cone, @@ -1295,27 +1061,18 @@ /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "aLc" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/varadero/interior/disposals) "aLl" = ( -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/varadero/interior/medical) "aLn" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "aMp" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, @@ -1326,9 +1083,7 @@ dir = 1 }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "aOg" = ( /turf/open/gm/grass/grass1/weedable, @@ -1349,26 +1104,19 @@ /area/varadero/interior/hall_SE) "aPQ" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "aPU" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "aQc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, @@ -1379,41 +1127,28 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "aQG" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/morgue) "aQN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "aQR" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "aQY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "aRr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "aRL" = ( /obj/structure/surface/table/reinforced/prison, @@ -1429,9 +1164,7 @@ pixel_x = 2; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, @@ -1455,15 +1188,11 @@ /area/varadero/interior/maintenance/north) "aTg" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "aTh" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "aTC" = ( /obj/item/reagent_container/food/snacks/eat_bar{ @@ -1474,25 +1203,18 @@ pixel_x = -5; pixel_y = -9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "aTS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "aTY" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "aUA" = ( /obj/structure/prop/rock/brown, @@ -1518,9 +1240,7 @@ /obj/structure/mirror{ pixel_x = -32 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "aVs" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ @@ -1529,10 +1249,7 @@ name = "Pontoon South Door"; openspeed = 17 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/varadero/interior/maintenance/north) "aVt" = ( /obj/structure/prop/structure_lattice{ @@ -1544,9 +1261,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "aVF" = ( /obj/structure/surface/table/reinforced/prison, @@ -1558,10 +1273,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "aVQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -1569,16 +1281,10 @@ /area/varadero/interior/hall_N) "aWA" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "aWP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/varadero/interior/hall_SE) "aXb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -1588,9 +1294,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "aXn" = ( /obj/structure/prop/rock/brown, @@ -1600,25 +1304,18 @@ /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "aXt" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "aXz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "aXA" = ( /obj/structure/largecrate/supply/medicine/iv, @@ -1634,10 +1331,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "aZb" = ( /obj/structure/bedsheetbin{ @@ -1647,9 +1341,7 @@ pixel_x = -2; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "aZq" = ( /obj/structure/window/reinforced{ @@ -1671,10 +1363,7 @@ pixel_y = 13 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) "aZv" = ( /obj/structure/bed/chair{ @@ -1684,28 +1373,21 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "aZX" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/comms3) "baa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bag" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "bah" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1715,10 +1397,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "bak" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -1726,9 +1405,7 @@ pixel_x = -14; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "baH" = ( /obj/structure/surface/rack, @@ -1736,18 +1413,13 @@ /obj/item/weapon/gun/shotgun/pump{ pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "baN" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/close, /obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "bbt" = ( /obj/effect/landmark/hunter_primary, @@ -1763,10 +1435,7 @@ /area/varadero/exterior/lz2_near) "bbW" = ( /obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) "bcg" = ( /obj/structure/surface/rack, @@ -1775,17 +1444,11 @@ health = 80 }, /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "bcD" = ( /obj/item/tool/wet_sign, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "bdc" = ( /obj/item/stack/tile/plasteel{ @@ -1793,9 +1456,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -1808,9 +1469,7 @@ name = "\improper Underground Security Custodial Closet"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "ben" = ( /obj/structure/filingcabinet{ @@ -1839,16 +1498,12 @@ }, /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "beE" = ( /obj/item/device/taperecorder, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -1859,10 +1514,7 @@ }, /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "bfg" = ( /obj/structure/surface/table, @@ -1882,34 +1534,23 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "bft" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "bfX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/colonist, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "bgh" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/varadero/interior/maintenance/north) "bgl" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "bgE" = ( /turf/closed/wall/r_wall, @@ -1936,9 +1577,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "bio" = ( /obj/structure/surface/table/woodentable, @@ -1952,9 +1591,7 @@ pixel_x = -4; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "biF" = ( /obj/structure/surface/table/reinforced/prison, @@ -1965,10 +1602,7 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "biS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1990,17 +1624,11 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "bjA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -2009,9 +1637,7 @@ "bjP" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "bko" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -2026,9 +1652,7 @@ name = "Underground Morgue"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/varadero/interior/morgue) "bkG" = ( /obj/structure/surface/table/reinforced/prison, @@ -2039,9 +1663,7 @@ /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "bkM" = ( /turf/closed/wall, @@ -2057,10 +1679,7 @@ health = 80 }, /obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "bmI" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -2072,9 +1691,7 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "bnc" = ( /obj/structure/surface/table, @@ -2089,23 +1706,16 @@ pixel_x = 8; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bnf" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "bng" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bnm" = ( /turf/closed/wall/rock/brown, @@ -2119,9 +1729,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bnH" = ( /obj/structure/prop/dam/truck/damaged, @@ -2129,34 +1737,25 @@ /area/varadero/exterior/lz2_near) "boI" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/varadero/interior/dock_control) "boV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "bpH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "bpI" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2180,16 +1779,11 @@ pixel_x = -15; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "brM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "brT" = ( /turf/closed/wall/huntership/destructible, @@ -2205,9 +1799,7 @@ /area/varadero/interior_protected/caves/digsite) "bst" = ( /obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bte" = ( /obj/structure/closet/crate/radiation, @@ -2246,16 +1838,11 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "buH" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "bvE" = ( /obj/structure/machinery/power/apc{ @@ -2263,9 +1850,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "bvF" = ( /obj/structure/flora/bush/desert{ @@ -2282,26 +1867,17 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "bwz" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "bwP" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "bxc" = ( /obj/structure/surface/table/reinforced/prison, @@ -2310,16 +1886,11 @@ }, /obj/effect/spawner/random/powercell, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "bxx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bye" = ( /obj/structure/stairs/perspective{ @@ -2327,10 +1898,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "byl" = ( /obj/structure/surface/table/reinforced/prison, @@ -2357,9 +1925,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "bys" = ( /obj/structure/platform_decoration/kutjevo{ @@ -2374,10 +1940,7 @@ /area/varadero/interior_protected/caves/digsite) "byC" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/eastocean) "byF" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2389,31 +1952,20 @@ /area/varadero/exterior/farocean) "byU" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "bzf" = ( /obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/maintenance) "bzn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "bzq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2431,9 +1983,7 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "bAE" = ( /obj/structure/window/reinforced{ @@ -2472,9 +2022,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "bBt" = ( /obj/structure/cable/heavyduty{ @@ -2495,24 +2043,17 @@ "bBV" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "bCi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/research) "bCA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "bCM" = ( /obj/structure/platform_decoration/kutjevo, @@ -2527,26 +2068,18 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "bDs" = ( /obj/item/weapon/gun/flare{ current_mag = null }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "bEj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "bEX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2555,9 +2088,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/comms3) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2579,9 +2110,7 @@ pixel_y = 17 }, /obj/structure/machinery/recharger, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "bFo" = ( /obj/structure/surface/table, @@ -2595,18 +2124,14 @@ pixel_x = 3; pixel_y = 17 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "bFV" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "bGe" = ( /obj/item/stool{ @@ -2614,20 +2139,13 @@ pixel_y = -6 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "bGy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "bGz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/hall_SE) "bGC" = ( /obj/structure/sign/safety/restrictedarea, @@ -2643,9 +2161,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "bIt" = ( /turf/closed/wall, @@ -2662,10 +2178,7 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "bJH" = ( /obj/item/tool/warning_cone, @@ -2683,10 +2196,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "bLl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2709,10 +2219,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ @@ -2721,9 +2228,7 @@ /turf/open/floor/wood, /area/varadero/interior/administration) "bLy" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/mess) "bLB" = ( /obj/structure/window/framed/colony, @@ -2737,16 +2242,10 @@ /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "HotlineAlt" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/administration) "bLN" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "bLV" = ( /obj/item/lightstick/variant/planted, @@ -2764,9 +2263,7 @@ /area/varadero/interior/records) "bMk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "bMx" = ( /obj/structure/largecrate/random/case/double, @@ -2775,53 +2272,38 @@ "bMG" = ( /obj/structure/closet/crate/ammo/alt, /obj/item/trash/ceramic_plate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "bMV" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) "bNi" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "bNt" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/item/clothing/suit/storage/bomber, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "bNC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) "bNN" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /obj/item/prop/almayer/comp_open, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "bOO" = ( /obj/structure/machinery/disposal, @@ -2829,9 +2311,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "bPe" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2840,41 +2320,28 @@ layer = 2.99 }, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "bPk" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "bPl" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "bPm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/hall_SE) "bPx" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "bPF" = ( /obj/structure/window/reinforced{ @@ -2889,10 +2356,7 @@ color = "#6b675e" }, /obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "bPG" = ( /obj/structure/surface/table/woodentable, @@ -2901,26 +2365,19 @@ 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/varadero/interior/chapel) "bPL" = ( /obj/item/restraint/handcuffs{ pixel_x = 2; pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "bQa" = ( /obj/structure/catwalk, /obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "bQH" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -2928,9 +2385,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2943,17 +2398,13 @@ /area/varadero/interior/disposals) "bRo" = ( /obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "bRQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2964,9 +2415,7 @@ "bSd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "bSj" = ( /obj/structure/platform_decoration/kutjevo{ @@ -2988,9 +2437,7 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "bSQ" = ( /obj/item/tool/warning_cone, @@ -3007,17 +2454,12 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "bTm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "bTA" = ( /obj/structure/disposalpipe/segment, @@ -3028,35 +2470,24 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "bUg" = ( /obj/structure/machinery/microwave{ pixel_y = 9 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "bUK" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) "bUP" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) "bUR" = ( /obj/structure/surface/table/reinforced/prison, @@ -3065,10 +2496,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -3089,23 +2517,16 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "bVu" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "bVI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/court) "bVQ" = ( /obj/structure/stairs/perspective{ @@ -3121,9 +2542,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "bVS" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz1_near) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -3133,9 +2552,7 @@ /obj/item/stack/sheet/plasteel/medium_stack, /obj/item/trash/crushed_cup, /obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "bYO" = ( /obj/item/tool/shovel/spade, @@ -3156,9 +2573,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/maintenance/research) "bZv" = ( /obj/structure/machinery/storm_siren{ @@ -3168,16 +2583,10 @@ /area/varadero/exterior/lz1_near) "bZA" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "bZI" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/hall_SE) "bZU" = ( /turf/open/floor/plating/icefloor, @@ -3200,16 +2609,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "cba" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "cbe" = ( /obj/structure/filingcabinet{ @@ -3224,23 +2628,16 @@ pixel_x = -11; pixel_y = 20 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "cbg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "cbq" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "cbv" = ( /obj/structure/surface/table, @@ -3252,17 +2649,11 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "cbI" = ( -/obj/item/cpr_dummy{ - dir = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/obj/item/cpr_dummy, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -3289,29 +2680,21 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) "cdc" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "cdy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "cdL" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -3322,10 +2705,7 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "cdS" = ( /obj/effect/decal/cleanable/blood, @@ -3339,9 +2719,7 @@ /area/varadero/exterior/eastbeach) "ceo" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "ceJ" = ( /obj/item/storage/fancy/candle_box, @@ -3353,33 +2731,24 @@ pixel_x = -3; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "cfs" = ( /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "cgb" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "cgj" = ( /obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -3392,19 +2761,14 @@ /obj/structure/machinery/floodlight/landing/floor{ pixel_x = -1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "che" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "chr" = ( /obj/structure/bed/stool{ @@ -3422,9 +2786,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ @@ -3437,56 +2799,40 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "cic" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "cil" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "cit" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "ciu" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) "ciH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "ciR" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "cjf" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; pixel_y = -6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "cjU" = ( /obj/structure/barricade/handrail/wire{ @@ -3494,33 +2840,23 @@ }, /obj/structure/closet/secure_closet/scientist, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "ckx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ckz" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) "ckF" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ckG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -3528,10 +2864,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "ckI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_N) "ckM" = ( /obj/effect/landmark/monkey_spawn, @@ -3542,9 +2875,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "clA" = ( /obj/effect/landmark/objective_landmark/close, @@ -3552,9 +2883,7 @@ /area/varadero/interior/dock_control) "clD" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "clG" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3567,10 +2896,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "clX" = ( /turf/closed/wall/r_wall, @@ -3582,10 +2908,7 @@ pixel_y = 13 }, /obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "cmk" = ( /obj/structure/barricade/handrail/wire{ @@ -3600,10 +2923,7 @@ /obj/item/reagent_container/food/drinks/cans/souto/lime, /obj/item/reagent_container/food/drinks/cans/souto/peach, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "cmr" = ( /obj/item/stack/tile/plasteel{ @@ -3617,10 +2937,7 @@ pixel_y = 7 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "cne" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3631,10 +2948,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "cnv" = ( /obj/structure/closet/crate/ammo/alt, @@ -3648,30 +2962,20 @@ pixel_y = 4; pixel_x = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "cnW" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "coc" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "cog" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "coz" = ( /obj/structure/sign/safety/bulkhead_door, @@ -3679,32 +2983,23 @@ /area/varadero/interior/maintenance/north) "coQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "coX" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "cpA" = ( /obj/structure/morgue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "cpC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "cpF" = ( /obj/structure/barricade/handrail{ @@ -3713,10 +3008,7 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "cql" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3740,10 +3032,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "cqC" = ( /obj/structure/extinguisher_cabinet, @@ -3762,27 +3051,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "csb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "csr" = ( /obj/structure/prop/ice_colony/flamingo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "cto" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "ctw" = ( /obj/structure/flora/pottedplant{ @@ -3793,10 +3074,7 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) "cty" = ( /turf/closed/wall/rock/brown, @@ -3817,10 +3095,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "cuc" = ( /obj/structure/barricade/handrail/wire{ @@ -3830,9 +3105,7 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "cud" = ( /obj/structure/machinery/power/apc{ @@ -3840,17 +3113,12 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/electrical) "cug" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "cur" = ( /obj/structure/surface/rack, @@ -3862,10 +3130,7 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "cvW" = ( /obj/structure/closet/secure_closet/freezer/kitchen, @@ -3877,18 +3142,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "cvX" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "cwe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3901,19 +3161,14 @@ pixel_x = -10; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "cwk" = ( /obj/structure/largecrate/random, /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "cwp" = ( /obj/structure/window/reinforced{ @@ -3928,10 +3183,7 @@ color = "#6b675e" }, /obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "cwE" = ( /turf/closed/wall/rock/brown, @@ -3952,10 +3204,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "cyT" = ( /obj/structure/machinery/light/small, @@ -3964,29 +3213,19 @@ pixel_x = -16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "czA" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "czG" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "cAw" = ( /obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "cAx" = ( /obj/structure/largecrate/random, @@ -3994,9 +3233,7 @@ /area/varadero/interior/records) "cAX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "cBq" = ( /obj/structure/flora/pottedplant{ @@ -4011,10 +3248,7 @@ /area/varadero/interior/caves/north_research) "cBW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "cCk" = ( /obj/structure/machinery/storm_siren{ @@ -4026,28 +3260,21 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "cDm" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -9; pixel_y = 12 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "cDr" = ( /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "cEm" = ( /obj/structure/platform/kutjevo/smooth{ @@ -4058,10 +3285,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "cEu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4073,16 +3297,11 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "cFe" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "cFh" = ( /obj/effect/decal/cleanable/dirt, @@ -4090,9 +3309,7 @@ /area/varadero/exterior/eastocean) "cFu" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "cFw" = ( /turf/open/gm/dirt, @@ -4100,52 +3317,27 @@ "cFz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/interior/caves/east) -"cFK" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) "cFZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "cGc" = ( /obj/item/book/manual/detective, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "cGd" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/mess) "cGx" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -4165,17 +3357,11 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/hall_NW) "cGT" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "cGV" = ( /turf/closed/wall/r_wall/elevator{ @@ -4187,10 +3373,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "cHl" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -4198,9 +3381,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "cHR" = ( /obj/structure/surface/table, @@ -4211,9 +3392,7 @@ pixel_y = 24 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "cHS" = ( /obj/structure/closet/crate/freezer/rations, @@ -4225,9 +3404,7 @@ /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "cHV" = ( /obj/structure/window/phoronreinforced{ @@ -4249,17 +3426,11 @@ /area/varadero/interior_protected/vessel) "cHY" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "cIB" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "cIP" = ( /obj/item/clothing/shoes/snow, @@ -4271,9 +3442,7 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "cJa" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -4282,17 +3451,11 @@ pixel_y = 19 }, /obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "cJL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "cKB" = ( /obj/structure/platform/kutjevo/smooth{ @@ -4300,16 +3463,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "cKC" = ( /obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "cKK" = ( /obj/item/paper/crumpled/bloody, @@ -4318,10 +3476,7 @@ /area/varadero/interior/maintenance/north) "cKZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/varadero/interior/cargo) "cLD" = ( /obj/structure/bed/chair/office/dark{ @@ -4331,10 +3486,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "cLP" = ( /turf/open/space, @@ -4346,16 +3498,11 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "cLX" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "cLY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4366,39 +3513,27 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "cMf" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/court) "cNb" = ( /obj/structure/surface/table, /obj/item/device/binoculars, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "cNh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "cNt" = ( /turf/open/gm/coast/north, /area/varadero/exterior/comms4) "cNu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) "cNA" = ( /obj/structure/surface/table/reinforced/prison, @@ -4426,32 +3561,23 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "cNJ" = ( /obj/structure/closet, /obj/item/device/flashlight/lantern, /obj/item/map/current_map, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "cNT" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "cOj" = ( /obj/item/circuitboard/apc, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ @@ -4462,49 +3588,36 @@ /area/varadero/interior/chapel) "cOK" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/morgue) "cPI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "cPR" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "cQr" = ( /obj/item/tool/crowbar/red{ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "cQu" = ( /obj/structure/prop/turbine_extras/left, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "cRn" = ( /obj/item/prop/alien/hugger, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -4516,9 +3629,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ @@ -4535,17 +3646,13 @@ /area/varadero/interior/chapel) "cTb" = ( /obj/item/device/flashlight/flare, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "cTg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "cTr" = ( /obj/structure/machinery/light{ @@ -4554,23 +3661,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "cTw" = ( /obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "cTV" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "cUE" = ( /obj/structure/surface/table/reinforced/prison{ @@ -4580,10 +3680,7 @@ pixel_x = 16; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "cUF" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -4601,9 +3698,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "cUN" = ( /obj/structure/prop/rock/brown{ @@ -4612,18 +3707,13 @@ name = "sturdy rock(s)"; desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "cUZ" = ( /obj/structure/largecrate/random/case/double{ anchored = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -4639,9 +3729,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "cWs" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -4653,10 +3741,7 @@ dir = 4 }, /obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "cWu" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -4673,9 +3758,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ @@ -4693,9 +3776,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "cYa" = ( /obj/item/storage/firstaid/adv, @@ -4706,20 +3787,14 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "cYr" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, /obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "cYw" = ( /obj/structure/machinery/floodlight/landing{ @@ -4727,15 +3802,11 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "cYB" = ( /obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "cYC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -4747,17 +3818,11 @@ /area/varadero/interior/caves/north_research) "cYZ" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "cZN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/technical_storage) "cZR" = ( /obj/structure/sign/safety/medical, @@ -4767,9 +3832,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "dad" = ( /obj/item/stack/tile/plasteel, @@ -4778,22 +3841,14 @@ "daA" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/court) "daS" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "dbg" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/technical_storage) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -4803,9 +3858,7 @@ /area/varadero/interior/chapel) "dbV" = ( /obj/item/trash/liquidfood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "dcM" = ( /obj/item/ammo_magazine/revolver/cmb, @@ -4836,9 +3889,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "ded" = ( /obj/structure/surface/table/reinforced/prison, @@ -4846,9 +3897,7 @@ pixel_y = 9 }, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "deg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -4877,10 +3926,7 @@ /area/varadero/exterior/eastbeach) "deX" = ( /obj/item/trash/boonie, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "dfs" = ( /obj/item/storage/belt/utility, @@ -4895,41 +3941,30 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "dfP" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ pixel_y = 32 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "dgq" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) "dgF" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "dgP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/varadero/interior/disposals) "dgY" = ( /obj/structure/prop/rock/brown, @@ -4940,9 +3975,7 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "dhQ" = ( /obj/effect/decal/cleanable/blood, @@ -4952,18 +3985,13 @@ /area/varadero/interior/chapel) "dhV" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "dir" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "diu" = ( /obj/structure/bed/chair/comfy{ @@ -4984,9 +4012,7 @@ dir = 4; pixel_x = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "diK" = ( /obj/structure/machinery/power/apc{ @@ -5022,37 +4048,26 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "diW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners/north, /area/varadero/interior/security) "djb" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "djh" = ( /obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "djC" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "djH" = ( /obj/structure/pipes/vents/pump, @@ -5067,24 +4082,17 @@ /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) "dkl" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "dkr" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/research) "dkC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -5096,9 +4104,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -5113,18 +4119,13 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "dlv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "dlD" = ( /obj/structure/prop/rock/brown_degree, @@ -5140,10 +4141,7 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "dmR" = ( /obj/structure/surface/rack, @@ -5154,9 +4152,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "dnh" = ( /obj/structure/machinery/shower{ @@ -5169,45 +4165,31 @@ icon_state = "road_edge_decal3"; pixel_y = 16 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/court) "dnU" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "dnV" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "dnW" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "doa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "dob" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "dos" = ( /obj/item/clothing/head/helmet, @@ -5223,9 +4205,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "doP" = ( /obj/structure/prop/rock/brown, @@ -5246,18 +4226,13 @@ name = "\improper Underground Security Brig"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "dpO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/evidencebag, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -5266,10 +4241,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/varadero/interior/cargo) "dqx" = ( /obj/structure/cargo_container/wy/right, @@ -5280,18 +4252,14 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "drK" = ( /obj/structure/bed/chair{ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -5299,10 +4267,7 @@ /area/varadero/interior_protected/caves/digsite) "dss" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "dsz" = ( /obj/structure/filingcabinet{ @@ -5318,19 +4283,14 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "dsC" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "dtj" = ( /obj/structure/sign/poster/propaganda, @@ -5387,46 +4347,30 @@ pixel_x = -13; pixel_y = 12 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_N) "dvT" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/eastbeach) "dwN" = ( /obj/item/tool/wet_sign, /obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "dwP" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "dxn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "dxt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/maintenance) "dxK" = ( /obj/structure/prop/rock/brown, @@ -5434,9 +4378,7 @@ /area/varadero/interior/caves/north_research) "dyl" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ @@ -5465,25 +4407,17 @@ pixel_x = 3; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "dBA" = ( /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ pixel_x = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "dBB" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "dCz" = ( /obj/structure/surface/table/reinforced/prison, @@ -5495,15 +4429,10 @@ dir = 8; health = 80 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) "dCE" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "dDn" = ( /obj/item/shard{ @@ -5524,9 +4453,7 @@ "dEo" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -5539,9 +4466,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, @@ -5574,9 +4499,7 @@ "dGh" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "dGr" = ( /turf/closed/shuttle{ @@ -5594,16 +4517,11 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "dHD" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -5645,19 +4563,14 @@ /area/varadero/interior_protected/caves/digsite) "dID" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "dIK" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "dJI" = ( /obj/structure/surface/rack, @@ -5665,9 +4578,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, @@ -5676,10 +4587,7 @@ /area/varadero/exterior/lz2_near) "dKc" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/hall_N) "dKy" = ( /obj/structure/closet/crate/freezer/cooler/oj, @@ -5690,9 +4598,7 @@ /obj/item/reagent_container/food/drinks/cans/souto/grape, /obj/item/reagent_container/food/drinks/cans/souto/lime, /obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "dLN" = ( /obj/structure/flora/pottedplant{ @@ -5703,17 +4609,13 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) "dLP" = ( /obj/item/stool{ icon_state = "stool_alt" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) "dMm" = ( /obj/structure/window/reinforced{ @@ -5722,10 +4624,7 @@ }, /obj/structure/surface/rack, /obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "dNh" = ( /obj/structure/stairs/perspective{ @@ -5733,23 +4632,17 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "dNt" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "dNU" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "dNW" = ( /obj/structure/machinery/light{ @@ -5770,9 +4663,7 @@ /obj/item/facepaint/lipstick/jade{ pixel_x = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "dNY" = ( /obj/structure/window/reinforced/tinted{ @@ -5782,16 +4673,11 @@ /obj/item/device/flashlight/lamp/green{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "dNZ" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves/central) "dOk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5801,9 +4687,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "dOl" = ( /obj/item/prop/colony/used_flare, @@ -5814,9 +4698,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "dOS" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/pontoon_beach) "dPR" = ( /obj/item/reagent_container/glass/bucket, @@ -5826,50 +4708,31 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "dQl" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "dQr" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "dQK" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "dQT" = ( /obj/structure/bed/chair/comfy/teal, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "dRs" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "dRI" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "dRX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5880,15 +4743,11 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "dSs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "dSA" = ( /obj/structure/prop/structure_lattice{ @@ -5900,22 +4759,16 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "dTe" = ( /obj/item/stack/cable_coil/random, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "dTl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "dTu" = ( /obj/structure/blocker/invisible_wall/water, @@ -5924,10 +4777,7 @@ /area/varadero/exterior/farocean) "dTC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -5937,38 +4787,26 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "dUh" = ( /obj/structure/morgue, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/morgue) "dUA" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "dUL" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "dUS" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "dVq" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5978,24 +4816,16 @@ req_one_access = null; req_access = null }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "dWl" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "dWE" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/administration) "dWH" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6005,10 +4835,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, @@ -6051,9 +4878,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "dYp" = ( /obj/item/book/manual/hydroponics_beekeeping, @@ -6067,27 +4892,19 @@ }, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "dYy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "dYW" = ( /obj/item/reagent_container/glass/bucket/mopbucket{ pixel_x = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "dYX" = ( /obj/structure/machinery/light, @@ -6097,9 +4914,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "eat" = ( /obj/structure/platform_decoration/kutjevo{ @@ -6133,9 +4948,7 @@ /area/varadero/interior/hall_N) "eaQ" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ebi" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -6158,9 +4971,7 @@ }, /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "ebJ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -6177,28 +4988,20 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "ebN" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "ecb" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "ecX" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -6206,10 +5009,7 @@ /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) "edu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/maintenance) "edD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6222,31 +5022,21 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "eea" = ( /obj/vehicle/train/cargo/engine{ dir = 2 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "eeg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/technical_storage) "efw" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "efy" = ( /turf/closed/wall/rock/brown, @@ -6255,10 +5045,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "egj" = ( /obj/effect/landmark/hunter_secondary, @@ -6269,9 +5056,7 @@ /obj/structure/noticeboard{ pixel_y = -32 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/varadero/interior/hall_N) "egH" = ( /obj/structure/prop/structure_lattice{ @@ -6283,9 +5068,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "egJ" = ( /obj/structure/surface/table, @@ -6294,10 +5077,7 @@ pixel_y = 11 }, /obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/technical_storage) "egV" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot, @@ -6313,19 +5093,14 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "ehD" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "ehH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6336,9 +5111,7 @@ pixel_x = -16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "ehM" = ( /obj/structure/stairs/perspective{ @@ -6376,9 +5149,7 @@ /area/varadero/exterior/lz2_near) "eij" = ( /obj/structure/bed, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "eiK" = ( /obj/structure/prop/rock/brown, @@ -6402,9 +5173,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "ejM" = ( /turf/open/gm/coast/north, @@ -6417,17 +5186,12 @@ req_one_access = null; req_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ekg" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/comms3) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6443,10 +5207,7 @@ /area/varadero/exterior/monsoon) "ekO" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "elI" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -6454,14 +5215,10 @@ "elO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "elP" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/monsoon) "emt" = ( /obj/structure/tunnel{ @@ -6472,9 +5229,7 @@ "emC" = ( /obj/structure/surface/rack, /obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "emP" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -6484,22 +5239,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "enH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "enU" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) "enZ" = ( /obj/structure/blocker/invisible_wall/water, @@ -6517,9 +5264,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "eov" = ( /turf/open/gm/dirt, @@ -6530,9 +5275,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "eoV" = ( /obj/structure/prop/resin_prop, @@ -6551,9 +5294,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "epQ" = ( /turf/closed/wall, @@ -6564,9 +5305,7 @@ name = "\improper Underground Technical Storage"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "eqe" = ( /obj/structure/surface/table/reinforced/prison, @@ -6582,10 +5321,7 @@ pixel_x = 7; pixel_y = -7 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6599,29 +5335,21 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "eqB" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "eqT" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz2_near) "erE" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "erK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -6629,9 +5357,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "erQ" = ( /obj/effect/overlay/palmtree_r, @@ -6639,18 +5365,13 @@ /area/varadero/exterior/monsoon) "esw" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "esz" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/shotgun, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) "esA" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -6659,18 +5380,12 @@ /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "esB" = ( /obj/structure/closet/radiation, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "esK" = ( /obj/effect/decal/warning_stripes{ @@ -6681,33 +5396,25 @@ /area/varadero/interior_protected/caves/digsite) "esM" = ( /obj/structure/target/syndicate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "esO" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "etf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Main Hallway" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "etv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "etE" = ( /obj/structure/filingcabinet{ @@ -6737,17 +5444,11 @@ /obj/structure/surface/rack, /obj/item/tool/crowbar/red, /obj/item/tank/emergency_oxygen, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "euM" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) "euS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6764,38 +5465,26 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "evW" = ( /obj/item/lightstick/variant/planted, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "evX" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ewv" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "ewS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -6811,17 +5500,11 @@ "exH" = ( /obj/item/device/defibrillator, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "exX" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "eye" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6829,9 +5512,7 @@ }, /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "eyt" = ( /turf/closed/wall/rock/brown, @@ -6854,10 +5535,7 @@ pixel_x = -14; pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "ezd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -6867,14 +5545,10 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "ezt" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "ezx" = ( /obj/structure/prop/structure_lattice{ @@ -6894,17 +5568,13 @@ /obj/structure/sign/safety/water{ pixel_x = 15 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "ezI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "ezU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6925,19 +5595,14 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "ezZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "eAG" = ( /obj/structure/disposalpipe/segment{ @@ -6947,26 +5612,20 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "eAJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "eBf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "eBm" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6983,10 +5642,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "eBs" = ( /turf/closed/wall/r_wall/elevator{ @@ -6997,33 +5653,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "eBL" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "eBS" = ( /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "eBT" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cup{ pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "eCg" = ( /obj/item/tool/warning_cone, @@ -7031,9 +5678,7 @@ /area/varadero/exterior/pontoon_beach) "eCj" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/varadero/interior/dock_control) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -7052,10 +5697,7 @@ indestructible = 1; unacidable = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "eDF" = ( /obj/structure/bed/stool{ @@ -7077,10 +5719,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -7103,26 +5742,20 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "eFJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "eFW" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "eGd" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "eGq" = ( /obj/item/reagent_container/food/snacks/eat_bar, @@ -7130,17 +5763,13 @@ pixel_x = -4; pixel_y = -7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "eGL" = ( /obj/item/stack/sheet/plasteel{ amount = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "eGP" = ( /obj/structure/closet/cabinet, @@ -7168,10 +5797,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "eHZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -7179,10 +5805,7 @@ /area/varadero/interior_protected/caves/central) "eIr" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "eIT" = ( /obj/structure/surface/table/reinforced/prison, @@ -7195,16 +5818,10 @@ pixel_y = 5 }, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "eIV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) "eJI" = ( /obj/structure/barricade/handrail/wire{ @@ -7219,9 +5836,7 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "eJN" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -7232,27 +5847,20 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "eJS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "eKw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "eKF" = ( /obj/structure/bed/chair{ @@ -7260,9 +5868,7 @@ icon_state = "chair_alt"; pixel_y = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "eKL" = ( /obj/effect/overlay/palmtree_r{ @@ -7286,9 +5892,7 @@ pixel_y = 6 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "eLZ" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -7299,10 +5903,7 @@ pixel_x = -1; pixel_y = 12 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7330,10 +5931,7 @@ /area/varadero/interior/court) "eMD" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "eNk" = ( /obj/item/toy/sword, @@ -7356,19 +5954,14 @@ /obj/structure/machinery/optable, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "eOu" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("interrogation") }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "eOv" = ( /obj/item/circuitboard/airlock, @@ -7378,18 +5971,13 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "ePb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "ePz" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -7401,9 +5989,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "eQa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -7414,9 +6000,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "eQm" = ( /obj/structure/window/framed/wood, @@ -7428,17 +6012,12 @@ pixel_y = 5 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "eQz" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "eQC" = ( /obj/structure/largecrate/supply/supplies/water, @@ -7452,17 +6031,13 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "eQZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "eRD" = ( /obj/structure/pipes/vents/pump, @@ -7477,25 +6052,19 @@ "eRM" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "eRO" = ( /obj/structure/prop/souto_land/streamer{ dir = 1; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "eRQ" = ( /obj/item/tool/screwdriver, /obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "eSg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7504,17 +6073,12 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "eSo" = ( /obj/structure/closet/crate/construction, /obj/item/tool/extinguisher, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "eTb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7528,9 +6092,7 @@ "eTi" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "eTP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7544,19 +6106,13 @@ /turf/open/floor/wood, /area/varadero/interior/court) "eUh" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) "eUv" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "eUH" = ( /obj/structure/disposalpipe/segment{ @@ -7569,17 +6125,12 @@ /area/varadero/interior/hall_SE) "eVn" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "eVH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "eVU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7587,9 +6138,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "eVW" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -7600,9 +6149,7 @@ name = "\improper materials storage bin"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "eWp" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7611,16 +6158,10 @@ layer = 2.99 }, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "eWR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplecorners" - }, +/turf/open/floor/shiva/purplecorners/west, /area/varadero/interior/research) "eWZ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -7635,9 +6176,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "eXg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7656,17 +6195,12 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "eXr" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "eXw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -7674,10 +6208,7 @@ name = "barge float"; desc = "A supportive lattice connected to two floating pontoons." }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -7699,52 +6230,35 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "eYG" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "eYM" = ( /obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "eZc" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) "eZk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "fao" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; pixel_y = 19 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "faq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "fay" = ( /turf/closed/wall/r_wall, @@ -7762,17 +6276,11 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "faX" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "fbr" = ( /obj/effect/landmark/corpsespawner/miner, @@ -7793,9 +6301,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7818,10 +6324,7 @@ /obj/item/tool/surgery/FixOVein/predatorFixOVein{ pixel_x = -4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, @@ -7834,9 +6337,7 @@ /area/varadero/interior_protected/caves/digsite) "fcg" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -7855,18 +6356,14 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "fdn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -28 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "fdw" = ( /obj/structure/pipes/vents/pump{ @@ -7875,9 +6372,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "fdA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7888,9 +6383,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/maintenance/research) "fef" = ( /obj/structure/surface/table/reinforced/prison, @@ -7902,10 +6395,7 @@ pixel_x = -3; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -7922,23 +6412,16 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "feV" = ( /obj/structure/surface/table, /obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "feW" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/interior/maintenance/north) "ffe" = ( /obj/structure/curtain/shower, @@ -7949,9 +6432,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ffx" = ( /obj/structure/disposalpipe/segment{ @@ -7968,9 +6449,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "fga" = ( /obj/structure/machinery/light/small{ @@ -7978,16 +6457,12 @@ }, /obj/structure/surface/rack, /obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "fgS" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "fgW" = ( /obj/structure/bed/chair/wood/normal{ @@ -8004,34 +6479,21 @@ pixel_x = -10; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fhu" = ( -/obj/structure/bed/chair{ - dir = 3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_near) "fhA" = ( /obj/item/device/flashlight, /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "fhM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/disposals) "fhV" = ( /obj/structure/surface/table, @@ -8042,28 +6504,21 @@ /obj/item/reagent_container/food/drinks/cup{ pixel_x = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fiv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Underground Staff Canteen" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "fiA" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/varadero/interior/hall_SE) "fiB" = ( /obj/structure/surface/table/reinforced/prison, @@ -8077,9 +6532,7 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "fjg" = ( /turf/open/gm/grass/grass1/weedable, @@ -8087,19 +6540,13 @@ "fjv" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "fjx" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "fjC" = ( /obj/structure/disposalpipe/segment, @@ -8121,9 +6568,7 @@ "fjK" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "fjM" = ( /obj/structure/machinery/conveyor, @@ -8136,19 +6581,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "fkd" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) "fkj" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "fky" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -8159,23 +6599,17 @@ icon_state = "pointybush_3"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fkE" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "fkF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "fkR" = ( /turf/closed/wall, @@ -8201,39 +6635,29 @@ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "fnj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fnl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "fnq" = ( /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "fnX" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "fof" = ( /obj/structure/shuttle/engine/heater{ @@ -8245,10 +6669,7 @@ icon_state = "phoronrwindow" }, /obj/item/device/flashlight/slime, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "foz" = ( /obj/structure/surface/table/reinforced/prison, @@ -8256,10 +6677,7 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "foE" = ( /obj/effect/decal/cleanable/blood/drip, @@ -8268,17 +6686,11 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "foF" = ( /obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ @@ -8303,10 +6715,7 @@ pixel_x = 6; pixel_y = 18 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "fpe" = ( /obj/structure/machinery/power/apc{ @@ -8314,9 +6723,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "fpf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -8324,9 +6731,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "fpq" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -8340,31 +6745,22 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "fqu" = ( /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "fqY" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "frQ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "frR" = ( /obj/structure/prop/rock/brown, @@ -8394,30 +6790,22 @@ /turf/closed/wall/r_wall, /area/varadero/interior/research) "ftF" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/comms3) "fuh" = ( /obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/interior/maintenance/north) "fuj" = ( /obj/structure/barricade/wooden, /obj/structure/safe/floor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fuF" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "fuS" = ( /obj/structure/window/framed/colony/reinforced, @@ -8443,10 +6831,7 @@ /obj/structure/machinery/chem_dispenser/soda/beer{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "fvV" = ( /obj/structure/largecrate/random/barrel/green, @@ -8464,9 +6849,7 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "fxR" = ( /obj/item/moneybag{ @@ -8481,10 +6864,7 @@ /obj/structure/bed/chair/hunter{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -8499,9 +6879,7 @@ layer = 3.01 }, /obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "fyH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8511,9 +6889,7 @@ /obj/item/ammo_casing/shell{ icon_state = "cartridge_1_1" }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "fyP" = ( /obj/structure/surface/table/woodentable, @@ -8530,9 +6906,7 @@ name = "Orion"; real_name = "Orion" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -8540,28 +6914,19 @@ /area/varadero/interior/caves/north_research) "fzx" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "fzy" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "fAq" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "fAs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "fAO" = ( /turf/open/floor/plating, @@ -8570,9 +6935,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -8583,19 +6946,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "fDB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "fDH" = ( /obj/structure/blocker/invisible_wall/water, @@ -8604,10 +6961,7 @@ /area/varadero/exterior/farocean) "fEb" = ( /obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "fEm" = ( /obj/structure/largecrate/random, @@ -8615,38 +6969,28 @@ pixel_x = -3; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "fEu" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/electrical) "fEz" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/records) "fEA" = ( /obj/structure/girder/displaced, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "fEI" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" }, /obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "fER" = ( /obj/structure/disposalpipe/segment, @@ -8654,10 +6998,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "fFm" = ( /obj/structure/surface/table/reinforced/prison, @@ -8665,9 +7006,7 @@ pixel_x = 3 }, /obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "fFs" = ( /obj/structure/machinery/reagentgrinder{ @@ -8678,9 +7017,7 @@ /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "fFw" = ( /obj/item/stack/sheet/wood, @@ -8691,10 +7028,7 @@ pixel_y = 24 }, /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ @@ -8708,9 +7042,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "fFK" = ( /obj/structure/bed{ @@ -8721,16 +7053,11 @@ layer = 2.1; name = "lattice" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/vessel) "fFO" = ( /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "fGM" = ( /obj/structure/bed/chair/wood/normal{ @@ -8742,9 +7069,7 @@ /turf/open/floor/carpet, /area/varadero/interior/library) "fGN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/farocean) "fGP" = ( /obj/effect/landmark/queen_spawn, @@ -8754,10 +7079,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "fHg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -8775,25 +7097,18 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "fHx" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "fIk" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "fJb" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -8804,17 +7119,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "fJw" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "fJI" = ( /obj/item/clothing/gloves/yautja{ @@ -8831,19 +7141,13 @@ /obj/structure/bed/chair/hunter{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "fJR" = ( /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/varadero/interior/medical) "fKz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8854,9 +7158,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "fLn" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -8865,16 +7167,11 @@ id = "brg" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "fLu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, @@ -8884,10 +7181,7 @@ /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/comms3) "fMq" = ( /obj/item/device/cassette_tape/heavymetal{ @@ -8899,10 +7193,7 @@ pixel_x = 5; pixel_y = -3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -8911,10 +7202,7 @@ "fMP" = ( /obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) "fNm" = ( /obj/structure/platform/kutjevo/smooth{ @@ -8940,9 +7228,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "fOG" = ( /obj/structure/platform/kutjevo/smooth{ @@ -8951,10 +7237,7 @@ layer = 2.99 }, /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -8967,17 +7250,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "fPo" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, /obj/item/storage/fancy/cigar, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ @@ -8991,19 +7270,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "fPy" = ( /obj/structure/prop/rock/brown, /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "fPJ" = ( /obj/effect/decal/cleanable/dirt, @@ -9022,10 +7296,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "fQh" = ( /obj/item/shard{ @@ -9040,18 +7311,13 @@ /area/varadero/interior/beach_bar) "fQr" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "fQE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/mess) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -9061,9 +7327,7 @@ /area/varadero/exterior/comms4) "fQW" = ( /obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "fRl" = ( /obj/structure/largecrate/random/case, @@ -9083,14 +7347,10 @@ /area/varadero/exterior/eastbeach) "fTh" = ( /obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "fUn" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/maintenance/north) "fUs" = ( /obj/structure/machinery/light/small, @@ -9102,37 +7362,26 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "fUF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "fUJ" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood, /area/varadero/interior/hall_SE) "fUY" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) "fUZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/disposals) "fVt" = ( /obj/structure/machinery/door_control{ @@ -9141,9 +7390,7 @@ pixel_y = -26 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "fVw" = ( /obj/effect/decal/warning_stripes{ @@ -9158,36 +7405,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) "fWr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "fWz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) "fWA" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "fWE" = ( /obj/structure/platform/kutjevo/smooth{ @@ -9215,10 +7450,7 @@ /area/varadero/exterior/lz1_near) "fWU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_N) "fWW" = ( /obj/structure/surface/rack, @@ -9241,9 +7473,7 @@ pixel_y = 12 }, /obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "fXA" = ( /obj/structure/platform/kutjevo/smooth{ @@ -9266,10 +7496,7 @@ /area/varadero/interior/hall_SE) "fXH" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "fXX" = ( /obj/structure/closet/crate, @@ -9278,49 +7505,31 @@ }, /obj/item/trash/crushed_cup, /obj/item/trash/c_tube, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "fYs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "fYA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_N) "fYH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) "fYQ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/medical) "fZe" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "fZx" = ( /obj/item/stool{ pixel_x = -7; pixel_y = -4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "fZB" = ( /obj/structure/prop/structure_lattice{ @@ -9336,26 +7545,19 @@ icon_state = "vent4"; pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "fZI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "fZP" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "fZX" = ( /obj/structure/platform_decoration/kutjevo, @@ -9367,16 +7569,11 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/court) "gar" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "gaw" = ( /obj/structure/flora/pottedplant{ @@ -9386,10 +7583,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ @@ -9399,9 +7593,7 @@ /area/varadero/exterior/eastbeach) "gaJ" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "gbE" = ( /obj/structure/barricade/handrail{ @@ -9417,10 +7609,7 @@ dir = 1; icon_state = "chair" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gcB" = ( /obj/structure/largecrate/random/barrel/white, @@ -9439,10 +7628,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -9474,10 +7660,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "geo" = ( /turf/open/gm/dirt, @@ -9528,18 +7711,13 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "gfj" = ( /obj/effect/decal/cleanable/cobweb{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gfk" = ( /obj/structure/girder/displaced, @@ -9549,9 +7727,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) "gfr" = ( /obj/structure/surface/table/reinforced/prison, @@ -9568,9 +7744,7 @@ pixel_y = 3 }, /obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "gfs" = ( /obj/structure/surface/table, @@ -9582,15 +7756,11 @@ pixel_x = 4; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "gfu" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9604,9 +7774,7 @@ /area/varadero/interior/court) "gfG" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ggk" = ( /turf/closed/wall/r_wall/elevator{ @@ -9626,27 +7794,19 @@ /area/varadero/interior_protected/caves) "gha" = ( /obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ghb" = ( /obj/item/tool/crowbar, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "ghr" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "ghs" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "ghI" = ( /obj/structure/catwalk, @@ -9659,9 +7819,7 @@ /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) "ghW" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/lz2_near) "gia" = ( /obj/structure/disposalpipe/segment{ @@ -9669,17 +7827,12 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "giq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "giN" = ( /turf/open/auto_turf/sand_white/layer1, @@ -9696,9 +7849,7 @@ pixel_x = 12; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "gjs" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -9706,15 +7857,10 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "gjw" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "gjy" = ( /obj/structure/surface/table/reinforced/prison, @@ -9722,9 +7868,7 @@ dir = 1 }, /obj/structure/machinery/computer/communications, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "gjz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -9732,9 +7876,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gjC" = ( /obj/effect/overlay/palmtree_r, @@ -9744,9 +7886,7 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "gkk" = ( /obj/structure/surface/table/reinforced/prison, @@ -9765,9 +7905,7 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "gkx" = ( /obj/item/stack/tile/plasteel{ @@ -9787,9 +7925,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "gkL" = ( /obj/structure/surface/table/reinforced/prison, @@ -9797,16 +7933,11 @@ dir = 8; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "gkS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "glp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -9815,64 +7946,45 @@ /area/varadero/interior_protected/maintenance/south) "gms" = ( /obj/effect/landmark/good_item, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "gmE" = ( /obj/structure/closet/jcloset, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/laundry) "gmK" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "gmT" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gnm" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "gnx" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "gnC" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -9; pixel_y = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "gnZ" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "god" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9901,10 +8013,7 @@ }, /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ @@ -9914,19 +8023,14 @@ /area/varadero/interior/chapel) "gqN" = ( /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "gqX" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_N) "grG" = ( /obj/structure/blocker/invisible_wall/water, @@ -9943,34 +8047,25 @@ /area/varadero/interior_protected/caves/central) "gso" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "gsq" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "gsu" = ( /obj/effect/decal/remains/xeno{ pixel_y = 25 }, /obj/effect/landmark/xeno_spawn, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "gsw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -10003,9 +8098,7 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "gtz" = ( /obj/structure/barricade/wooden{ @@ -10014,16 +8107,11 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gun" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -10037,9 +8125,7 @@ /area/varadero/interior/technical_storage) "guE" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "gvo" = ( /obj/item/ore/diamond, @@ -10049,18 +8135,12 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "gvF" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/administration) "gvJ" = ( /obj/item/shard{ @@ -10068,37 +8148,24 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "gvM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/maintenance/north) "gvR" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) "gwB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "gwC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) "gwD" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -10109,19 +8176,14 @@ /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) "gwG" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "gwW" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/sling, /obj/effect/landmark/objective_landmark/science, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -10137,9 +8199,7 @@ /area/varadero/interior_protected/caves/swcaves) "gxX" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10171,10 +8231,7 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "gzm" = ( /obj/structure/platform/kutjevo/smooth{ @@ -10192,10 +8249,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "gAK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10206,25 +8260,19 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "gAV" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gBi" = ( /obj/item/stool{ icon_state = "stool_alt" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "gBp" = ( /obj/structure/surface/table/reinforced/prison, @@ -10240,9 +8288,7 @@ pixel_x = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "gBM" = ( /obj/structure/stairs/perspective{ @@ -10250,10 +8296,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "gBP" = ( /obj/structure/blocker/invisible_wall/water, @@ -10271,10 +8314,7 @@ /area/varadero/exterior/farocean) "gBV" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "gBW" = ( /obj/item/stack/sandbags_empty/half, @@ -10293,9 +8333,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "gCH" = ( /obj/item/ammo_casing{ @@ -10332,9 +8370,7 @@ /area/varadero/exterior/monsoon) "gDh" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "gDr" = ( /obj/item/tool/warning_cone, @@ -10349,16 +8385,11 @@ "gEy" = ( /obj/structure/machinery/light, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southwest, /area/varadero/interior/research) "gEz" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "gEO" = ( /obj/structure/surface/rack, @@ -10366,10 +8397,7 @@ /obj/item/weapon/gun/pistol/m4a3{ pixel_y = -3 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "gEP" = ( /obj/structure/prop/rock/brown, @@ -10385,25 +8413,18 @@ health = 80 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "gFt" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) "gFA" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) "gFH" = ( /obj/structure/inflatable/door, @@ -10414,10 +8435,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/administration) "gFY" = ( /obj/effect/decal/warning_stripes{ @@ -10429,10 +8447,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gHJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -10441,24 +8456,17 @@ "gHT" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "gIB" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "gJs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "gJy" = ( /obj/effect/overlay/palmtree_r{ @@ -10477,30 +8485,20 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/varadero/interior/court) "gKs" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/interior/oob) "gKw" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "gLo" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "gLw" = ( /turf/open/floor/wood, @@ -10530,9 +8528,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "gMm" = ( /obj/structure/platform/kutjevo/rock{ @@ -10543,10 +8539,7 @@ icon_state = "lattice12"; pixel_y = -3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, @@ -10563,10 +8556,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, @@ -10576,9 +8566,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "gNE" = ( /obj/structure/inflatable/door, @@ -10586,10 +8574,7 @@ /area/varadero/interior_protected/caves/digsite) "gOe" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/records) "gOj" = ( /obj/item/tool/warning_cone, @@ -10606,14 +8591,10 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "gPG" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/lz1_near) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -10636,10 +8617,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/administration) "gQa" = ( /obj/structure/bed/chair/office/light{ @@ -10649,9 +8627,7 @@ /obj/item/ammo_casing/shell{ icon_state = "cartridge_3_1" }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "gRj" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -10671,10 +8647,7 @@ icon_state = "security_cam"; name = "Hunter Nav Console" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "gRS" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10684,9 +8657,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "gRU" = ( /obj/structure/machinery/floodlight{ @@ -10701,35 +8672,25 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "gSC" = ( /obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "gSE" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "gSY" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_x = -6; pixel_y = -3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "gTe" = ( /turf/open/floor/plating, @@ -10758,10 +8719,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/lz2_near) "gVQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10769,9 +8727,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/item/weapon/shield/riot, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10811,48 +8767,33 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/cargo) "gXw" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "gXN" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "gXO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/comms3) "gYg" = ( /obj/item/toy/beach_ball/holoball, /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) "gZq" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "gZI" = ( /obj/structure/filingcabinet{ @@ -10894,17 +8835,13 @@ pixel_x = -2; pixel_y = 18 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "haC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/varadero/interior/medical) "haP" = ( /turf/closed/wall/r_wall/unmeltable, @@ -10914,33 +8851,25 @@ /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach/lz) "haT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "haV" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/medium, /obj/item/trash/kepler, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "haX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "hbi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "hbD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -10948,10 +8877,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "hbP" = ( /obj/structure/surface/table, @@ -10959,9 +8885,7 @@ pixel_x = 4; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "hca" = ( /obj/structure/disposalpipe/segment{ @@ -10970,9 +8894,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "hcz" = ( /obj/structure/machinery/power/apc{ @@ -10980,10 +8902,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "hcI" = ( /obj/item/stack/tile/plasteel{ @@ -10999,9 +8918,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "hej" = ( /obj/structure/platform_decoration/kutjevo{ @@ -11011,16 +8928,11 @@ /area/varadero/exterior/pontoon_beach) "hek" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "hen" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "heu" = ( /obj/item/device/flashlight/lamp/tripod, @@ -11036,17 +8948,12 @@ dir = 4 }, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "hfo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "hfD" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -11054,15 +8961,10 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "hfR" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "hfX" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -11071,9 +8973,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "hfZ" = ( /obj/item/lightstick/red/spoke/planted{ @@ -11082,24 +8982,17 @@ indestructible = 1; unacidable = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "hgc" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "hgB" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "hhM" = ( /turf/closed/wall/r_wall, @@ -11109,24 +9002,16 @@ /obj/item/tool/stamp{ icon_state = "stamp-ce" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "hic" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "hiD" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/mess) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -11136,10 +9021,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -11194,17 +9076,12 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "hlp" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "hlw" = ( /obj/effect/decal/cleanable/blood/drip, @@ -11216,10 +9093,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "hlG" = ( /obj/structure/barricade/handrail/wire{ @@ -11229,10 +9103,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "hlK" = ( /obj/structure/surface/table/woodentable, @@ -11258,9 +9129,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "hmh" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz2_near) "hmm" = ( /obj/structure/machinery/light, @@ -11276,16 +9145,11 @@ pixel_x = -6; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "hmp" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "hmR" = ( /obj/item/tool/crowbar, @@ -11304,10 +9168,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "hoC" = ( /obj/structure/prop/rock/brown, @@ -11321,10 +9182,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "hoK" = ( /obj/item/stack/tile/plasteel{ @@ -11342,40 +9200,27 @@ basecolor = "#20d450"; color = "#20d450" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "hre" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) "hrG" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/hall_N) "hrI" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) "hsa" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "hsl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "hso" = ( /obj/effect/decal/cleanable/dirt, @@ -11391,15 +9236,11 @@ dir = 4 }, /obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "hsF" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "hte" = ( /turf/closed/wall/rock/brown, @@ -11427,9 +9268,7 @@ /area/varadero/interior/security) "htP" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "htU" = ( /obj/structure/machinery/light{ @@ -11452,29 +9291,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "hus" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "hux" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "huy" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -11493,27 +9322,18 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "hvO" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "hwa" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "hwE" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) "hwL" = ( /obj/structure/prop/dam/crane/damaged, @@ -11523,9 +9343,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "hwP" = ( /obj/effect/spawner/random/toolbox, @@ -11541,16 +9359,11 @@ pixel_x = -7; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "hxa" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/administration) "hxO" = ( /obj/structure/barricade/wooden{ @@ -11563,36 +9376,23 @@ dir = 4 }, /obj/item/tool/crowbar, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/medical) "hyp" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "hyr" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "hys" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "hyQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ @@ -11602,15 +9402,10 @@ /area/varadero/interior_protected/caves/central) "hza" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "hzm" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -11640,20 +9435,14 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "hBA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "hBX" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southwest, /area/varadero/interior/research) "hCw" = ( /obj/structure/stairs/perspective{ @@ -11673,9 +9462,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "hDk" = ( /obj/structure/bedsheetbin, @@ -11684,9 +9471,7 @@ pixel_y = 8 }, /obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "hDw" = ( /obj/structure/stairs/perspective{ @@ -11697,16 +9482,12 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "hDA" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) "hDX" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -11721,23 +9502,15 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "hEv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastocean) "hEN" = ( /obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "hET" = ( /obj/structure/platform/kutjevo/smooth{ @@ -11752,9 +9525,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "hFE" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -11762,10 +9533,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_N) "hFM" = ( /obj/structure/window_frame/wood, @@ -11777,9 +9545,7 @@ /area/varadero/interior/caves/north_research) "hGz" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "hHn" = ( /obj/effect/landmark/hunter_secondary, @@ -11796,16 +9562,11 @@ dir = 1; name = "\improper Underground Power Substation" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "hHK" = ( /obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "hHR" = ( /obj/structure/prop/structure_lattice{ @@ -11823,19 +9584,14 @@ icon_state = "road_edge_decal3"; pixel_y = 16 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/varadero/interior/court) "hJl" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "hJq" = ( /obj/structure/bed/chair{ @@ -11865,19 +9621,14 @@ /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/technical_storage) "hKe" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/hall_N) "hKK" = ( /turf/open/gm/coast/west, @@ -11900,9 +9651,7 @@ }, /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "hLF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -11916,16 +9665,11 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "hLQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) "hLY" = ( /obj/item/shard{ @@ -11933,25 +9677,18 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/maintenance) "hMg" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "hMh" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "hMC" = ( /obj/item/clothing/ears/earmuffs{ @@ -11960,9 +9697,7 @@ pixel_y = 18 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11981,10 +9716,7 @@ /area/varadero/exterior/eastbeach) "hMV" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -11999,10 +9731,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "hNq" = ( /obj/structure/platform/kutjevo/smooth{ @@ -12024,9 +9753,7 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ @@ -12041,9 +9768,7 @@ /turf/open/floor/wood, /area/varadero/interior/court) "hPd" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "hPj" = ( /turf/closed/wall/rock/brown, @@ -12053,37 +9778,26 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "hPD" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "hPF" = ( /obj/item/paper/crumpled, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) "hQb" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "hQl" = ( /obj/structure/girder, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "hQo" = ( /obj/structure/bed/roller, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "hQP" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot{ @@ -12111,9 +9825,7 @@ pixel_x = 18; pixel_y = 23 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "hRs" = ( /obj/structure/machinery/power/smes/magical{ @@ -12122,10 +9834,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/varadero/interior_protected/vessel) "hRv" = ( /obj/effect/landmark/objective_landmark/far, @@ -12140,9 +9849,7 @@ }, /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "hTO" = ( /obj/effect/decal/warning_stripes{ @@ -12155,18 +9862,14 @@ /area/varadero/interior_protected/vessel) "hTQ" = ( /obj/structure/airlock_assembly, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "hTX" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "hTZ" = ( /obj/structure/surface/table, @@ -12177,32 +9880,22 @@ /obj/structure/prop/server_equipment/laptop/closed{ pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "hUp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "hUs" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "hUx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/hall_SE) "hUU" = ( /obj/structure/machinery/requests_console{ @@ -12212,18 +9905,14 @@ /area/varadero/interior/cargo) "hUY" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "hVL" = ( /obj/item/stack/sandbags/large_stack{ pixel_y = 4; pixel_x = -12 }, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/lz2_near) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -12235,9 +9924,7 @@ /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/fork, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "hWG" = ( /obj/effect/landmark/xeno_spawn, @@ -12257,64 +9944,45 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "hXq" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/digsite) "hXv" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) "hYp" = ( /obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/maintenance) "hZo" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "hZD" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) "iad" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "iah" = ( /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "iat" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "iax" = ( /turf/open/gm/coast/south, @@ -12329,9 +9997,7 @@ /area/varadero/exterior/eastbeach) "iaM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "iaO" = ( /turf/closed/wall/r_wall/elevator{ @@ -12349,15 +10015,11 @@ /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "ibo" = ( /obj/structure/prop/broken_arcade, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -12368,9 +10030,7 @@ dir = 4 }, /obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "ibP" = ( /obj/structure/surface/table/reinforced/prison, @@ -12378,10 +10038,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, @@ -12419,10 +10076,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "ico" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -12433,9 +10087,7 @@ icon_state = "pointybush_2"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "icJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12446,18 +10098,13 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "icM" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "idn" = ( /obj/structure/window/reinforced{ @@ -12472,10 +10119,7 @@ color = "#6b675e" }, /obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "idr" = ( /obj/effect/decal/cleanable/dirt, @@ -12487,16 +10131,11 @@ /area/varadero/interior/security) "iet" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "ieu" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/security) "ifx" = ( /obj/item/weapon/gun/smg/nailgun{ @@ -12504,15 +10143,10 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/northeast, /area/varadero/interior/research) "ifB" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "ifO" = ( /obj/structure/blocker/invisible_wall/water, @@ -12545,9 +10179,7 @@ /area/varadero/exterior/pontoon_beach) "igQ" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "igU" = ( /obj/item/roller{ @@ -12559,18 +10191,13 @@ pixel_x = 4; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "ihn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "iht" = ( /obj/structure/surface/table, @@ -12578,18 +10205,13 @@ pixel_y = 8 }, /obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "ihC" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ @@ -12617,9 +10239,7 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "iiX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -12630,20 +10250,14 @@ name = "Underground Secure Technical Storage"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "ijo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ijO" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/beach_bar) "ijZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -12660,9 +10274,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "ilZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -12671,23 +10283,16 @@ name = "\improper Underground Security Armory"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "imd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_N) "imk" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "imu" = ( /obj/item/stack/tile/plasteel{ @@ -12695,9 +10300,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, @@ -12705,18 +10308,13 @@ "imZ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "inj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "inN" = ( /obj/structure/barricade/handrail/wire{ @@ -12725,9 +10323,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "inV" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -12737,9 +10333,7 @@ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "ioc" = ( /obj/structure/surface/table/woodentable, @@ -12768,16 +10362,11 @@ pixel_y = 13 }, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "ioA" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "ipi" = ( /obj/structure/platform/kutjevo/smooth{ @@ -12799,9 +10388,7 @@ icon_state = "pointybush_3"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "ipC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -12826,16 +10413,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "iqU" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "iqW" = ( /obj/structure/surface/rack, @@ -12843,35 +10425,24 @@ name = "Incendiary Ammunition Order"; desc = "An order manifest for incendiary ammo that has yet to be filled out." }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) "irj" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners/west, /area/varadero/interior/security) "irk" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "irw" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/technical_storage) "isK" = ( /obj/structure/surface/table/reinforced/prison, @@ -12883,9 +10454,7 @@ pixel_x = 7; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "itb" = ( /obj/structure/window/framed/colony/reinforced, @@ -12897,10 +10466,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "itP" = ( /turf/closed/wall/r_wall/elevator{ @@ -12931,16 +10497,12 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "ivg" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "ivo" = ( /obj/structure/airlock_assembly, @@ -12953,9 +10515,7 @@ /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "ivO" = ( /obj/structure/largecrate/random/mini/med{ @@ -12963,25 +10523,18 @@ pixel_x = -13; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "ivX" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "iwc" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "iwf" = ( /mob/living/simple_animal/mouse, @@ -13028,20 +10581,14 @@ /area/varadero/interior/caves/east) "iwV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "ixd" = ( /obj/structure/machinery/computer/communications{ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "ixh" = ( /obj/structure/surface/rack, @@ -13049,10 +10596,7 @@ /obj/item/weapon/gun/pistol/vp78{ pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "ixl" = ( /obj/item/tool/pickaxe, @@ -13060,9 +10604,7 @@ /area/varadero/interior_protected/caves) "ixq" = ( /obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "ixr" = ( /turf/open/auto_turf/sand_white/layer1, @@ -13078,10 +10620,7 @@ /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) "iyd" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/varadero/exterior/lz1_near) "iyk" = ( /obj/effect/decal/warning_stripes{ @@ -13102,9 +10641,7 @@ /area/varadero/interior/caves/east) "izi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "izl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -13118,16 +10655,11 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "izs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "izy" = ( /obj/structure/machinery/storm_siren{ @@ -13141,28 +10673,21 @@ pixel_x = 7; pixel_y = -6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "izP" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 2.991 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/maintenance) "iAa" = ( /obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ @@ -13175,16 +10700,11 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) "iAx" = ( /obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "iAE" = ( /obj/structure/blocker/invisible_wall/water, @@ -13210,15 +10730,10 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "iCy" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "iCB" = ( /obj/effect/landmark/queen_spawn, @@ -13233,10 +10748,7 @@ layer = 3.1 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "iDM" = ( /obj/structure/machinery/bot/medbot{ @@ -13248,10 +10760,7 @@ "iDS" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "iEe" = ( /obj/effect/decal/cleanable/dirt, @@ -13271,9 +10780,7 @@ pixel_y = -11; desc = "A chest... filled with the wildest riches!" }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz2_near) "iFm" = ( /obj/structure/surface/table/reinforced/prison, @@ -13296,10 +10803,7 @@ pixel_x = 5; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "iFK" = ( /obj/structure/surface/table/reinforced/prison, @@ -13312,10 +10816,7 @@ pixel_y = 7 }, /obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) "iFQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -13325,29 +10826,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "iGm" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/varadero/interior/court) "iGM" = ( /obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "iGS" = ( /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "iHh" = ( /obj/item/weapon/gun/shotgun/pump, @@ -13358,9 +10850,7 @@ /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) "iHN" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastocean) "iIc" = ( /obj/item/device/flashlight/slime{ @@ -13383,17 +10873,12 @@ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "iIL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "iIW" = ( /obj/structure/surface/table, @@ -13405,9 +10890,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "iIY" = ( /turf/open/gm/coast/east, @@ -13417,17 +10900,12 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "iJk" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -13441,15 +10919,11 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "iLc" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "iLd" = ( /obj/structure/window/reinforced{ @@ -13482,10 +10956,7 @@ /area/varadero/interior/bunks) "iLz" = ( /obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "iLD" = ( /obj/structure/window/framed/colony, @@ -13496,43 +10967,30 @@ icon_state = "W" }, /obj/item/prop/magazine/boots, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "iMp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/hall_SE) "iMM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "iNh" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "iNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "iNE" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -13540,16 +10998,12 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "iNU" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "iOi" = ( /obj/structure/machinery/storm_siren{ @@ -13581,27 +11035,18 @@ /area/varadero/interior/administration) "iPH" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/comms3) "iPI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "iQl" = ( /obj/item/storage/firstaid, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "iQr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "iQs" = ( /obj/structure/barricade/handrail/wire{ @@ -13620,15 +11065,10 @@ pixel_y = 5 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "iQS" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "iRw" = ( /obj/structure/pipes/vents/pump{ @@ -13639,31 +11079,23 @@ /area/varadero/interior/technical_storage) "iRR" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "iRZ" = ( /obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "iSi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "iSz" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "iSC" = ( /obj/structure/window/reinforced{ @@ -13685,10 +11117,7 @@ pixel_y = 8 }, /obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "iSO" = ( /obj/structure/surface/table, @@ -13704,10 +11133,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "iSW" = ( /turf/open/gm/dirt, @@ -13716,16 +11142,11 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "iTF" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "iTP" = ( /obj/structure/filingcabinet{ @@ -13752,10 +11173,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "iUH" = ( /obj/structure/machinery/floodlight/landing{ @@ -13763,18 +11181,14 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "iVt" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) "iVD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -13788,18 +11202,13 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "iWf" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "iWj" = ( /obj/structure/blocker/invisible_wall/water, @@ -13810,18 +11219,14 @@ icon_state = "cartridge_10" }, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "iWK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "iWX" = ( /obj/structure/machinery/floodlight{ @@ -13844,18 +11249,13 @@ pixel_x = -13; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "iXX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "iYb" = ( /obj/structure/machinery/light{ @@ -13865,10 +11265,7 @@ pixel_x = -10; pixel_y = 15 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "iYi" = ( /turf/closed/wall/r_wall/elevator{ @@ -13896,10 +11293,7 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "iZx" = ( /obj/structure/machinery/door_control/brbutton{ @@ -13907,19 +11301,13 @@ name = "Cargo Bay Lock"; pixel_y = 20 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "iZH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "iZP" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -13938,61 +11326,43 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) "jab" = ( /obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "jai" = ( /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/varadero/interior/security) "jaF" = ( /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) "jaL" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "jbh" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) "jbR" = ( /obj/item/device/flashlight/lamp/tripod{ pixel_x = 7; pixel_y = 18 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) "jcz" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/technical_storage) "jcB" = ( /obj/structure/machinery/power/apc{ @@ -14001,10 +11371,7 @@ start_charge = 0 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "jcC" = ( /obj/structure/surface/rack, @@ -14013,20 +11380,11 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) -"jcY" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "jdm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -14050,9 +11408,7 @@ /area/varadero/exterior/eastocean) "jeo" = ( /obj/item/tool/mop, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "jew" = ( /obj/structure/bed/chair/office/dark{ @@ -14060,9 +11416,7 @@ pixel_x = -6; pixel_y = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "jeO" = ( /obj/structure/machinery/conveyor, @@ -14086,10 +11440,7 @@ /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/varadero/interior_protected/caves/digsite) "jeW" = ( /obj/item/device/flashlight/lamp/tripod, @@ -14107,9 +11458,7 @@ dir = 8 }, /obj/structure/barricade/handrail/wire, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/court) "jfw" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14121,9 +11470,7 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "jfA" = ( /obj/item/device/motiondetector/hacked, @@ -14132,49 +11479,34 @@ "jfD" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "jfP" = ( /obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "jgL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/varadero/exterior/lz1_near) "jgQ" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "jgY" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/records) "jhe" = ( /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/varadero/interior/security) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14191,10 +11523,7 @@ /area/varadero/exterior/lz1_near) "jhv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "jhK" = ( /obj/item/lightstick/red/spoke/planted{ @@ -14203,50 +11532,37 @@ indestructible = 1; unacidable = 1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "jhL" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "jhM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "jhW" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 2.991 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "jif" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/device/flashlight, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "jjg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -14287,28 +11603,18 @@ pixel_x = 24 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "jjN" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/interior/maintenance/north) "jjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/maintenance/north) "jjZ" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "jkq" = ( /obj/structure/surface/table/reinforced/prison, @@ -14324,14 +11630,10 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "jks" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "jlt" = ( /obj/structure/surface/table/reinforced/prison, @@ -14343,10 +11645,7 @@ pixel_x = -6; pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/administration) "jmb" = ( /obj/structure/cable/heavyduty{ @@ -14366,10 +11665,7 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "jnA" = ( /obj/structure/disposalpipe/segment{ @@ -14378,10 +11674,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -14396,10 +11689,7 @@ /area/varadero/exterior/eastbeach) "joN" = ( /obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -14423,9 +11713,7 @@ "jps" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "jpD" = ( /turf/closed/wall/r_wall, @@ -14435,9 +11723,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "jpZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14452,10 +11738,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, @@ -14476,9 +11759,7 @@ "jqJ" = ( /obj/structure/disposalpipe/segment, /obj/item/key/cargo_train, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) "jqK" = ( /obj/structure/surface/table/reinforced/prison, @@ -14486,9 +11767,7 @@ pixel_x = -30 }, /obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -14506,9 +11785,7 @@ "jrv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "jsf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14519,18 +11796,14 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/security) "jsh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "jsx" = ( /obj/item/prop/almayer/comp_open, @@ -14547,18 +11820,13 @@ dir = 4 }, /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "jts" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "jtx" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14568,23 +11836,14 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush{ pixel_y = 9 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "jty" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_N) "jtH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz2_near) "jtI" = ( /obj/structure/surface/table/reinforced/prison, @@ -14594,16 +11853,10 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "jtU" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/electrical) "jub" = ( /obj/structure/machinery/prop/almayer/CICmap{ @@ -14614,9 +11867,7 @@ name = "Hunter Globe"; pixel_y = 16 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "juL" = ( /obj/structure/surface/table/reinforced/prison, @@ -14625,10 +11876,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "juW" = ( /turf/closed/wall/r_wall, @@ -14647,15 +11895,11 @@ /turf/open/floor/carpet, /area/varadero/interior/research) "jvh" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "jvF" = ( /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "jwf" = ( /obj/structure/platform_decoration/kutjevo, @@ -14664,9 +11908,7 @@ /area/varadero/interior_protected/caves/digsite) "jwy" = ( /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "jwX" = ( /obj/structure/largecrate/random, @@ -14682,18 +11924,13 @@ "jxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "jyq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "jyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14709,18 +11946,14 @@ pixel_y = 12 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "jzB" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "jzL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14728,9 +11961,7 @@ layer = 2.99 }, /obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "jzZ" = ( /turf/open/floor/carpet, @@ -14742,9 +11973,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, @@ -14760,19 +11989,14 @@ /obj/structure/prop/static_tank/water{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "jBp" = ( /obj/structure/bed/chair{ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ @@ -14782,9 +12006,7 @@ /turf/open/floor/wood, /area/varadero/interior/security) "jCr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "jCs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -14797,9 +12019,7 @@ name = "\improper Underground Technical Storage"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "jCE" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -14808,10 +12028,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "jCN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14820,16 +12037,11 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "jDe" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "jDO" = ( /obj/structure/prop/structure_lattice{ @@ -14838,10 +12050,7 @@ icon_state = "book-3"; name = "book case" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) "jDW" = ( /obj/structure/disposalpipe/segment{ @@ -14851,10 +12060,7 @@ /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "jEv" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -14878,9 +12084,7 @@ "jEZ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "jFt" = ( /obj/effect/decal/cleanable/dirt, @@ -14893,10 +12097,7 @@ /turf/open/floor/wood, /area/varadero/interior/beach_bar) "jFL" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/monsoon) "jGk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14907,18 +12108,14 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "jGm" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "jGz" = ( /obj/structure/machinery/power/apc{ @@ -14926,15 +12123,11 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "jGA" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "jGT" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -14944,9 +12137,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "jHb" = ( /obj/structure/bed/chair{ @@ -14961,9 +12152,7 @@ layer = 2.991 }, /obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -14989,9 +12178,7 @@ pixel_y = 13 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "jJf" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -15010,10 +12197,7 @@ /obj/item/stack/sheet/plasteel{ amount = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -15031,18 +12215,13 @@ name = "\improper Underground Security Interrogation Observation"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "jKs" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "jKz" = ( /obj/structure/machinery/holosign/surgery{ @@ -15056,10 +12235,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15095,10 +12271,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, @@ -15108,22 +12281,14 @@ /obj/structure/barricade/handrail/wire{ layer = 3.01 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "jMr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) "jMK" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/northwest, /area/varadero/interior/research) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -15137,10 +12302,7 @@ /area/varadero/exterior/eastbeach) "jNS" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/varadero/interior/medical) "jNT" = ( /obj/structure/pipes/vents/pump, @@ -15161,17 +12323,11 @@ /area/varadero/interior/bunks) "jNW" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) "jOR" = ( /obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "jPe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15184,9 +12340,7 @@ /obj/item/paper/janitor{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "jPh" = ( /obj/structure/surface/rack, @@ -15197,19 +12351,14 @@ /obj/item/tool/pickaxe/drill{ pixel_y = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "jPC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15227,10 +12376,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "jQg" = ( /obj/structure/disposalpipe/segment{ @@ -15240,9 +12386,7 @@ name = "\improper Underground Security"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "jQB" = ( /obj/structure/surface/table/woodentable, @@ -15268,18 +12412,13 @@ }, /obj/structure/window/reinforced, /obj/item/clothing/head/fedora, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "jQM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "jRu" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -15293,9 +12432,7 @@ name = "\improper materials storage bin"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "jSN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15307,10 +12444,7 @@ "jSP" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/jackhammer, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -15322,51 +12456,37 @@ /turf/open/gm/dirt, /area/varadero/exterior/eastocean) "jTL" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/maintenance/north) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) "jTY" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "jUt" = ( /obj/item/tool/weldingtool/experimental, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "jUM" = ( /obj/structure/urinal{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "jUY" = ( /obj/structure/bed/chair/hunter, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "jVl" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/hall_N) "jVK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "jWA" = ( /obj/structure/surface/table, @@ -15379,9 +12499,7 @@ pixel_x = 3; pixel_y = 17 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ @@ -15397,9 +12515,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "jYs" = ( /obj/structure/window/reinforced{ @@ -15414,10 +12530,7 @@ color = "#6b675e" }, /obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "jYX" = ( /obj/structure/surface/table/reinforced/prison, @@ -15430,10 +12543,7 @@ pixel_x = -5; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) "jYZ" = ( /obj/item/tool/pickaxe, @@ -15448,10 +12558,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "jZE" = ( /obj/effect/decal/cleanable/blood/drip, @@ -15483,10 +12590,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "kap" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15496,10 +12600,7 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "kaY" = ( /obj/structure/surface/table/reinforced/prison, @@ -15511,16 +12612,11 @@ pixel_x = -4; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "kbp" = ( /obj/structure/janitorialcart, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, @@ -15535,9 +12631,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "kce" = ( /turf/open/floor/plating, @@ -15551,9 +12645,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kdf" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -15562,10 +12654,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "kdq" = ( /obj/structure/blocker/invisible_wall/water, @@ -15576,24 +12665,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/varadero/interior/maintenance/north) "keb" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "keE" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "keN" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -15602,9 +12684,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -15620,9 +12700,7 @@ /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "kfG" = ( /turf/closed/wall, @@ -15632,10 +12710,7 @@ /obj/structure/machinery/computer/med_data/laptop{ pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit{ @@ -15660,17 +12735,13 @@ /obj/structure/barricade/handrail/wire{ layer = 3.01 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "khb" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "khB" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15686,16 +12757,11 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/maintenance) "kif" = ( /obj/structure/ladder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/farocean) "kin" = ( /obj/structure/barricade/handrail/wire{ @@ -15706,24 +12772,18 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "kiE" = ( /obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/maintenance) "kiG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "kjp" = ( /obj/effect/decal/cleanable/blood/drip, @@ -15732,9 +12792,7 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15745,9 +12803,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) "kjI" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -15771,9 +12827,7 @@ /area/varadero/interior_protected/caves/digsite) "kkw" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, @@ -15782,9 +12836,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "kli" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15797,10 +12849,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "klu" = ( /obj/structure/bed/chair{ @@ -15809,10 +12858,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "klP" = ( /obj/structure/closet/secure_closet/personal/patient, @@ -15820,18 +12866,14 @@ pixel_x = -3; pixel_y = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "klT" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/research) "klY" = ( /obj/item/cell/high, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "kmb" = ( /obj/structure/machinery/light{ @@ -15842,29 +12884,20 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "kmo" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "kmu" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "kmI" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/central) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -15889,22 +12922,15 @@ }, /obj/structure/platform_decoration/kutjevo, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "knP" = ( /obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "kof" = ( /obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "koZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15930,15 +12956,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "kpS" = ( /obj/item/clothing/head/helmet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "kqe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15948,9 +12970,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "kqs" = ( /obj/structure/cargo_container/wy/mid, @@ -15963,9 +12983,7 @@ "kqE" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, @@ -15973,15 +12991,11 @@ /area/varadero/interior/caves/east) "kqQ" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "krl" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "krL" = ( /obj/structure/window/framed/colony/reinforced, @@ -15996,9 +13010,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "ksf" = ( /obj/structure/machinery/light{ @@ -16012,10 +13024,7 @@ /area/varadero/interior/chapel) "ksn" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16035,28 +13044,21 @@ /area/varadero/interior_protected/maintenance/south) "ktN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "kul" = ( /obj/item/pizzabox/meat{ pixel_x = -5; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kus" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "kuE" = ( /obj/structure/machinery/power/apc{ @@ -16074,22 +13076,15 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) "kuX" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "kvx" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "kvz" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "kvC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -16111,25 +13106,17 @@ /obj/structure/machinery/floodlight/landing/floor{ pixel_x = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "kvS" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "kwB" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -16139,9 +13126,7 @@ dir = 4; icon_state = "chair_alt" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "kyh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16150,9 +13135,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "kyj" = ( /obj/structure/prop/rock/brown, @@ -16169,9 +13152,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "kyz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, @@ -16186,9 +13167,7 @@ /area/varadero/interior/disposals) "kyI" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "kyK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16198,17 +13177,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "kyL" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "kyP" = ( /obj/structure/machinery/storm_siren{ @@ -16220,9 +13195,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "kzp" = ( /obj/structure/surface/rack, @@ -16244,15 +13217,11 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "kAl" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "kAm" = ( /obj/structure/machinery/vending/coffee, @@ -16299,9 +13268,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/phoron/medium_stack, /obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "kCy" = ( /obj/structure/surface/table/reinforced/prison, @@ -16312,15 +13279,10 @@ /obj/item/device/reagent_scanner{ pixel_x = -7 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "kCA" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "kCT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16329,9 +13291,7 @@ name = "\improper Underground Security Lobby"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "kDd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16343,15 +13303,11 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "kDh" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "kDk" = ( /obj/item/tool/screwdriver, @@ -16365,31 +13321,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "kDH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "kDJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kDO" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, /obj/item/trash/chunk, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "kEB" = ( /obj/structure/prop/invuln/static_corpse/afric_zimmer{ @@ -16402,10 +13350,7 @@ /area/varadero/interior/maintenance/north) "kEK" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "kEV" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -16413,30 +13358,20 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "kFn" = ( /obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "kFH" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/device/flashlight/flare, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz2_near) "kFT" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "kFV" = ( /obj/structure/largecrate/random/mini/med{ @@ -16450,10 +13385,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) "kGq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -16478,15 +13410,11 @@ pixel_y = 8 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "kGD" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/pontoon_beach) "kGF" = ( /obj/item/paper_bin{ @@ -16497,9 +13425,7 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/device/flash, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "kGJ" = ( /turf/open/gm/coast/east, @@ -16540,22 +13466,14 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "kIJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/varadero/exterior/lz1_near) "kIK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "kIV" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -16567,9 +13485,7 @@ dir = 4; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "kKS" = ( /turf/open/floor/interior/plastic, @@ -16588,20 +13504,14 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "kLd" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/administration) "kLA" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "kLF" = ( /obj/effect/decal/cleanable/blood/oil, @@ -16613,10 +13523,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, @@ -16629,28 +13536,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "kMy" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "kME" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "kMN" = ( /obj/structure/machinery/flasher{ @@ -16659,18 +13558,13 @@ pixel_x = -32; pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners/north, /area/varadero/interior/security) "kMU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "kNa" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -16688,37 +13582,27 @@ pixel_x = -10; pixel_y = 11 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "kNN" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "kOS" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/electrical) "kPj" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/mess) "kPX" = ( /obj/structure/surface/table, @@ -16730,10 +13614,7 @@ pixel_x = 10; pixel_y = 10 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "kPZ" = ( /obj/structure/surface/rack, @@ -16744,9 +13625,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16763,9 +13642,7 @@ "kRp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "kRH" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -16790,10 +13667,7 @@ unacidable = 1; layer = 4.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "kSd" = ( /obj/structure/machinery/alarm{ @@ -16807,10 +13681,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "kSD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16824,10 +13695,7 @@ layer = 2.99 }, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "kSN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16837,17 +13705,11 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "kTo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/administration) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16864,10 +13726,7 @@ pixel_y = 6 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/hall_N) "kTG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -16876,15 +13735,11 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/varadero/interior/medical) "kTI" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "kUj" = ( /obj/effect/decal/cleanable/blood, @@ -16892,10 +13747,7 @@ /turf/open/floor/wood, /area/varadero/interior/maintenance/north) "kVp" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16909,9 +13761,7 @@ /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16931,10 +13781,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "kWj" = ( /obj/effect/landmark/objective_landmark/medium, @@ -16944,9 +13791,7 @@ /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) "kWR" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/interior/maintenance/north) "kWZ" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -16954,22 +13799,15 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "kXn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "kXP" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, @@ -16979,28 +13817,20 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "kYn" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "kYF" = ( /obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "kYM" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "kYN" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -17008,31 +13838,21 @@ pixel_x = -16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "kZe" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "kZg" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/hall_NW) "kZl" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "kZn" = ( /obj/structure/surface/table, @@ -17043,9 +13863,7 @@ pixel_y = 24 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "laa" = ( /obj/structure/bed/chair{ @@ -17058,15 +13876,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "lat" = ( /obj/item/device/camera, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "laN" = ( /obj/structure/flora/pottedplant{ @@ -17075,23 +13889,16 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "lbi" = ( /obj/structure/closet/secure_closet/cargotech, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "lbr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "lbK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -17101,9 +13908,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "lbX" = ( /obj/structure/stairs/perspective{ @@ -17120,9 +13925,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "lci" = ( /obj/structure/prop/rock/brown, @@ -17132,9 +13935,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ldw" = ( /obj/structure/machinery/light/small{ @@ -17148,18 +13949,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/hall_SE) "leF" = ( /obj/structure/machinery/optable{ desc = "This maybe could be used for advanced medical procedures."; name = "Exam Table" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "leG" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -17178,19 +13975,14 @@ }, /obj/structure/platform_decoration/kutjevo, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "leI" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southeast, /area/varadero/interior/research) "leO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17201,16 +13993,11 @@ }, /obj/structure/surface/table, /obj/item/weapon/gun/flamer, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "leP" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_near) "leT" = ( /obj/structure/machinery/conveyor, @@ -17219,17 +14006,13 @@ /area/varadero/interior/cargo) "leU" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "lfp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "lgb" = ( /obj/structure/bedsheetbin, @@ -17238,18 +14021,13 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "lgP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "lhm" = ( /obj/structure/surface/table/reinforced/prison, @@ -17262,10 +14040,7 @@ pixel_x = -6; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/administration) "lhn" = ( /obj/structure/catwalk, @@ -17275,24 +14050,18 @@ density = 0; climb_delay = 0 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "lhp" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "lhB" = ( /obj/structure/window_frame/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "lhJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -17322,25 +14091,18 @@ "liE" = ( /obj/structure/closet/crate/secure/weapon, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "liM" = ( /obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "ljt" = ( /obj/structure/prop/structure_lattice{ dir = 1; health = 300 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "ljx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17349,16 +14111,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "lkz" = ( /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "lkH" = ( /obj/structure/largecrate/random/barrel/red, @@ -17366,16 +14123,11 @@ /area/varadero/interior/hall_N) "lkI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "llj" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "lmd" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17385,9 +14137,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "lms" = ( /obj/structure/machinery/door/airlock/strata/autoname{ @@ -17395,9 +14145,7 @@ locked = 1; name = "\improper Engine Room" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "lmu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17406,10 +14154,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "lmS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -17426,10 +14171,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "lnw" = ( /obj/structure/surface/table/reinforced/prison, @@ -17441,16 +14183,11 @@ pixel_x = 6; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/administration) "lnG" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "lnO" = ( /turf/open/gm/coast/north, @@ -17458,9 +14195,7 @@ "loh" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "loA" = ( /obj/structure/prop/structure_lattice{ @@ -17482,30 +14217,20 @@ /area/varadero/interior_protected/maintenance/south) "loQ" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "loW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "lpv" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "lpJ" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/maintenance/north) "lqa" = ( /obj/item/tool/warning_cone{ @@ -17539,25 +14264,18 @@ pixel_y = 5 }, /obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/administration) "lrR" = ( /obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "lss" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "lsN" = ( /obj/effect/overlay/palmtree_r, @@ -17565,27 +14283,20 @@ /area/varadero/exterior/pontoon_beach) "lsR" = ( /obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "lsT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) "ltA" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/records) "ltB" = ( /obj/structure/machinery/storm_siren{ @@ -17605,33 +14316,22 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "ltW" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "lum" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "lun" = ( /obj/item/device/mass_spectrometer, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "lur" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "luu" = ( /obj/item/tool/warning_cone{ @@ -17656,9 +14356,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -17683,17 +14381,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "lvG" = ( /obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/bunks) "lvS" = ( /obj/structure/machinery/door/airlock/strata/autoname{ @@ -17703,9 +14395,7 @@ locked = 1; name = "\improper Research Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "lvV" = ( /obj/structure/window/reinforced{ @@ -17714,10 +14404,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/varadero/interior/disposals) "lwm" = ( /obj/structure/platform/kutjevo/smooth{ @@ -17750,22 +14437,15 @@ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "lxs" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "lxy" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "lxR" = ( /obj/structure/platform/kutjevo/smooth{ @@ -17778,10 +14458,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "lxT" = ( /obj/structure/surface/table/reinforced/prison, @@ -17792,19 +14469,14 @@ pixel_x = -8; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "lyp" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "lyP" = ( /turf/closed/wall/rock/brown, @@ -17812,16 +14484,10 @@ "lze" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "lzu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "lzD" = ( /obj/effect/overlay/palmtree_r, @@ -17829,10 +14495,7 @@ /area/varadero/exterior/pontoon_beach) "lzP" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "lzT" = ( /turf/closed/wall/rock/brown, @@ -17844,34 +14507,25 @@ pixel_x = -24; indestructible = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/varadero/interior/maintenance/north) "lAk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "lBf" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "lBw" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "lCK" = ( /obj/structure/prop/structure_lattice{ @@ -17887,53 +14541,35 @@ icon_state = "vent4"; pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "lDh" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) "lDk" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/hall_N) "lDm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "lDz" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) "lDN" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "lDS" = ( /obj/structure/bed/roller, /obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "lEc" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17943,34 +14579,25 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "lEm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz1_near) "lEw" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "lEM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "lEV" = ( /obj/structure/barricade/handrail/wire{ @@ -17994,19 +14621,13 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "lFl" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/varadero/interior/cargo) "lFr" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "lFA" = ( /obj/structure/machinery/storm_siren{ @@ -18017,9 +14638,7 @@ /area/varadero/interior/hall_SE) "lFE" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "lFI" = ( /obj/structure/prop/structure_lattice{ @@ -18042,15 +14661,11 @@ unacidable = 1; layer = 4.1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "lFS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "lFT" = ( /obj/structure/stairs/perspective{ @@ -18058,10 +14673,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, @@ -18085,17 +14697,13 @@ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "lIb" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "lId" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18114,18 +14722,13 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "lIo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "lIE" = ( /obj/structure/surface/table/reinforced/prison, @@ -18133,10 +14736,7 @@ dir = 1; name = "LZ1 Pontoon Dock computer" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_console) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ @@ -18153,10 +14753,7 @@ dir = 1; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "lIU" = ( /obj/effect/spawner/random/attachment, @@ -18176,10 +14773,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/varadero/interior/medical) "lKI" = ( /obj/structure/surface/table/reinforced/prison, @@ -18188,47 +14782,31 @@ pixel_y = 7 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "lKS" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "lKV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "lLq" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/technical_storage) "lLZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/hall_N) "lMb" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "lMl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18236,45 +14814,27 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "lMq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, /obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/administration) "lMv" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) "lMB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "lMD" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/hall_SE) "lMP" = ( /obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) "lNb" = ( /obj/structure/window/framed/colony/reinforced, @@ -18282,18 +14842,13 @@ /area/varadero/interior/hall_SE) "lNd" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "lNq" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/item/toy/plush/farwa, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/security) "lNw" = ( /obj/structure/surface/table/reinforced/prison, @@ -18314,10 +14869,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) "lOc" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -18325,9 +14877,7 @@ pixel_x = -14; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "lPj" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -18343,9 +14893,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "lPk" = ( /obj/item/stack/cable_coil/cut{ @@ -18355,10 +14903,7 @@ /turf/open/floor/plating, /area/varadero/interior/hall_SE) "lPq" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/morgue) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -18378,23 +14923,15 @@ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "lQO" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/mess) "lQW" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "lRy" = ( /obj/structure/surface/table, @@ -18406,9 +14943,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "lRz" = ( /obj/item/ammo_casing{ @@ -18420,14 +14955,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "purplecorners" - }, +/turf/open/floor/shiva/purplecorners, /area/varadero/interior/research) "lSg" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "lSG" = ( /obj/structure/curtain/shower, @@ -18437,10 +14968,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/varadero/interior/court) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, @@ -18456,32 +14984,21 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "lTR" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "lUe" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "lUG" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "lUT" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/varadero/interior/mess) "lVa" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18489,15 +15006,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) "lVc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "lVf" = ( /obj/item/tool/warning_cone{ @@ -18515,9 +15028,7 @@ "lVP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "lVQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -18557,17 +15068,13 @@ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "lWo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "lWB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18579,9 +15086,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "lWJ" = ( /obj/structure/machinery/firealarm{ @@ -18599,10 +15104,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "lXv" = ( /obj/effect/decal/cleanable/dirt, @@ -18625,9 +15127,7 @@ dir = 1 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "lYi" = ( /obj/structure/surface/table, @@ -18635,9 +15135,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "lYo" = ( /obj/structure/prop/rock/brown, @@ -18649,16 +15147,12 @@ "lYA" = ( /obj/structure/closet/secure_closet/medical2, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "lYD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "lYF" = ( /obj/structure/largecrate/random/case, @@ -18667,9 +15161,7 @@ "lYQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "lZa" = ( /obj/structure/prop/structure_lattice{ @@ -18685,10 +15177,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/varadero/interior/hall_SE) "lZh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -18707,9 +15196,7 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "lZU" = ( /obj/item/ammo_casing/shell{ @@ -18727,25 +15214,17 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "mau" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "maN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "maQ" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/administration) "mbt" = ( /obj/structure/bed/chair{ @@ -18755,10 +15234,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "mbu" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -18768,9 +15244,7 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "mca" = ( /obj/structure/surface/table/reinforced/prison, @@ -18787,10 +15261,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "mcp" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -18798,23 +15269,15 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) "mcr" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "mcs" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "mcB" = ( /obj/structure/platform_decoration/kutjevo, @@ -18844,15 +15307,11 @@ /turf/open/floor/wood, /area/varadero/interior/administration) "mdg" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/lz2_near) "mdj" = ( /obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mdy" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18871,16 +15330,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "mdL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "mdM" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18888,10 +15342,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "mdN" = ( /obj/structure/window/framed/colony/reinforced, @@ -18929,9 +15380,7 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "meS" = ( /obj/effect/landmark/monkey_spawn, @@ -18944,10 +15393,7 @@ /turf/open/floor/carpet, /area/varadero/interior/chapel) "mfP" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "mgq" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -18970,9 +15416,7 @@ pixel_y = 24 }, /obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "miy" = ( /obj/structure/window/framed/colony/reinforced, @@ -18985,41 +15429,29 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "miP" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "miR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/dock_control) "miT" = ( /obj/item/stool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "miU" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "mjA" = ( /obj/structure/disposalpipe/segment{ @@ -19028,9 +15460,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "mkc" = ( /obj/structure/surface/table/reinforced/prison, @@ -19039,10 +15469,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "mke" = ( /obj/structure/window/reinforced{ @@ -19059,10 +15486,7 @@ /obj/structure/largecrate/random/mini/wooden{ desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "mkn" = ( /obj/structure/surface/table, @@ -19075,10 +15499,7 @@ pixel_x = 2; pixel_y = 20 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/technical_storage) "mkt" = ( /obj/structure/machinery/alarm{ @@ -19086,9 +15507,7 @@ pixel_x = -24 }, /obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "mlN" = ( /obj/vehicle/powerloader/ft, @@ -19102,9 +15521,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/maintenance) "mmq" = ( /obj/structure/fence, @@ -19136,9 +15553,7 @@ /area/varadero/exterior/pontoon_beach) "mnc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "mnm" = ( /obj/structure/window/reinforced{ @@ -19201,10 +15616,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/hall_N) "moH" = ( /obj/structure/largecrate/random/case/double, @@ -19232,16 +15644,11 @@ /area/varadero/interior/court) "mpn" = ( /obj/item/weapon/baton, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "mpH" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "mpL" = ( /obj/structure/machinery/light/small, @@ -19249,19 +15656,13 @@ /area/varadero/interior/maintenance/north) "mqe" = ( /obj/structure/cryofeed, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "mqt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "mrd" = ( /obj/structure/disposalpipe/segment{ @@ -19270,14 +15671,10 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "mrC" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz1_near) "mrP" = ( /obj/structure/disposalpipe/segment{ @@ -19288,9 +15685,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "mrR" = ( /obj/effect/decal/cleanable/blood, @@ -19299,9 +15694,7 @@ "mrT" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "mrY" = ( /obj/structure/prop/rock/brown, @@ -19310,28 +15703,20 @@ "msj" = ( /obj/structure/prop/rock/brown, /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "msx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Requesitions Bay" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "mtp" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "mtx" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -19340,10 +15725,7 @@ pixel_y = 13 }, /obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "mtJ" = ( /obj/structure/barricade/wooden, @@ -19354,73 +15736,50 @@ /area/varadero/exterior/lz2_near) "mtU" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "mux" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/hall_N) "muE" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) "mve" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/corpsespawner/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "mvi" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "mvv" = ( /obj/effect/decal/remains/xeno{ pixel_y = 25 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "mvA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mvI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "mvO" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "mwd" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -19445,10 +15804,7 @@ pixel_x = 1; pixel_y = -2 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "mwD" = ( /obj/item/storage/toolbox/mechanical{ @@ -19465,9 +15821,7 @@ /obj/item/stack/cable_coil/cut{ pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "mwI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -19479,9 +15833,7 @@ /area/varadero/interior/hall_N) "mxx" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -19499,27 +15851,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "mym" = ( /obj/structure/lamarr, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "myo" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/varadero/interior/cargo) "mzf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19527,9 +15872,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19548,18 +15891,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "mzI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "mzJ" = ( /obj/structure/prop/structure_lattice{ @@ -19583,25 +15921,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "mAm" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "mAB" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "mAP" = ( /obj/structure/surface/rack, @@ -19613,9 +15944,7 @@ pixel_x = -2; pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "mAX" = ( /obj/structure/prop/dam/van{ @@ -19624,21 +15953,15 @@ name = "crawler"; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "mBG" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) "mCe" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mCx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19647,10 +15970,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/disposals) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, @@ -19691,10 +16011,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "mDm" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -19716,10 +16033,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "mEA" = ( /obj/structure/surface/table/reinforced/prison, @@ -19727,18 +16041,13 @@ pixel_x = -3; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "mEB" = ( /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "mED" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -19746,27 +16055,18 @@ /area/varadero/interior/caves/east) "mFY" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "mGb" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "mHa" = ( /obj/item/tank/anesthetic, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "mHh" = ( /obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mHM" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -19783,22 +16083,15 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "mIG" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "mIL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "mIQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -19806,9 +16099,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -19830,10 +16121,7 @@ /area/varadero/interior/caves/north_research) "mJh" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "mJH" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -19855,33 +16143,23 @@ pixel_x = 6; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "mLg" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "mLt" = ( /obj/structure/sign/goldenplaque{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "mLB" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "mLJ" = ( /obj/structure/platform_decoration/kutjevo, @@ -19909,19 +16187,14 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "mMZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "mNm" = ( /obj/structure/machinery/light{ @@ -19930,18 +16203,13 @@ /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "mNO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "mNT" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -19952,76 +16220,53 @@ icon_state = "pointybush_2"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mOx" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) "mOG" = ( /obj/structure/prop/structure_lattice{ dir = 1; health = 300 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "mOO" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "mPf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "mPk" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "mPl" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "mPI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "mPT" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "mPW" = ( /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "mPX" = ( /obj/structure/machinery/floodlight/landing{ @@ -20029,37 +16274,26 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "mQh" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "mQC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "mQF" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "mQG" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "mRq" = ( /obj/structure/window/framed/colony, @@ -20070,22 +16304,15 @@ color = "#aba9a9" }, /obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "mRL" = ( /obj/item/paper/crumpled/bloody, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "mRZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "mSa" = ( /obj/structure/tunnel{ @@ -20117,9 +16344,7 @@ /area/varadero/interior/bunks) "mSf" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -20127,9 +16352,7 @@ /area/varadero/interior_protected/maintenance/south) "mSD" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "mSS" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -20142,9 +16365,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "mTD" = ( /obj/structure/machinery/light{ @@ -20170,22 +16391,15 @@ /turf/open/floor/carpet, /area/varadero/interior/chapel) "mUz" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/eastbeach) "mUP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "mVc" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ @@ -20224,25 +16438,16 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "mVN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "mVS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/hall_SE) "mVY" = ( /obj/structure/platform/kutjevo/smooth{ @@ -20251,10 +16456,7 @@ layer = 2.99 }, /obj/item/clothing/under/shorts/grey, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "mXi" = ( /obj/effect/landmark/objective_landmark/far, @@ -20264,18 +16466,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "mXx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Sports Center" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "mXO" = ( /obj/structure/machinery/firealarm{ @@ -20289,25 +16486,17 @@ pixel_x = -9 }, /obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/hall_N) "mXV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "mYd" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "mYA" = ( /obj/structure/blocker/invisible_wall/water, @@ -20316,27 +16505,17 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "mYR" = ( /obj/item/facepaint/sunscreen_stick, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "mYW" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/varadero/interior/cargo) "mZi" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/court) "mZk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20344,9 +16523,7 @@ }, /obj/structure/closet/crate, /obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "mZC" = ( /obj/structure/surface/table/woodentable{ @@ -20370,10 +16547,7 @@ pixel_x = 32 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "mZH" = ( /obj/structure/blocker/invisible_wall/water, @@ -20387,33 +16561,24 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "nak" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) "nau" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "nbA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, @@ -20428,17 +16593,12 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) "nch" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ncn" = ( /obj/item/trash/cheesie, @@ -20482,10 +16642,7 @@ color = "#6b675e" }, /obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "nee" = ( /obj/structure/barricade/handrail/wire{ @@ -20500,10 +16657,7 @@ /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "neD" = ( /obj/structure/fence, @@ -20517,9 +16671,7 @@ /area/varadero/interior_protected/caves/digsite) "neJ" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "neU" = ( /obj/structure/machinery/power/apc{ @@ -20527,42 +16679,32 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "nfk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "nfv" = ( /obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "nfX" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -11; pixel_y = -4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "nfZ" = ( /obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "ngg" = ( /turf/closed/wall/rock/brown, @@ -20577,16 +16719,11 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "ngC" = ( /obj/structure/largecrate/random/mini/chest, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "ngY" = ( /obj/item/stack/sheet/metal/med_small_stack, @@ -20651,10 +16788,7 @@ name = "support struts" }, /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "nih" = ( /obj/structure/prop/structure_lattice{ @@ -20663,9 +16797,7 @@ icon_state = "book-5"; name = "book case" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, @@ -20678,9 +16810,7 @@ /area/varadero/exterior/lz2_near) "niF" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "njC" = ( /obj/structure/platform_decoration/kutjevo{ @@ -20700,10 +16830,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "nkq" = ( /obj/effect/decal/remains/human, @@ -20711,9 +16838,7 @@ basecolor = "#20d450"; color = "#20d450" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20732,9 +16857,7 @@ pixel_y = 11 }, /obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ @@ -20761,60 +16884,42 @@ }, /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "nmQ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "nnb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "nni" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "nnk" = ( /obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "nnt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Requesitions Lobby" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "nnw" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "nnF" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "noj" = ( /obj/item/device/flashlight/lamp/tripod, @@ -20822,9 +16927,7 @@ /area/varadero/interior_protected/maintenance/south) "noC" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "noR" = ( /obj/item/shard{ @@ -20838,9 +16941,7 @@ pixel_x = -3 }, /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "npF" = ( /obj/effect/landmark/survivor_spawner, @@ -20864,42 +16965,31 @@ /obj/item/stool{ icon_state = "stool_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/technical_storage) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) "nrd" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "nsl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "nsn" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "nsN" = ( /turf/open/gm/coast/south, @@ -20911,9 +17001,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "nuv" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -20921,40 +17009,28 @@ pixel_x = 12; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "nuQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "nvv" = ( /obj/structure/blocker/fog, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "nwi" = ( /obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "nwq" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) "nxl" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "nxW" = ( /obj/structure/window/framed/colony, @@ -20964,34 +17040,23 @@ /obj/structure/closet/hydrant{ pixel_x = -32 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "nzb" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "nzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "nzr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/varadero/interior/mess) "nzS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21006,10 +17071,7 @@ /obj/item/tool/pickaxe/drill{ pixel_y = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -21017,10 +17079,7 @@ "nBj" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "nBl" = ( /obj/structure/machinery/power/apc{ @@ -21028,10 +17087,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) "nBD" = ( /obj/structure/surface/table, @@ -21041,9 +17097,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "nBH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -21052,21 +17106,15 @@ req_one_access = null; req_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "nCl" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "nCE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -21092,9 +17140,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21110,9 +17156,7 @@ /obj/structure/prop/server_equipment/laptop/on{ pixel_x = -5 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "nEY" = ( /obj/effect/decal/warning_stripes{ @@ -21124,15 +17168,11 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "nFg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "nFp" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21144,35 +17184,23 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "nFy" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "nFB" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/warning_stripes, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "nFD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "nFH" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21180,10 +17208,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "nFK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -21200,10 +17225,7 @@ name = "\improper Underground Engineering Locker Room"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "nHy" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21215,15 +17237,11 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "nHA" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "nHC" = ( /obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "nHH" = ( /obj/structure/platform_decoration/kutjevo{ @@ -21238,10 +17256,7 @@ pixel_x = -17; pixel_y = -19 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -21262,10 +17277,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, @@ -21277,15 +17289,11 @@ /area/varadero/exterior/lz1_near) "nKd" = ( /obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "nKf" = ( /obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "nKr" = ( /obj/structure/surface/table, @@ -21293,9 +17301,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "nKy" = ( /obj/structure/surface/rack, @@ -21307,17 +17313,11 @@ /area/varadero/interior/maintenance/north) "nKR" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) "nLw" = ( /obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/southwest, /area/varadero/interior/research) "nLH" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -21329,22 +17329,14 @@ dir = 8; layer = 3.5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "nLI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "nMe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "nMJ" = ( /obj/item/tool/pickaxe, @@ -21361,9 +17353,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "nNz" = ( /obj/structure/machinery/light{ @@ -21381,9 +17371,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "nOg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21395,16 +17383,11 @@ name = "Underground Power Substation"; req_access_txt = "100" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "nOj" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, @@ -21433,9 +17416,7 @@ "nOO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "nOQ" = ( /obj/structure/safe/floor{ @@ -21455,10 +17436,7 @@ dir = 1 }, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "nPE" = ( /obj/structure/safe, @@ -21484,10 +17462,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/technical_storage) "nPI" = ( /obj/structure/prop/structure_lattice{ @@ -21501,19 +17476,14 @@ "nPK" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "nPR" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "nQo" = ( /obj/structure/machinery/conveyor, @@ -21531,10 +17501,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "nQR" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21542,30 +17509,20 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "nRk" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/med_large_stack, /obj/item/trash/boonie, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "nRy" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/mess) "nRH" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/interior/maintenance/north) "nRP" = ( /obj/structure/machinery/power/apc{ @@ -21574,18 +17531,13 @@ start_charge = 0 }, /obj/item/cell/high, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "nRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "nRU" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -21593,18 +17545,13 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "nRW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/medical) "nSi" = ( /obj/structure/largecrate/random/case, @@ -21623,9 +17570,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "nTG" = ( /turf/closed/wall/r_wall, @@ -21648,10 +17593,7 @@ pixel_y = -9 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) "nTS" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -21659,10 +17601,7 @@ /area/varadero/interior/technical_storage) "nUf" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "nVk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21676,18 +17615,13 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "nVn" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/varadero/interior/disposals) "nVv" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21704,26 +17638,17 @@ unacidable = 1; layer = 4.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "nVy" = ( /obj/structure/closet/coffin, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/morgue) "nWg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "nWS" = ( /obj/item/stack/tile/plasteel{ @@ -21740,18 +17665,13 @@ /obj/item/paper_bin{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "nXR" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "nXY" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -21760,40 +17680,28 @@ /obj/structure/flora/bush/desert{ pixel_y = 14 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_NW) "nYx" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "nYy" = ( /obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "nYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "nZd" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "nZi" = ( /obj/structure/window/reinforced{ @@ -21814,10 +17722,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -21829,9 +17734,7 @@ /area/varadero/interior/court) "nZP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "oam" = ( /obj/structure/disposalpipe/segment{ @@ -21841,10 +17744,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "oaO" = ( /obj/effect/decal/cleanable/blood/drip, @@ -21855,18 +17755,14 @@ /turf/open/floor/wood, /area/varadero/interior/maintenance/north) "oaR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/varadero/interior/security) "obm" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "obr" = ( /obj/effect/overlay/palmtree_r{ @@ -21882,24 +17778,16 @@ pixel_y = -18; indestructible = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/varadero/exterior/lz1_near) "obS" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "ocr" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "ocz" = ( /obj/structure/prop/structure_lattice{ @@ -21915,9 +17803,7 @@ icon_state = "vent4"; pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "ocQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -21926,9 +17812,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "odw" = ( /obj/structure/machinery/photocopier, @@ -21943,26 +17827,18 @@ /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "odZ" = ( /obj/structure/closet/toolcloset, /obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "oef" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "oep" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21977,9 +17853,7 @@ dir = 8 }, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "oeO" = ( /obj/structure/surface/table, @@ -21987,9 +17861,7 @@ pixel_x = 6; pixel_y = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -22006,9 +17878,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "ogj" = ( /obj/structure/surface/table/woodentable, @@ -22025,10 +17895,7 @@ /area/varadero/interior/library) "ogq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) "ogW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22050,10 +17917,7 @@ name = "Checkpoint Lockdown"; pixel_y = 36 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "ohC" = ( /obj/structure/platform/kutjevo/smooth{ @@ -22068,9 +17932,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "oiB" = ( /obj/structure/machinery/firealarm{ @@ -22089,49 +17951,32 @@ pixel_x = -13; pixel_y = 3 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "oiM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/administration) "ojm" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ojF" = ( /obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ojG" = ( /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "ojJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "oke" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "okf" = ( /obj/structure/surface/rack, @@ -22140,31 +17985,23 @@ pixel_y = 5 }, /obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "okB" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "okI" = ( /obj/structure/surface/rack, /obj/item/implantpad, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "okJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ola" = ( /obj/structure/machinery/power/apc{ @@ -22172,15 +18009,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "olD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/varadero/exterior/lz1_near) "olP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -22188,9 +18020,7 @@ name = "\improper Underground Requesitions Freezer"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -22202,9 +18032,7 @@ /area/varadero/interior/administration) "omj" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "onj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -22214,10 +18042,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ooe" = ( /obj/structure/surface/rack, @@ -22230,9 +18055,7 @@ pixel_x = 12; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "oos" = ( /obj/structure/bed/chair/wood/normal{ @@ -22241,17 +18064,12 @@ /turf/open/floor/carpet, /area/varadero/interior/library) "ooP" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "opd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/beach_bar) "opP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -22262,10 +18080,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "opW" = ( /obj/structure/surface/table/woodentable/fancy, @@ -22291,18 +18106,13 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "orb" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -22330,10 +18140,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "osn" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -22344,17 +18151,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "ost" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "osE" = ( /obj/structure/largecrate/random/barrel, @@ -22379,9 +18182,7 @@ dir = 8 }, /obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22392,24 +18193,17 @@ /area/varadero/interior/caves/east) "ouP" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ouV" = ( /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) "ovp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "ovC" = ( /turf/open/floor/carpet, @@ -22430,9 +18224,7 @@ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -22469,9 +18261,7 @@ pixel_y = 11 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22490,10 +18280,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "oyb" = ( /obj/structure/prop/structure_lattice{ @@ -22502,15 +18289,11 @@ icon_state = "book-3"; name = "book case" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "oyi" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "oyl" = ( /obj/structure/stairs/perspective{ @@ -22522,17 +18305,13 @@ /area/varadero/exterior/lz2_near) "oyv" = ( /obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/lz2_near) "oyx" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "oyT" = ( /obj/structure/surface/table/reinforced/prison, @@ -22558,16 +18337,11 @@ /area/varadero/interior/security) "ozz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) "ozC" = ( /obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "ozD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -22575,19 +18349,14 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "oAm" = ( /obj/structure/toilet{ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, @@ -22613,9 +18382,7 @@ /area/varadero/exterior/monsoon) "oBj" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "oBq" = ( /obj/item/shard{ @@ -22630,10 +18397,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "oBG" = ( /obj/structure/machinery/light{ @@ -22642,10 +18406,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/court) "oBJ" = ( /obj/structure/machinery/shower{ @@ -22656,10 +18417,7 @@ /area/varadero/interior/laundry) "oBP" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/electrical) "oBQ" = ( /obj/structure/bed/chair{ @@ -22670,33 +18428,23 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) "oBR" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "oCi" = ( /obj/item/shard{ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "oCy" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "oCN" = ( /obj/structure/machinery/computer/cameras{ @@ -22706,21 +18454,14 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "oCR" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/lz1_near) "oDz" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -22731,9 +18472,7 @@ /area/varadero/exterior/eastbeach) "oDN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "oDS" = ( /obj/structure/sign/safety/hazard{ @@ -22759,9 +18498,7 @@ dir = 4 }, /obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "oET" = ( /turf/closed/wall/r_wall/unmeltable, @@ -22769,32 +18506,22 @@ "oEX" = ( /obj/structure/closet/crate, /obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "oFd" = ( /obj/structure/bed/chair/office/dark{ dir = 4; icon_state = "chair" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "oFq" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/mess) "oGc" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "oGv" = ( /turf/open/gm/dirt, @@ -22814,16 +18541,11 @@ dir = 4 }, /obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "oIC" = ( /obj/structure/janitorialcart, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "oJb" = ( /obj/structure/stairs/perspective{ @@ -22840,29 +18562,20 @@ name = "Underground Hangar Power Substation"; req_access = null }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "oJv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "oJB" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "oJW" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "oJX" = ( /obj/item/stack/sheet/metal, @@ -22906,35 +18619,24 @@ pixel_y = 24 }, /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "oKy" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "oKN" = ( /obj/item/weapon/gun/shotgun/pump, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/hall_N) "oLa" = ( /obj/item/trash/barcardine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "oLM" = ( /obj/structure/sign/safety/airlock{ @@ -22954,10 +18656,7 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "oMa" = ( /obj/structure/surface/table, @@ -22981,62 +18680,42 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "oMs" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "oNa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) "oOF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "oPb" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "oPe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "oPr" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "oPQ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "oPV" = ( /turf/open/floor/plating, @@ -23049,9 +18728,7 @@ pixel_x = 4; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "oRB" = ( /obj/structure/closet/hydrant{ @@ -23062,9 +18739,7 @@ pixel_x = -2; pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "oRD" = ( /obj/structure/prop/rock/brown, @@ -23080,16 +18755,12 @@ }, /obj/effect/landmark/objective_landmark/far, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "oSe" = ( /obj/structure/surface/table, /obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "oSX" = ( /obj/structure/window/framed/colony/reinforced, @@ -23111,10 +18782,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/device/taperecorder, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) "oTX" = ( /obj/structure/platform/kutjevo/smooth{ @@ -23122,10 +18790,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "oUh" = ( /obj/structure/cable/heavyduty{ @@ -23140,35 +18805,23 @@ /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) "oUp" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/morgue) "oUO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/inflatable, /obj/item/inflatable/door, /obj/item/storage/box/engineer, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "oVm" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/comms3) "oVn" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) "oVp" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -23178,18 +18831,13 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "oVr" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners/west, /area/varadero/interior/security) "oVt" = ( /obj/effect/landmark/monkey_spawn, @@ -23201,9 +18849,7 @@ name = "Construction Light" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastocean) "oWg" = ( /obj/structure/prop/rock/brown, @@ -23233,15 +18879,11 @@ /area/varadero/interior_protected/caves/digsite) "oWO" = ( /obj/structure/toilet, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "oWU" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "oXf" = ( /turf/open/floor/carpet, @@ -23250,16 +18892,10 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "oXm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "oXo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -23267,10 +18903,7 @@ /area/varadero/interior_protected/caves/digsite) "oXp" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "oXw" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -23291,42 +18924,30 @@ pixel_y = 24 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "oXZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/administration) "oYB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) "oZw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "oZA" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "oZJ" = ( /obj/structure/fence, @@ -23337,10 +18958,7 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "paB" = ( /obj/structure/surface/table/reinforced/prison, @@ -23351,9 +18969,7 @@ dir = 8; health = 80 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "pbd" = ( /obj/structure/surface/table/woodentable, @@ -23382,10 +18998,7 @@ /turf/open/floor/wood, /area/varadero/interior/administration) "pbp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/varadero/exterior/lz1_near) "pbt" = ( /turf/closed/wall, @@ -23398,9 +19011,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "pbM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -23408,9 +19019,7 @@ name = "\improper Underground Staff Canteen" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "pbT" = ( /obj/structure/prop/rock/brown, @@ -23420,9 +19029,7 @@ "pco" = ( /obj/structure/surface/rack, /obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "pcH" = ( /obj/effect/decal/cleanable/blood{ @@ -23436,24 +19043,17 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "pcK" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/technical_storage) "pdc" = ( /obj/structure/largecrate/random{ anchored = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "pdn" = ( /obj/item/tool/shovel/spade, @@ -23465,15 +19065,10 @@ pixel_x = 2; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "pdK" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/lz2_near) "pea" = ( /obj/structure/prop/rock/brown, @@ -23496,19 +19091,13 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "peA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -23517,25 +19106,18 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "pfL" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "pfR" = ( /obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "pgg" = ( /obj/item/tool/pickaxe, @@ -23552,10 +19134,7 @@ "phd" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "phk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -23579,10 +19158,7 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) "pja" = ( /obj/structure/bed/chair/comfy/black{ @@ -23598,17 +19174,13 @@ pixel_y = 28 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "pjm" = ( /obj/effect/decal/remains/xeno{ pixel_y = -25 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "pjn" = ( /obj/structure/pipes/vents/pump{ @@ -23619,9 +19191,7 @@ /area/varadero/interior/library) "pjs" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/research) "pjD" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -23643,10 +19213,7 @@ desc = "A high-power hydroelectric generator."; name = "hydroelectric generator" }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "pku" = ( /obj/structure/desertdam/decals/road_edge{ @@ -23665,33 +19232,23 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "pkT" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/electrical) "pkX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "plc" = ( /obj/structure/surface/rack, /obj/item/clipboard, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -23703,10 +19260,7 @@ /area/varadero/exterior/eastbeach) "plm" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -23724,17 +19278,13 @@ pixel_x = 1; pixel_y = -2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "plN" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "plT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -23746,9 +19296,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "pmy" = ( /obj/structure/surface/table/reinforced/prison, @@ -23763,28 +19311,18 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "pmM" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "pmW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "pnn" = ( /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "pnL" = ( /obj/structure/machinery/light, @@ -23792,10 +19330,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23807,10 +19342,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "pox" = ( /obj/structure/machinery/storm_siren{ @@ -23829,9 +19361,7 @@ pixel_x = 13; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "poE" = ( /obj/structure/stairs/perspective{ @@ -23839,18 +19369,13 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "poU" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "ppl" = ( /obj/effect/landmark/xeno_spawn, @@ -23860,26 +19385,18 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "ppU" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "pqf" = ( /obj/structure/window/phoronreinforced{ dir = 4; icon_state = "phoronrwindow" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23889,45 +19406,30 @@ /area/varadero/interior/records) "pqC" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "pqG" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/court) "pqH" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "pqO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) "pqY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) "prh" = ( /obj/structure/disposalpipe/segment{ @@ -23935,10 +19437,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) "prl" = ( /obj/item/grown/log, @@ -23954,10 +19453,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "psb" = ( /obj/item/trash/cigbutt/ucigbutt{ @@ -23976,9 +19472,7 @@ /area/varadero/exterior/lz1_near) "psk" = ( /obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/varadero/interior/beach_bar) "pth" = ( /obj/structure/surface/rack, @@ -23989,9 +19483,7 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "ptp" = ( /obj/structure/platform/kutjevo/smooth{ @@ -23999,16 +19491,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "ptw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/laundry) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -24020,32 +19507,22 @@ /area/varadero/interior/maintenance/north) "ptM" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "ptP" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "ptY" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "pun" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/pontoon_beach) "puq" = ( /obj/item/lightstick/variant/planted, @@ -24063,10 +19540,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "pvs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24075,9 +19549,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -24090,10 +19562,7 @@ /obj/item/reagent_container/food/drinks/bottle/orangejuice{ pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "pxa" = ( /obj/structure/surface/table/reinforced/prison, @@ -24109,9 +19578,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "pyk" = ( /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -24123,53 +19590,35 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "pyz" = ( /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "pAa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "pAp" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/varadero/exterior/lz1_near) "pAX" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "pAZ" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/glass/phoronglass{ amount = 32 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/electrical) "pBb" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "pBf" = ( /obj/structure/prop/rock/brown{ @@ -24183,10 +19632,7 @@ layer = 2.1; name = "lattice" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/vessel) "pBo" = ( /obj/structure/coatrack, @@ -24198,9 +19644,7 @@ /area/varadero/interior/security) "pBx" = ( /obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "pBK" = ( /obj/structure/filingcabinet{ @@ -24209,18 +19653,13 @@ /obj/structure/filingcabinet{ pixel_x = 8 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/administration) "pBS" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "pCa" = ( /obj/structure/blocker/invisible_wall/water, @@ -24232,10 +19671,7 @@ /obj/structure/largecrate/random/mini/ammo{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "pCf" = ( /obj/structure/disposalpipe/segment{ @@ -24248,24 +19684,18 @@ dir = 1; name = "\improper Underground Main Hallway" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "pCp" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "pCO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/electrical) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -24281,10 +19711,7 @@ /obj/item/stack/cable_coil/blue, /obj/item/stack/rods, /obj/item/storage/donut_box, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "pDl" = ( /obj/structure/girder, @@ -24295,9 +19722,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "pDF" = ( /obj/structure/machinery/storm_siren{ @@ -24306,16 +19731,11 @@ }, /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "pDW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "pDX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24327,10 +19747,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "pEE" = ( /obj/structure/disposalpipe/segment{ @@ -24339,9 +19756,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "pFd" = ( /obj/item/storage/pouch/construction, @@ -24354,10 +19769,7 @@ /area/varadero/exterior/eastbeach) "pFF" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "pGc" = ( /obj/structure/window/framed/colony/reinforced, @@ -24368,10 +19780,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "pGj" = ( /obj/structure/prop/rock/brown, @@ -24388,25 +19797,18 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "pGS" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "pIe" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "pIj" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "pIz" = ( /obj/structure/surface/table, @@ -24430,9 +19832,7 @@ pixel_x = 5; pixel_y = 15 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, @@ -24441,23 +19841,17 @@ /area/varadero/interior/security) "pJf" = ( /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "pJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "pJp" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "pJs" = ( /obj/effect/decal/cleanable/blood, @@ -24472,9 +19866,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "pJF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24482,17 +19874,12 @@ /area/varadero/interior_protected/caves) "pJQ" = ( /obj/item/book/manual/evaguide, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "pJZ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "pKg" = ( /obj/item/book/manual/nuclear, @@ -24513,10 +19900,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -24532,17 +19916,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/administration) "pMe" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/morgue) "pMy" = ( /obj/structure/window/reinforced{ @@ -24565,25 +19943,18 @@ }, /obj/item/toy/plush/farwa, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "pMG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_near) "pNa" = ( /obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ layer = 3.01 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24608,10 +19979,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "pNR" = ( /obj/effect/decal/cleanable/blood/drip, @@ -24637,35 +20005,25 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/maintenance) "pOa" = ( /obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "pOg" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "pOz" = ( /obj/structure/machinery/computer/card{ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/disposals) "pOC" = ( /obj/item/tool/wirecutters/clippers, @@ -24678,15 +20036,11 @@ pixel_x = -4; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "pPl" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) "pQp" = ( /turf/closed/wall/r_wall, @@ -24696,9 +20050,7 @@ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "pQF" = ( /obj/structure/disposalpipe/segment{ @@ -24709,16 +20061,10 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/technical_storage) "pRa" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "pRb" = ( /obj/effect/decal/cleanable/blood/drip, @@ -24729,10 +20075,7 @@ /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/varadero/interior/disposals) "pRs" = ( /obj/structure/prop/souto_land/pole{ @@ -24747,16 +20090,10 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/security) "pRP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "pRR" = ( /obj/structure/platform/kutjevo/smooth{ @@ -24771,18 +20108,13 @@ /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) "pRX" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) "pSg" = ( /obj/structure/inflatable/door, @@ -24793,18 +20125,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "pSK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "pTc" = ( /obj/structure/machinery/door/airlock/strata/autoname{ @@ -24812,9 +20139,7 @@ locked = 1; name = "\improper Engine Room" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "pTg" = ( /obj/structure/machinery/light{ @@ -24825,10 +20150,7 @@ /area/varadero/interior/maintenance/north) "pTI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/lz2_near) "pTO" = ( /obj/effect/decal/warning_stripes{ @@ -24850,10 +20172,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "pUi" = ( /obj/structure/platform/kutjevo/smooth{ @@ -24883,26 +20202,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "pVl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "pVz" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "pVF" = ( /obj/structure/surface/rack, @@ -24910,10 +20223,7 @@ desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "pVN" = ( /obj/structure/window/framed/colony, @@ -24924,10 +20234,7 @@ density = 0; pixel_y = 17 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "pXp" = ( /obj/structure/disposalpipe/junction{ @@ -24937,25 +20244,18 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "pXG" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/varadero/interior/hall_SE) "pXL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ @@ -24973,14 +20273,10 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "pYv" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "pYx" = ( /obj/structure/window/reinforced{ @@ -25020,9 +20316,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "pYK" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/monsoon) "pYV" = ( /obj/structure/pipes/vents/pump, @@ -25031,10 +20325,7 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "pZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25043,15 +20334,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) "pZD" = ( /obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -25071,9 +20358,7 @@ "qaX" = ( /obj/structure/window_frame/colony/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "qaY" = ( /obj/structure/sign/safety/water, @@ -25092,10 +20377,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "qcD" = ( /obj/structure/bed/chair{ @@ -25107,9 +20389,7 @@ pixel_x = -10; pixel_y = -9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "qcN" = ( /turf/closed/wall, @@ -25118,15 +20398,10 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "qdk" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/comms3) "qdL" = ( /obj/structure/surface/table/reinforced/prison, @@ -25176,9 +20451,7 @@ /area/varadero/interior/bunks) "qeK" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "qfb" = ( /obj/structure/closet/crate/ammo/alt, @@ -25192,9 +20465,7 @@ pixel_y = -5 }, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "qfr" = ( /turf/open/gm/dirt, @@ -25220,10 +20491,7 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -25233,18 +20501,14 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "qgR" = ( /obj/item/storage/firstaid/regular{ pixel_x = 4; pixel_y = -6 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/hall_N) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25258,9 +20522,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "qhO" = ( /obj/effect/spawner/random/tool, @@ -25280,19 +20542,14 @@ /area/varadero/exterior/lz1_near) "qhZ" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) "qir" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "qis" = ( /obj/item/paper{ @@ -25309,10 +20566,7 @@ /obj/item/stack/sheet/plasteel{ amount = 24 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/cargo) "qiP" = ( /obj/structure/bed/chair/comfy/beige{ @@ -25322,24 +20576,18 @@ pixel_x = 15; pixel_y = -9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "qjd" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/laundry) "qjg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "qjU" = ( /obj/effect/overlay/palmtree_r{ @@ -25353,9 +20601,7 @@ /area/varadero/exterior/eastbeach) "qkF" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "qlj" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -25363,15 +20609,11 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "qlw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "qlx" = ( /obj/item/stack/tile/plasteel, @@ -25380,9 +20622,7 @@ "qlW" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "qmF" = ( /obj/structure/platform/kutjevo/smooth{ @@ -25394,24 +20634,16 @@ dir = 4; pixel_x = -3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "qnf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "qnm" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "qnp" = ( /obj/item/shard{ @@ -25429,9 +20661,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "qnW" = ( /obj/structure/closet/fireaxecabinet, @@ -25448,15 +20678,10 @@ /area/varadero/exterior/comms4) "qoy" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "qoE" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/varadero/exterior/lz1_near) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -25468,16 +20693,11 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/court) "qpD" = ( /obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "qpK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -25488,9 +20708,7 @@ /turf/open/floor/plating, /area/varadero/interior/maintenance/north) "qpZ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "qqs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -25499,14 +20717,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "qqA" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, @@ -25520,10 +20734,7 @@ /area/varadero/exterior/lz1_near) "qqM" = ( /obj/structure/largecrate/random/mini, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "qqR" = ( /obj/structure/prop/rock/brown{ @@ -25532,10 +20743,7 @@ name = "sturdy rock(s)"; desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "qsb" = ( /obj/structure/platform/kutjevo/smooth{ @@ -25559,26 +20767,19 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "qto" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Underground Security Interrogation"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "qtr" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -25597,10 +20798,7 @@ /obj/item/clothing/ears/earmuffs{ pixel_y = 18 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "qul" = ( /turf/closed/wall/rock/brown, @@ -25611,9 +20809,7 @@ /area/varadero/interior/hall_SE) "quP" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "quR" = ( /obj/item/stack/sheet/metal, @@ -25625,27 +20821,20 @@ /area/varadero/interior/administration) "qvv" = ( /obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/morgue) "qvO" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "qvQ" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "qvS" = ( /turf/open/gm/coast/south, @@ -25655,36 +20844,24 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) "qwE" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "qwQ" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "qwU" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "qxa" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "qxb" = ( /obj/structure/bed/alien{ @@ -25707,15 +20884,10 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "qxu" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_N) "qyk" = ( /obj/structure/machinery/light{ @@ -25742,16 +20914,12 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "qyH" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "qyJ" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -25764,9 +20932,7 @@ /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/beach_bar) "qza" = ( /obj/structure/stairs/perspective{ @@ -25783,9 +20949,7 @@ /area/varadero/interior_protected/vessel) "qzb" = ( /obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "qzd" = ( /obj/structure/filingcabinet/filingcabinet, @@ -25794,10 +20958,7 @@ pixel_x = -11; pixel_y = 20 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) "qzi" = ( /obj/structure/sign/safety/high_voltage, @@ -25822,9 +20983,7 @@ locked = 1; name = "\improper External Airlock" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "qAg" = ( /obj/effect/landmark/monkey_spawn, @@ -25838,10 +20997,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "qAy" = ( /obj/item/tool/shovel, @@ -25864,10 +21020,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "qAS" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -25880,9 +21033,7 @@ pixel_y = 20 }, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -25899,9 +21050,7 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "qBQ" = ( /obj/structure/coatrack, @@ -25925,10 +21074,7 @@ /area/varadero/interior/research) "qCk" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/administration) "qCE" = ( /obj/structure/surface/table/woodentable/poor, @@ -25943,9 +21089,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "qCT" = ( /obj/structure/inflatable, @@ -25961,10 +21105,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "qDh" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -25972,9 +21113,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ @@ -25985,33 +21124,23 @@ /area/varadero/exterior/pontoon_beach) "qDs" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "qDt" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "qDv" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "qDw" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "qDR" = ( /obj/item/device/flashlight, @@ -26022,9 +21151,7 @@ pixel_x = -4; pixel_y = -2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "qEc" = ( /obj/structure/platform_decoration/kutjevo{ @@ -26045,9 +21172,7 @@ /area/varadero/interior/hall_SE) "qEn" = ( /obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ @@ -26059,23 +21184,16 @@ /area/varadero/exterior/eastbeach) "qEG" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "qFe" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/pontoon_beach) "qFC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_near) "qFI" = ( /obj/item/tool/wet_sign, @@ -26089,61 +21207,43 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) "qGE" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) "qHl" = ( /obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "qHu" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "qHF" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) "qId" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "qIi" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "qIF" = ( /turf/open/gm/dirt, @@ -26151,17 +21251,13 @@ "qJF" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "qKb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "qKq" = ( /obj/structure/closet/secure_closet/RD, @@ -26192,10 +21288,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "qLq" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -26206,9 +21299,7 @@ icon_state = "pointybush_2"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "qLs" = ( /obj/structure/desertdam/decals/road_edge{ @@ -26224,21 +21315,15 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "qMl" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "qMr" = ( /obj/item/tool/minihoe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "qMD" = ( /obj/structure/surface/table/reinforced/prison, @@ -26251,10 +21336,7 @@ pixel_y = 4 }, /obj/item/device/cassette_tape/pop2, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -26264,14 +21346,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "qNu" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/lz2_near) "qNC" = ( /obj/structure/surface/table, @@ -26283,17 +21361,11 @@ pixel_x = 4; pixel_y = -1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "qNE" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "qNI" = ( /obj/structure/surface/table/reinforced/prison, @@ -26306,17 +21378,13 @@ pixel_y = -4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "qNP" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "qNX" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -26329,9 +21397,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "qOF" = ( /obj/item/tool/pen/blue, @@ -26352,10 +21418,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "qOS" = ( /obj/item/reagent_container/glass/bucket, @@ -26371,10 +21434,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "qPs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26383,24 +21443,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "qPG" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/disposals) "qQd" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "qQe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26410,18 +21463,13 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "qQk" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/maintenance) "qQt" = ( /obj/structure/window/reinforced{ @@ -26451,9 +21499,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "qQN" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -26461,22 +21507,15 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "qRe" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) "qRi" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -26486,15 +21525,11 @@ /area/varadero/interior/court) "qRP" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "qSj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/comms3) "qSJ" = ( /obj/structure/machinery/power/apc{ @@ -26502,9 +21537,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "qSR" = ( /obj/structure/closet/crate/trashcart, @@ -26526,9 +21559,7 @@ indestructible = 1; unacidable = 1 }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/monsoon) "qTs" = ( /obj/structure/platform/kutjevo/smooth{ @@ -26550,14 +21581,10 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "qTE" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -26568,17 +21595,12 @@ name = "\improper Underground Security"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "qUj" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "qUK" = ( /obj/structure/surface/rack, @@ -26586,9 +21608,7 @@ /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) "qUQ" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "qUW" = ( /obj/effect/decal/cleanable/blood/drip, @@ -26596,9 +21616,7 @@ /area/varadero/interior/maintenance/north) "qVb" = ( /obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "qVl" = ( /obj/structure/closet/secure_closet/personal/patient, @@ -26607,26 +21625,20 @@ layer = 2.991 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "qVp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "qVD" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; pixel_y = -6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -26639,34 +21651,24 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "qVS" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "qWt" = ( /obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/hall_N) "qWw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "qWC" = ( /turf/open/floor/shiva, @@ -26675,23 +21677,15 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/mess) "qXO" = ( /obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/maintenance) "qYd" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "qYg" = ( /obj/item/stack/tile/plasteel{ @@ -26706,25 +21700,18 @@ pixel_x = 3; pixel_y = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "qZr" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "qZH" = ( /obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "qZJ" = ( /obj/item/tool/warning_cone, @@ -26744,9 +21731,7 @@ /area/varadero/exterior/lz2_near) "rbd" = ( /obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "rbp" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -26765,18 +21750,14 @@ }, /obj/structure/platform_decoration/kutjevo, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) "rco" = ( /obj/structure/inflatable/door, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -26790,10 +21771,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "rdq" = ( /obj/item/tool/wrench{ @@ -26805,9 +21783,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -26827,27 +21803,19 @@ /turf/open/gm/coast/east, /area/varadero/exterior/comms4) "res" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "rex" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "reA" = ( /obj/structure/xenoautopsy/tank/broken, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "reG" = ( /turf/closed/wall/r_wall/elevator{ @@ -26859,9 +21827,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "rft" = ( /obj/structure/disposalpipe/segment, @@ -26869,29 +21835,21 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "rgb" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_NW) "rgf" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) "rgg" = ( /obj/structure/girder/displaced, @@ -26902,23 +21860,15 @@ pixel_y = 32 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "rgz" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/swcaves) "rgZ" = ( /obj/item/tool/kitchen/knife, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/varadero/exterior/lz1_near) "rhu" = ( /obj/effect/decal/cleanable/blood/drip, @@ -26947,10 +21897,7 @@ /area/varadero/exterior/lz2_near) "rja" = ( /obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "rjn" = ( /turf/closed/wall/r_wall/elevator{ @@ -26959,9 +21906,7 @@ /area/varadero/interior/records) "rjo" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/lz1_near) "rjE" = ( /obj/structure/surface/table/reinforced/prison, @@ -26976,10 +21921,7 @@ pixel_x = -7; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "rjH" = ( /obj/structure/machinery/light/small{ @@ -26988,9 +21930,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "rjM" = ( /obj/structure/surface/table/woodentable, @@ -27009,16 +21949,11 @@ dir = 1 }, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "rkA" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "rkC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -27043,20 +21978,14 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "rlJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/hall_NW) "rme" = ( /obj/structure/surface/table, @@ -27065,9 +21994,7 @@ pixel_x = 1; pixel_y = -2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "rmf" = ( /obj/structure/barricade/wooden, @@ -27091,30 +22018,19 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "rmB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "rmL" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "rmS" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "rmV" = ( /obj/effect/spawner/random/powercell, @@ -27122,9 +22038,7 @@ /area/varadero/interior/maintenance/north) "rmZ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) "rnj" = ( /obj/structure/surface/table/reinforced/prison{ @@ -27132,26 +22046,18 @@ }, /obj/item/tool/surgery/cautery/predatorcautery, /obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "rnL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/lz2_near) "rnP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/glass{ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "ron" = ( /obj/structure/tunnel{ @@ -27167,9 +22073,7 @@ /obj/item/spacecash/c1000{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "roJ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -27179,9 +22083,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "roT" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27203,16 +22105,11 @@ icon_state = "ladder10"; name = "ladder" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "rpd" = ( /obj/structure/bed/chair, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "rpu" = ( /turf/closed/wall, @@ -27225,26 +22122,19 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/lights, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "rpI" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "rpN" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/maintenance) "rpT" = ( /obj/item/ammo_casing/shell{ @@ -27255,9 +22145,7 @@ "rqa" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/attachment, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "rqg" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -27276,19 +22164,14 @@ pixel_y = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) "rqx" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) "rqG" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27300,10 +22183,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "rrp" = ( /obj/item/paper_bin, @@ -27320,18 +22200,13 @@ /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "rrA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -27340,10 +22215,7 @@ "rsh" = ( /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/varadero/interior/medical) "rsj" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -27354,31 +22226,23 @@ pixel_x = -5; pixel_y = 17 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "rsB" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "rsL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Checkpoint"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "rsM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27402,9 +22266,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "rtu" = ( /obj/structure/bed/chair{ @@ -27414,28 +22276,20 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "rtx" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "rtP" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "rtR" = ( /obj/item/tool/wirecutters, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "rtV" = ( /obj/structure/pipes/vents/pump{ @@ -27446,9 +22300,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "ruq" = ( /obj/structure/surface/table/reinforced/prison, @@ -27457,10 +22309,7 @@ pixel_y = 7 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "ruZ" = ( /obj/item/ammo_magazine/smg/nailgun, @@ -27474,10 +22323,7 @@ pixel_y = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "rvD" = ( /turf/open/auto_turf/sand_white/layer1, @@ -27490,10 +22336,7 @@ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "rwP" = ( /obj/structure/closet/crate/ammo/alt/flame, @@ -27502,9 +22345,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "rwV" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -27512,22 +22353,14 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "rxa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) "rxe" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/cargo) "rxI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -27536,9 +22369,7 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "ryD" = ( /turf/open/auto_turf/sand_white/layer1, @@ -27554,37 +22385,25 @@ pixel_y = 9 }, /obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "rzg" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/administration) "rzM" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "rzO" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "rzU" = ( /obj/effect/decal/cleanable/blood, /obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "rAf" = ( /obj/structure/surface/table/reinforced/prison{ @@ -27593,22 +22412,15 @@ /obj/item/trash/plate{ pixel_y = 7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "rAj" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "rAy" = ( /obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "rBa" = ( /obj/structure/disposalpipe/segment, @@ -27619,20 +22431,14 @@ /area/varadero/interior/hall_SE) "rBi" = ( /obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "rBq" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "rBP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) "rCf" = ( /obj/structure/largecrate/random/case/small, @@ -27647,10 +22453,7 @@ icon_state = "lattice12"; pixel_y = -3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/hall_SE) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -27669,33 +22472,23 @@ icon_state = "cartridge_3_1" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "rDD" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "rDK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "rFj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "rFv" = ( /obj/effect/decal/cleanable/blood/drip, @@ -27721,9 +22514,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "rGA" = ( /obj/structure/largecrate/random, @@ -27737,15 +22528,10 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "rHv" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27758,10 +22544,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -27773,16 +22556,11 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/court) "rIU" = ( /obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/chapel) "rJq" = ( /obj/structure/surface/table, @@ -27800,29 +22578,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) "rKf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "rKl" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "rKy" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -27836,15 +22605,10 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "rKM" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/pontoon_beach) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27862,9 +22626,7 @@ /area/varadero/exterior/monsoon) "rLC" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "rLK" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -27882,24 +22644,17 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) "rLU" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "rLW" = ( /obj/structure/closet/crate/secure, /obj/item/trash/chunk, /obj/item/trash/raisins, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -27915,14 +22670,10 @@ "rMM" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "rMN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "rMP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -27933,9 +22684,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "rNm" = ( /obj/item/stack/sheet/wood, @@ -27950,9 +22699,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "rOL" = ( /obj/structure/closet/secure_closet/personal{ @@ -27965,9 +22712,7 @@ pixel_x = 7; pixel_y = 15 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -27983,9 +22728,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "rQe" = ( /obj/structure/surface/rack, @@ -27996,19 +22739,14 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "rQk" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/north, /area/varadero/interior/hall_SE) "rQU" = ( /obj/structure/girder, @@ -28020,15 +22758,10 @@ /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "rQV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "rQY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "rRm" = ( /obj/structure/disposalpipe/segment{ @@ -28039,16 +22772,11 @@ /area/varadero/interior/technical_storage) "rRq" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "rRz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "rSl" = ( /obj/item/tool/wrench, @@ -28056,9 +22784,7 @@ /area/varadero/exterior/eastbeach) "rSu" = ( /obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "rSx" = ( /obj/structure/surface/table, @@ -28070,17 +22796,11 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "rSA" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "rSI" = ( /obj/structure/machinery/power/apc{ @@ -28134,9 +22854,7 @@ /area/varadero/interior/bunks) "rTi" = ( /obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "rTu" = ( /obj/structure/surface/table/woodentable, @@ -28148,9 +22866,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "rTT" = ( /obj/structure/disposaloutlet{ @@ -28163,10 +22879,7 @@ /area/varadero/interior/disposals) "rUa" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "rUc" = ( /obj/structure/platform/kutjevo/smooth{ @@ -28190,18 +22903,13 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "rUI" = ( /obj/structure/closet/crate/construction, /obj/item/reagent_container/food/snacks/wrapped/chunk, /obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "rVi" = ( /obj/item/tool/candle, @@ -28218,16 +22926,11 @@ "rVI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "rVS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/comms3) "rVZ" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -28235,9 +22938,7 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "rWx" = ( /obj/structure/sink{ @@ -28247,23 +22948,17 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "rWG" = ( /obj/structure/machinery/sensortower{ pixel_x = -9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior_protected/caves/central) "rWJ" = ( /obj/item/stool, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -28278,15 +22973,11 @@ icon_state = "pointybush_3"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "rXf" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners, /area/varadero/interior/morgue) "rXk" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -28306,18 +22997,13 @@ "rYC" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "rYO" = ( /obj/structure/prop/static_tank/water{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "rYR" = ( /obj/item/lightstick/red/spoke/planted{ @@ -28327,10 +23013,7 @@ unacidable = 1; layer = 4.1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ @@ -28351,9 +23034,7 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "sah" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -28376,16 +23057,10 @@ pixel_x = -4; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "saC" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "saQ" = ( /obj/structure/barricade/wooden, @@ -28409,9 +23084,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "scD" = ( /obj/structure/bed/chair{ @@ -28427,23 +23100,16 @@ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "sdy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/maintenance/north) "sdz" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_NW) "sdS" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "sdU" = ( /obj/effect/landmark/yautja_teleport, @@ -28460,24 +23126,17 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "ses" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) "seY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/medical) "seZ" = ( /obj/structure/window/reinforced{ @@ -28508,9 +23167,7 @@ /area/varadero/interior/bunks) "sff" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "sfj" = ( /obj/item/shard{ @@ -28522,9 +23179,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "sfF" = ( /obj/structure/machinery/storm_siren{ @@ -28538,10 +23193,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -28549,9 +23201,7 @@ /area/varadero/interior/caves/east) "sgl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "sgn" = ( /obj/structure/barricade/handrail{ @@ -28566,10 +23216,7 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "sgp" = ( /obj/structure/barricade/wooden, @@ -28579,9 +23226,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "sgy" = ( /obj/structure/disposalpipe/segment{ @@ -28595,9 +23240,7 @@ dir = 8; layer = 2.991 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "sgz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -28613,9 +23256,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "shO" = ( /obj/structure/fence, @@ -28630,9 +23271,7 @@ /area/varadero/interior_protected/caves/digsite) "shP" = ( /obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "sia" = ( /obj/structure/machinery/firealarm{ @@ -28652,25 +23291,17 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "sid" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "sjD" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_SE) "sjR" = ( /obj/structure/surface/table/reinforced/prison, @@ -28681,17 +23312,13 @@ /obj/item/tool/soap{ pixel_x = 5 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "skp" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "skY" = ( /obj/effect/landmark/objective_landmark/far, @@ -28700,9 +23327,7 @@ /area/varadero/interior/hall_SE) "slw" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "slA" = ( /obj/structure/bed/chair/comfy{ @@ -28723,9 +23348,7 @@ dir = 4; pixel_x = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "slB" = ( /obj/structure/filingcabinet{ @@ -28749,27 +23372,19 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "smE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "smO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "snl" = ( /obj/structure/window/framed/colony, @@ -28785,9 +23400,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -28798,44 +23411,29 @@ "snP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/bunks) "snS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "sou" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "cargobay"; name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "spd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "spv" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "spN" = ( /obj/item/fuel_cell{ @@ -28848,19 +23446,14 @@ /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/court) "sre" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "srg" = ( /turf/open/gm/dirt, @@ -28881,10 +23474,7 @@ /obj/structure/surface/rack, /obj/item/storage/pouch/tools/full, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "srY" = ( /obj/structure/sign/safety/airlock{ @@ -28903,35 +23493,25 @@ /obj/item/device/flashlight/lamp/green{ pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "ssh" = ( /obj/structure/prop/turbine_extras/left, /obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "ssv" = ( /obj/effect/landmark/hunter_secondary, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ssw" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "ssZ" = ( /obj/item/storage/belt/marine, @@ -28944,9 +23524,7 @@ /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "stw" = ( /obj/structure/platform/kutjevo/rock{ @@ -28957,58 +23535,41 @@ icon_state = "lattice12"; pixel_y = -3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/maintenance/security) "stK" = ( /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/digsite) "stU" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "stV" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; pixel_y = 19 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "suC" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "suE" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) "suY" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "svt" = ( /obj/structure/platform/kutjevo/smooth{ @@ -29023,9 +23584,7 @@ /area/varadero/interior/hall_N) "svG" = ( /obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "svH" = ( /obj/structure/surface/table/woodentable, @@ -29047,10 +23606,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "swi" = ( /obj/item/storage/pouch/shotgun/large, @@ -29069,23 +23625,17 @@ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "swv" = ( /obj/structure/surface/rack, /obj/item/pizzabox/meat, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "swM" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "swV" = ( /obj/structure/closet/crate/construction, @@ -29110,9 +23660,7 @@ /area/varadero/interior_protected/caves/digsite) "sxY" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "syb" = ( /obj/structure/surface/rack, @@ -29150,31 +23698,21 @@ /obj/item/ammo_magazine/pistol{ pixel_x = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "syl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "cargobay"; name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "syt" = ( /obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "syL" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "syM" = ( /obj/structure/surface/table/reinforced/prison, @@ -29191,10 +23729,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/technical_storage) "szh" = ( /turf/closed/wall/r_wall/elevator{ @@ -29214,30 +23749,19 @@ pixel_x = 4; pixel_y = -6 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "szZ" = ( /obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "sAR" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) "sAW" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "sAY" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -29246,9 +23770,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "sBk" = ( /obj/structure/bed/chair{ @@ -29257,10 +23779,7 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "sBF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29269,15 +23788,11 @@ name = "\improper Colony Administration"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "sBN" = ( /obj/structure/target/syndicate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "sBX" = ( /obj/structure/window/framed/colony, @@ -29289,9 +23804,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "sCp" = ( /obj/item/stack/sheet/metal, @@ -29299,21 +23812,15 @@ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "sCA" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "sCJ" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "sCV" = ( /obj/structure/machinery/alarm{ @@ -29323,16 +23830,11 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/cargo) "sDf" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "sDj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29341,15 +23843,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "sDo" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "sDE" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -29363,9 +23861,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "sDH" = ( /obj/item/grown/log, @@ -29373,9 +23869,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "sDM" = ( -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "sDQ" = ( /obj/structure/machinery/power/apc{ @@ -29383,19 +23877,13 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) "sDZ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "sFc" = ( /obj/effect/decal/cleanable/dirt, @@ -29404,17 +23892,13 @@ /area/varadero/interior/beach_bar) "sFJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "sFN" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "sGb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29424,35 +23908,24 @@ name = "\improper Underground Disposals"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/disposals) "sGo" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "sGY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "sHs" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "sHJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "sHO" = ( /obj/item/stack/tile/plasteel{ @@ -29464,30 +23937,21 @@ /area/varadero/interior/maintenance/security) "sHV" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "sIf" = ( /obj/structure/bed/chair{ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) "sIn" = ( /obj/structure/machinery/storm_siren{ dir = 4; pixel_x = -3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "sIK" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -29500,30 +23964,20 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "sIQ" = ( /obj/item/stack/sheet/wood/small_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "sIU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "sJm" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) "sJq" = ( /obj/structure/window/reinforced{ @@ -29549,17 +24003,12 @@ "sJx" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "sJB" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/hall_N) "sJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29568,10 +24017,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/varadero/interior/hall_SE) "sJZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29580,24 +24026,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "sKe" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) "sKu" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "sKz" = ( /obj/structure/closet/crate/supply, @@ -29618,9 +24057,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29635,17 +24072,11 @@ indestructible = 1; alpha = 0 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "sLU" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "sMn" = ( /obj/structure/bed/chair/office/dark, @@ -29658,52 +24089,38 @@ /area/varadero/interior/maintenance) "sNa" = ( /obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "sNl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "sNp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) "sNy" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "sNT" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) "sOj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "sOw" = ( /obj/effect/landmark/xeno_spawn, @@ -29711,10 +24128,7 @@ /area/varadero/interior_protected/vessel) "sPh" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "sPs" = ( /obj/structure/window/framed/colony/reinforced, @@ -29723,21 +24137,14 @@ "sPD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "sPY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/electrical) "sQn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "sQs" = ( /obj/structure/filingcabinet{ @@ -29801,10 +24208,7 @@ pixel_y = 5 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "sSU" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -29812,36 +24216,25 @@ name = "\improper Underground Command Center"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "sSZ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) "sTA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/disposals) "sTT" = ( /obj/structure/machinery/light, /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "sTW" = ( /obj/structure/disposalpipe/segment{ @@ -29856,9 +24249,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "sUj" = ( /obj/structure/platform/kutjevo/smooth{ @@ -29878,9 +24269,7 @@ dir = 6 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "sUp" = ( /obj/item/toy/beach_ball, @@ -29888,9 +24277,7 @@ /area/varadero/exterior/lz1_near) "sUG" = ( /obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "sUK" = ( /obj/structure/flora/bush/desert{ @@ -29901,10 +24288,7 @@ /obj/structure/prop/ice_colony/dense/planter_box/hydro{ density = 0 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "sVk" = ( /obj/structure/cable/heavyduty{ @@ -29929,10 +24313,7 @@ /turf/closed/wall/rock/brown, /area/varadero/interior/oob) "sWp" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) "sXb" = ( /turf/closed/wall, @@ -29947,10 +24328,7 @@ /area/varadero/exterior/farocean) "sYi" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "sZd" = ( /obj/structure/girder/displaced, @@ -29958,9 +24336,7 @@ /area/varadero/exterior/lz2_near) "sZe" = ( /obj/item/paper, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "sZW" = ( /obj/structure/platform/kutjevo/smooth{ @@ -29978,10 +24354,7 @@ dir = 8; pixel_x = 3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "tak" = ( /obj/structure/surface/table/reinforced/prison, @@ -29989,33 +24362,24 @@ /area/varadero/interior/hall_SE) "tam" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "tbQ" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "tcq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/prop/server_equipment/laptop/closed, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "tcS" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "tcX" = ( /obj/structure/surface/rack, @@ -30023,9 +24387,7 @@ /obj/item/frame/table, /obj/item/frame/table, /obj/item/frame/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -30053,10 +24415,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "tdN" = ( /obj/structure/window/framed/colony/reinforced, @@ -30075,16 +24434,11 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "teg" = ( /obj/structure/girder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "ten" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -30104,9 +24458,7 @@ name = "\improper materials storage bin"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "teu" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -30116,18 +24468,14 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/technical_storage) "tex" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "tez" = ( /obj/item/toy/bikehorn/rubberducky, @@ -30143,19 +24491,14 @@ /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) "tfc" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz2_near) "tfj" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "tfC" = ( /obj/structure/showcase{ @@ -30177,10 +24520,7 @@ anchored = 1; unacidable = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/caves/digsite) "tgk" = ( /obj/structure/filingcabinet{ @@ -30210,9 +24550,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "tgE" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/pontoon_beach) "tgK" = ( /obj/structure/closet/crate/construction, @@ -30225,9 +24563,7 @@ /area/varadero/interior/technical_storage) "thp" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "thS" = ( /obj/structure/window/framed/colony, @@ -30239,9 +24575,7 @@ /obj/item/stack/sheet/mineral/plastic{ amount = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "tia" = ( /obj/structure/machinery/conveyor, @@ -30274,9 +24608,7 @@ pixel_x = 18; pixel_y = 23 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30297,10 +24629,7 @@ /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) "tjF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30310,22 +24639,15 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "tjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "tkh" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/eastbeach) "tkr" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "tkw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30337,9 +24659,7 @@ req_one_access = null; req_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "tkF" = ( /obj/structure/prop/rock/brown, @@ -30349,9 +24669,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) "tkV" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30374,10 +24692,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ @@ -30400,21 +24715,15 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "tlM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "tlT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "tmm" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -30422,15 +24731,10 @@ name = "\improper Underground Engineering Locker Room"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "tmC" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/pontoon_beach) "tmZ" = ( /turf/open/gm/coast/west, @@ -30441,9 +24745,7 @@ pixel_x = -3; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "tnA" = ( /obj/structure/filingcabinet{ @@ -30459,17 +24761,12 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "tnD" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/varadero/interior/beach_bar) "tnN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -30477,9 +24774,7 @@ name = "\improper Theta-V Research Laboratory"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "toN" = ( /obj/item/tool/warning_cone{ @@ -30512,15 +24807,10 @@ dir = 4; health = 80 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) "tpL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/court) "tpO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -30534,9 +24824,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "tqa" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30548,10 +24836,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "tqh" = ( /obj/structure/window/framed/colony/reinforced, @@ -30565,17 +24850,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "tqV" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "trh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30584,9 +24863,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "trB" = ( /obj/item/stack/sheet/wood{ @@ -30630,16 +24907,11 @@ /area/varadero/exterior/monsoon) "trQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "tso" = ( /obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) "tsz" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -30649,9 +24921,7 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -30661,17 +24931,11 @@ /area/varadero/exterior/eastbeach) "tsX" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "tuL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "tuR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -30691,18 +24955,14 @@ pixel_y = 7 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "tvv" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "tvI" = ( /obj/structure/surface/table/reinforced/prison, @@ -30718,18 +24978,13 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) "twm" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) "tyT" = ( /obj/structure/disposalpipe/segment{ @@ -30742,40 +24997,28 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "tyV" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "tzp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "tzw" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/varadero/interior/library) "tzP" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "tAT" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -30784,9 +25027,7 @@ "tBm" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "tCl" = ( /obj/structure/window/framed/colony, @@ -30799,50 +25040,33 @@ "tCG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "tCM" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "tCV" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) "tDh" = ( /obj/structure/pipes/portables_connector{ dir = 8 }, /obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "tDo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "tDF" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/maintenance) "tDR" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30861,9 +25085,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "tEJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "tEM" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -30880,10 +25102,7 @@ /area/varadero/exterior/eastbeach) "tER" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/comms4) "tFQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -30894,25 +25113,16 @@ /obj/structure/closet/secure_closet/security_empty, /obj/item/ammo_box/magazine/shotgun/buckshot, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "tGl" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/northeast, /area/varadero/interior/research) "tGr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30928,18 +25138,13 @@ /area/varadero/interior/hall_N) "tHc" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/eastocean) "tIT" = ( /obj/structure/closet/crate/trashcart{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "tIV" = ( /obj/structure/surface/table/reinforced, @@ -30965,10 +25170,7 @@ /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/varadero/interior/medical) "tKr" = ( /obj/structure/machinery/light, @@ -30978,18 +25180,13 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "tKw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "tKI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31001,9 +25198,7 @@ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) "tLu" = ( /obj/structure/window/framed/colony/reinforced, @@ -31016,10 +25211,7 @@ "tMx" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/key/cargo_train, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "tMJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -31059,9 +25251,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "tNE" = ( /obj/structure/filingcabinet{ @@ -31094,19 +25284,14 @@ /area/varadero/interior/administration) "tOd" = ( /obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "tOp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_NW) "tOx" = ( /obj/structure/platform/kutjevo/smooth{ @@ -31122,19 +25307,14 @@ dir = 8 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "tOB" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "tOK" = ( /obj/structure/surface/table/reinforced/prison, @@ -31142,10 +25322,7 @@ pixel_y = 5 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "tOV" = ( /obj/item/tool/warning_cone, @@ -31155,9 +25332,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "tPE" = ( /obj/item/tool/pickaxe, @@ -31171,9 +25346,7 @@ pixel_y = 24 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "tPK" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -31188,31 +25361,21 @@ /obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/mess) "tQn" = ( /obj/structure/closet/coffin, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "tQy" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "tQz" = ( /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "tQI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31220,14 +25383,10 @@ dir = 8; icon_state = "cartridge_2" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "tQT" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "tRs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31238,9 +25397,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "tRN" = ( /obj/structure/prop/rock/brown, @@ -31249,10 +25406,7 @@ "tSg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "tSK" = ( /obj/structure/window/framed/wood, @@ -31266,9 +25420,7 @@ /area/varadero/interior/caves/north_research) "tSR" = ( /obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "tTo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31276,9 +25428,7 @@ /obj/structure/prop/souto_land/streamer{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "tTq" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -31286,10 +25436,7 @@ }, /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "tTN" = ( /obj/structure/stairs/perspective{ @@ -31298,9 +25445,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "tTU" = ( /obj/item/device/flashlight/lamp/tripod, @@ -31313,10 +25458,7 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) "tVf" = ( /obj/structure/closet/crate, @@ -31325,24 +25467,17 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "tVj" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "tVl" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "tVo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "tVD" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31351,16 +25486,12 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "tVX" = ( /obj/structure/surface/rack, /obj/item/maintenance_jack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "tWA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -31378,10 +25509,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/laundry) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, @@ -31398,10 +25526,7 @@ /turf/open/floor/wood, /area/varadero/interior/administration) "tXF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "tXT" = ( /obj/structure/fence, @@ -31414,9 +25539,7 @@ /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) "tYg" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "tYw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31425,9 +25548,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "tYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31439,17 +25560,13 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "tYT" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ @@ -31466,27 +25583,18 @@ name = "\improper Underground Engineering Locker Room"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "tZr" = ( /obj/item/toy/deck/uno{ pixel_y = 6 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "tZE" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/medical) "uaU" = ( /obj/effect/decal/warning_stripes{ @@ -31499,10 +25607,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "uaY" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ @@ -31512,10 +25617,7 @@ openspeed = 17; dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/varadero/interior/cargo) "ubF" = ( /obj/structure/disposalpipe/segment{ @@ -31524,18 +25626,14 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "ubH" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -31552,10 +25650,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "ucv" = ( /obj/structure/barricade/handrail/wire{ @@ -31563,24 +25658,16 @@ }, /obj/structure/closet/radiation, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "ucL" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) "udg" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "udp" = ( /obj/structure/prop/rock/brown, @@ -31588,33 +25675,24 @@ /area/varadero/exterior/eastbeach) "ueg" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) "ueB" = ( /obj/structure/cable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "ueP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "ueQ" = ( /obj/structure/computer3frame, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "ufn" = ( /obj/structure/stairs/perspective{ @@ -31647,16 +25725,10 @@ pixel_y = 5 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ufV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/court) "ugi" = ( /obj/structure/bed/chair{ @@ -31666,9 +25738,7 @@ dir = 1; icon_state = "warning_c" }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/court) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31677,26 +25747,18 @@ /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) "ugW" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "uhi" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ desc = "A high-power hydroelectric generator."; name = "hydroelectric generator" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "uhD" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "uhV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -31704,23 +25766,16 @@ /area/varadero/interior_protected/caves/swcaves) "uiq" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "uiy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "ujg" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ujp" = ( /obj/structure/bed/chair{ @@ -31731,10 +25786,7 @@ /obj/item/paper/crumpled{ pixel_x = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "ujR" = ( /obj/item/shard{ @@ -31742,48 +25794,33 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "ukw" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/varadero/interior/disposals) "ukz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "ukX" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "ulb" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "uli" = ( /obj/structure/bed/chair/hunter{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, @@ -31794,10 +25831,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "umO" = ( /obj/structure/bed/chair{ @@ -31808,9 +25842,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "umT" = ( /turf/open/floor/carpet, @@ -31831,10 +25863,7 @@ pixel_x = -8; pixel_y = 11 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "unw" = ( /obj/structure/machinery/alarm{ @@ -31871,10 +25900,7 @@ pixel_x = -17; pixel_y = -19 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "uon" = ( /obj/structure/largecrate/random, @@ -31886,15 +25912,11 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "uoO" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -31918,9 +25940,7 @@ dir = 8; layer = 3.5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -31941,16 +25961,12 @@ pixel_x = 5; pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "uqw" = ( /obj/structure/surface/rack, /obj/item/reagent_container/blood/OMinus, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "uqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31961,9 +25977,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/maintenance) "uqU" = ( /obj/structure/surface/table/woodentable, @@ -31983,15 +25997,10 @@ /area/varadero/interior/court) "urA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "urD" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/lz2_near) "urE" = ( /obj/structure/bed/chair/comfy/lime{ @@ -32004,9 +26013,7 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "usQ" = ( /obj/item/facepaint/sunscreen_stick, @@ -32025,9 +26032,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "uul" = ( /obj/structure/machinery/light{ @@ -32052,27 +26057,17 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "uuN" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/northwest, /area/varadero/interior/research) "uvd" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "uvr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "uvw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32082,9 +26077,7 @@ name = "Underground Morgue"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/varadero/interior/morgue) "uvB" = ( /obj/structure/machinery/shower{ @@ -32099,21 +26092,15 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "uww" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/hall_N) "uwJ" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32127,10 +26114,7 @@ "uwQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/lightstick, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "uxi" = ( /obj/structure/stairs/perspective{ @@ -32143,10 +26127,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "uxM" = ( /obj/structure/blocker/invisible_wall/water, @@ -32158,49 +26139,35 @@ pixel_y = 24 }, /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "uyK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "uzb" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) "uzg" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "uzr" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/disposals) "uzs" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "uAt" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -32209,9 +26176,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "uAM" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -32226,18 +26191,13 @@ /area/varadero/interior/maintenance/north) "uBX" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "uCc" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) "uCe" = ( /turf/open/floor/prison/chapel_carpet, @@ -32252,43 +26212,32 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "uDQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "uEc" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "uEz" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "uEE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "uEF" = ( /obj/structure/barricade/handrail/wire{ @@ -32302,31 +26251,20 @@ /area/varadero/interior/maintenance/north) "uEI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "uFq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/monsoon) "uFE" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "uFJ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32339,18 +26277,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/varadero/interior/cargo) "uGs" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/varadero/interior/maintenance/north) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ @@ -32373,9 +26306,7 @@ /obj/structure/prop/static_tank{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "uIl" = ( /obj/structure/machinery/alarm{ @@ -32393,9 +26324,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "uIR" = ( /turf/closed/wall, @@ -32417,9 +26346,7 @@ /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/varadero/interior/dock_control) "uKY" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32436,10 +26363,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "uKZ" = ( /obj/item/stack/tile/plasteel{ @@ -32456,15 +26380,10 @@ pixel_y = 9 }, /obj/item/clothing/head/cmcap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "uLY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) "uMu" = ( /obj/structure/surface/table/reinforced/prison, @@ -32473,10 +26392,7 @@ /area/varadero/interior/records) "uMx" = ( /obj/structure/dispenser, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/technical_storage) "uMB" = ( /obj/structure/surface/table, @@ -32486,10 +26402,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/technical_storage) "uMQ" = ( /obj/item/ammo_casing/shell{ @@ -32497,9 +26410,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "uNh" = ( /obj/structure/closet/secure_closet/personal{ @@ -32512,14 +26423,10 @@ pixel_x = -6; pixel_y = 15 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "uNq" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/laundry) "uNz" = ( /obj/structure/blocker/invisible_wall/water, @@ -32532,9 +26439,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "uOk" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32556,24 +26461,16 @@ dir = 4 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "uOo" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/roller, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) "uOC" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) "uOF" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -32584,20 +26481,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "uOL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/hall_NW) "uQa" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "uQi" = ( /turf/closed/wall/r_wall/unmeltable, @@ -32606,28 +26496,20 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/court) "uQJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "uQK" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "uRa" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) "uRU" = ( /turf/closed/wall/r_wall/elevator, @@ -32648,33 +26530,22 @@ /area/varadero/exterior/monsoon) "uTj" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "uTq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) "uTA" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "uTV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/varadero/interior/medical) "uTY" = ( /obj/structure/prop/rock/brown, @@ -32685,9 +26556,7 @@ /obj/structure/pipes/standard/manifold/visible{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "uUl" = ( /obj/structure/bed/sofa/pews/flipped{ @@ -32707,9 +26576,7 @@ /obj/item/device/defibrillator{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "uUS" = ( /obj/structure/disposalpipe/junction{ @@ -32717,22 +26584,14 @@ icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners, /area/varadero/interior/security) "uUW" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) "uVe" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) "uVo" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -32740,9 +26599,7 @@ pixel_x = -16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "uVu" = ( /obj/structure/disposalpipe/segment{ @@ -32754,9 +26611,7 @@ "uVy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "uVR" = ( /obj/structure/barricade/wooden{ @@ -32765,18 +26620,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/varadero/interior/beach_bar) "uVV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "uVY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32786,15 +26636,11 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "uWo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/eastocean) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32808,17 +26654,13 @@ layer = 3.1 }, /obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "uXw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "uXR" = ( /obj/structure/machinery/storm_siren{ @@ -32832,9 +26674,7 @@ /area/varadero/interior/toilets) "uXX" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/mess) "uXZ" = ( /obj/structure/window/framed/colony, @@ -32847,16 +26687,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "uYJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "uYL" = ( /obj/item/stack/tile/plasteel{ @@ -32870,9 +26705,7 @@ dir = 4 }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) "uZK" = ( /obj/effect/decal/cleanable/blood/oil, @@ -32880,20 +26713,14 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "uZY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/glass{ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "vap" = ( /obj/structure/machinery/alarm{ @@ -32903,10 +26730,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "vaV" = ( /obj/structure/surface/table/reinforced/prison, @@ -32918,10 +26742,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) "vbr" = ( /obj/structure/prop/souto_land/pole, @@ -32929,10 +26750,7 @@ dir = 4; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "vbH" = ( /obj/effect/overlay/palmtree_r{ @@ -32966,17 +26784,12 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "vcj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "vco" = ( /obj/item/paper_bin, @@ -32988,9 +26801,7 @@ /area/varadero/interior/security) "vct" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/swcaves) "vcz" = ( /obj/structure/prop/rock/brown, @@ -33006,9 +26817,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vdL" = ( /obj/effect/landmark/xeno_spawn, @@ -33048,10 +26857,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ @@ -33087,19 +26893,13 @@ /area/varadero/interior/court) "vfG" = ( /obj/effect/landmark/railgun_camera_pos, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_near) "vfH" = ( /obj/structure/surface/table, /obj/item/bodybag, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/morgue) "vgu" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -33109,9 +26909,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/varadero/interior/medical) "vgA" = ( /obj/item/stool{ @@ -33135,10 +26933,7 @@ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "vhw" = ( /obj/structure/sign/safety/water{ @@ -33150,16 +26945,11 @@ /obj/structure/blocker/invisible_wall/water, /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "vhI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/central) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -33196,9 +26986,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "viP" = ( /obj/structure/disposalpipe/segment{ @@ -33211,10 +26999,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "viY" = ( /obj/structure/prop/structure_lattice{ @@ -33235,18 +27020,14 @@ pixel_x = 18; pixel_y = 23 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "vjA" = ( /obj/structure/reagent_dispensers/beerkeg/alt, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33262,10 +27043,7 @@ /area/varadero/exterior/monsoon) "vjZ" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -33276,10 +27054,7 @@ "vku" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "vll" = ( /obj/effect/decal/cleanable/blood/drip, @@ -33290,16 +27065,11 @@ /area/varadero/exterior/lz2_near) "vlm" = ( /obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "vlw" = ( /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "vlB" = ( /obj/structure/largecrate/random/barrel/white, @@ -33312,15 +27082,11 @@ pixel_y = 24 }, /obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "vmc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -33332,16 +27098,11 @@ icon_state = "medium" }, /obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "vnb" = ( /obj/structure/bed/chair/hunter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "vnm" = ( /turf/closed/wall, @@ -33350,28 +27111,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/electrical) "vnN" = ( /obj/structure/morgue, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/morgue) "vnU" = ( /obj/item/storage/box/bodybags, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "vom" = ( /obj/item/storage/beer_pack, @@ -33394,10 +27146,7 @@ /area/varadero/interior/caves/east) "vpr" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "vpQ" = ( /obj/structure/machinery/storm_siren{ @@ -33407,9 +27156,7 @@ /turf/open/gm/coast/west, /area/varadero/exterior/pool) "vpV" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) "vqd" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -33417,25 +27164,18 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "vqw" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "vqG" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "vqK" = ( /obj/item/stack/sheet/wood, @@ -33445,19 +27185,13 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "vqU" = ( /obj/effect/landmark/corpsespawner/chef, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/mess) "vqY" = ( /turf/open/floor/carpet, @@ -33472,24 +27206,18 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/varadero/interior/maintenance/north) "vrh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "vrj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "vru" = ( /obj/structure/bed/chair/comfy/beige, @@ -33507,9 +27235,7 @@ buckling_y = 18; dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "vsa" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -33517,41 +27243,30 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "vss" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) "vsJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) "vsP" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "vtP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "vtR" = ( /obj/structure/filingcabinet{ @@ -33567,10 +27282,7 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "vus" = ( /obj/structure/stairs/perspective{ @@ -33588,10 +27300,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "vuE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33623,9 +27332,7 @@ pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vvS" = ( /obj/structure/disposalpipe/segment{ @@ -33633,18 +27340,13 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "redcorners" - }, +/turf/open/floor/shiva/redcorners/east, /area/varadero/interior/security) "vwT" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vxi" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -33656,9 +27358,7 @@ }, /obj/structure/closet/radiation, /obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "vyp" = ( /obj/structure/machinery/light/small{ @@ -33673,9 +27373,7 @@ density = 0; climb_delay = 0 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "vyI" = ( /obj/structure/catwalk, @@ -33683,18 +27381,13 @@ density = 0; layer = 2.1 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "vyX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/evidence, /obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) "vzi" = ( /turf/closed/wall/rock/brown, @@ -33707,9 +27400,7 @@ /area/varadero/exterior/lz2_near) "vzt" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "vzB" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33735,10 +27426,7 @@ "vzN" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "vzY" = ( /obj/structure/sink{ @@ -33747,15 +27435,11 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "vAg" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "vAz" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -33763,50 +27447,35 @@ pixel_y = 13 }, /obj/structure/prop/invuln/pipe_water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "vAF" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "vAI" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "vAR" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) "vAZ" = ( /obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/lz1_near) "vBk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vBq" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "vBC" = ( /obj/structure/platform/kutjevo/rock{ @@ -33817,10 +27486,7 @@ icon_state = "lattice12"; pixel_y = -3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/cargo) "vBF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33836,9 +27502,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vBW" = ( /obj/structure/disposalpipe/segment{ @@ -33848,9 +27512,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "vBZ" = ( /obj/effect/decal/warning_stripes{ @@ -33863,10 +27525,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "vCf" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/administration) "vCE" = ( /obj/structure/disposalpipe/segment, @@ -33874,9 +27533,7 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "vDe" = ( /obj/structure/barricade/handrail/wire{ @@ -33900,24 +27557,17 @@ /area/varadero/exterior/pool) "vDl" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/morgue) "vDm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "vDr" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "vDw" = ( /obj/item/fishing_pole{ @@ -33928,9 +27578,7 @@ "vDC" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "vDI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33940,9 +27588,7 @@ name = "\improper Underground Requesitions Freezer"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33965,10 +27611,7 @@ /obj/item/restraint/handcuffs/zip, /obj/item/tool/surgery/surgicaldrill, /obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33991,10 +27634,7 @@ /area/varadero/exterior/pontoon_beach) "vEg" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) "vEi" = ( /obj/structure/window_frame/colony/reinforced, @@ -34002,22 +27642,15 @@ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "vEJ" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) "vEM" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "vEU" = ( /obj/structure/plasticflaps/mining, @@ -34034,9 +27667,7 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "vFl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -34045,16 +27676,12 @@ "vFs" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "vFu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/hall_N) "vGn" = ( /obj/effect/overlay/palmtree_r{ @@ -34082,15 +27709,11 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "vJg" = ( /obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz1_near) "vJk" = ( /obj/structure/platform/kutjevo/smooth{ @@ -34107,16 +27730,12 @@ dir = 1 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "vJp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ @@ -34136,10 +27755,7 @@ pixel_y = 2 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "vLc" = ( /obj/item/reagent_container/glass/bucket{ @@ -34149,9 +27765,7 @@ /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "vLh" = ( /obj/structure/platform_decoration/kutjevo, @@ -34163,9 +27777,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/laundry) "vLo" = ( /obj/effect/overlay/palmtree_r{ @@ -34180,41 +27792,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "vLw" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/varadero/interior/dock_control) "vLI" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "vLU" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "vLV" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; pixel_y = 22 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "vMe" = ( /obj/structure/largecrate/random/mini/med{ @@ -34222,30 +27821,20 @@ pixel_x = -13; pixel_y = 11 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "vMo" = ( /obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "vMq" = ( /obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) "vMU" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "vNu" = ( /turf/open/floor/carpet, @@ -34272,26 +27861,18 @@ /area/varadero/interior/research) "vNT" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) "vNY" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "vOa" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, @@ -34306,9 +27887,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "vOW" = ( /obj/item/clothing/suit/armor/vest, @@ -34318,9 +27897,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "vPh" = ( /obj/structure/stairs/perspective{ @@ -34332,10 +27909,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "vPi" = ( /obj/structure/closet/secure_closet/personal, @@ -34349,9 +27923,7 @@ "vPj" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "vPK" = ( /obj/item/ammo_casing{ @@ -34390,10 +27962,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "vQK" = ( /obj/structure/platform/kutjevo/smooth{ @@ -34406,10 +27975,7 @@ "vQL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/frame/light_fixture, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -34439,19 +28005,14 @@ dir = 8; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "vSu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -34461,9 +28022,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "vTd" = ( /obj/structure/machinery/conveyor, @@ -34472,9 +28031,7 @@ /area/varadero/interior/cargo) "vTe" = ( /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "vTl" = ( /obj/structure/surface/table/reinforced/prison, @@ -34496,32 +28053,23 @@ "vUx" = ( /obj/structure/girder/displaced, /obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "vUE" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "vUM" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "vUQ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -34539,9 +28087,7 @@ name = "\improper materials storage bin"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "vVy" = ( /obj/structure/machinery/shower{ @@ -34550,9 +28096,7 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "vVz" = ( /obj/structure/prop/structure_lattice{ @@ -34582,22 +28126,16 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) "vXx" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "vXG" = ( /obj/structure/closet/crate/construction, /obj/item/grown/log, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/varadero/exterior/monsoon) "vXW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34607,15 +28145,11 @@ name = "\improper Underground Security Showers"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "vYp" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "vYr" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -34623,9 +28157,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/maintenance/north) "vYy" = ( /obj/item/tool/shovel, @@ -34667,10 +28199,7 @@ /area/varadero/interior_protected/caves) "vZl" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34693,15 +28222,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "vZz" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ @@ -34724,9 +28249,7 @@ /area/varadero/exterior/pontoon_beach) "vZO" = ( /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "vZR" = ( /obj/structure/platform/kutjevo/smooth{ @@ -34734,22 +28257,15 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "vZS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/technical_storage) "wae" = ( /obj/structure/closet/secure_closet/miner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "waB" = ( /obj/structure/disposalpipe/segment{ @@ -34758,10 +28274,7 @@ /turf/open/floor/shiva, /area/varadero/interior/technical_storage) "waP" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/varadero/exterior/lz1_near) "wba" = ( /obj/structure/largecrate/random, @@ -34771,9 +28284,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "wcb" = ( /obj/structure/blocker/invisible_wall/water, @@ -34790,28 +28301,20 @@ pixel_x = -16; pixel_y = 26 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "wcq" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "wcE" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -34837,20 +28340,14 @@ density = 0 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "wdx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) "wdy" = ( /obj/structure/platform_decoration/kutjevo{ @@ -34862,9 +28359,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "wdI" = ( /obj/structure/reagent_dispensers/watertank, @@ -34873,16 +28368,11 @@ "wdX" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) "weG" = ( /obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -34894,9 +28384,7 @@ "wff" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wfh" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -34904,15 +28392,10 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "wfr" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) "wft" = ( /obj/structure/platform/kutjevo/smooth{ @@ -34936,9 +28419,7 @@ /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "wfK" = ( /obj/structure/stairs/perspective{ @@ -34972,18 +28453,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "wgv" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wgU" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -35000,9 +28476,7 @@ }, /obj/structure/blocker/invisible_wall/water, /obj/structure/plasticflaps/mining, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "wic" = ( /obj/structure/machinery/alarm{ @@ -35019,32 +28493,24 @@ dir = 1; name = "\improper Underground Main Hallway" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "wiL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/paper/research_notes, /obj/item/storage/belt/shotgun, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "wjf" = ( /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/varadero/interior/laundry) "wjB" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) "wjV" = ( /obj/structure/window/framed/colony, @@ -35062,10 +28528,7 @@ layer = 2.99 }, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "wkq" = ( /obj/structure/machinery/photocopier, @@ -35079,18 +28542,14 @@ name = "\improper Underground Engineering Locker Room"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) "wku" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ id = "colony_sec_armory"; name = "Secure Armory" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "wkC" = ( /obj/item/stack/cable_coil/cut{ @@ -35101,9 +28560,7 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "wkM" = ( /obj/structure/window/reinforced{ @@ -35138,9 +28595,7 @@ dir = 4 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "wlB" = ( /turf/open/gm/dirt, @@ -35154,16 +28609,11 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "wmg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "wmt" = ( /obj/structure/largecrate/random/barrel/red, @@ -35173,10 +28623,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "wmL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35187,23 +28634,16 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "wng" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "wno" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/mess) "wns" = ( /obj/effect/decal/cleanable/blood, @@ -35216,9 +28656,7 @@ /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/far, /obj/item/trash/crushed_cup, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "wnA" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -35234,15 +28672,11 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "wnK" = ( -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "woj" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "won" = ( /obj/structure/filingcabinet{ @@ -35257,18 +28691,14 @@ pixel_x = -8; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "wop" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "wot" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) "wox" = ( /obj/structure/machinery/light{ @@ -35278,10 +28708,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "woF" = ( /obj/effect/decal/cleanable/blood, @@ -35291,9 +28718,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "woJ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -35310,24 +28735,17 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "wpm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ icon_state = "stool_alt" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "wpr" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) "wpG" = ( /obj/effect/landmark/monkey_spawn, @@ -35339,10 +28757,7 @@ /obj/structure/bedsheetbin{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/security) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, @@ -35356,9 +28771,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -35372,9 +28785,7 @@ "wrv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "wrB" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -35393,10 +28804,7 @@ /area/varadero/interior/court) "wsa" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/technical_storage) "wsn" = ( /obj/item/storage/toolbox/mechanical, @@ -35422,16 +28830,11 @@ "wsZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "wtk" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "wts" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -35440,16 +28843,11 @@ /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/eastocean) "wty" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "wtB" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -35459,9 +28857,7 @@ icon_state = "tree_2"; pixel_y = 12 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_NW) "wtU" = ( /obj/structure/bed/chair{ @@ -35469,56 +28865,40 @@ icon_state = "chair_alt" }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wuA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "wuR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) "wvI" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) "wvK" = ( /obj/structure/closet/crate/freezer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "wwd" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) "wwk" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/varadero/interior/medical) "wwq" = ( /obj/structure/catwalk, @@ -35529,27 +28909,19 @@ density = 0; layer = 2.1 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "wws" = ( /obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wxf" = ( /obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "wxu" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "wxD" = ( /obj/structure/filingcabinet{ @@ -35563,23 +28935,16 @@ pixel_x = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) "wyE" = ( /obj/item/storage/belt/marine/quackers, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "wAx" = ( /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "wBc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -35587,10 +28952,7 @@ /area/varadero/interior_protected/caves/central) "wBp" = ( /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "wBD" = ( /obj/structure/surface/table/woodentable, @@ -35602,25 +28964,17 @@ /turf/open/floor/carpet, /area/varadero/interior/library) "wBN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/varadero/interior/cargo) "wBY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) "wCc" = ( /obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "wCE" = ( /obj/structure/pipes/vents/pump{ @@ -35630,9 +28984,7 @@ /area/varadero/interior/records) "wCR" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "wDi" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -35646,65 +28998,48 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "wDH" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 3.5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) "wDN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/administration) "wEn" = ( /obj/structure/largecrate/random, /obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "wEL" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) "wEU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "wFx" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wFJ" = ( /obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/farocean) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ @@ -35723,15 +29058,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "wGl" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "wGs" = ( /obj/effect/landmark/hunter_primary, @@ -35740,10 +29071,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35756,9 +29084,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "wHk" = ( /turf/closed/wall, @@ -35772,9 +29098,7 @@ /obj/structure/prop/static_tank/fuel{ pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) "wIg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -35782,34 +29106,24 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) "wIm" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "wIr" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "wIH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "wJl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -35828,26 +29142,18 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "wJu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "cargobay"; name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "wJB" = ( /obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35860,24 +29166,16 @@ /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) "wLq" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) "wLv" = ( /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/bunks) "wLB" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "wLF" = ( /obj/structure/surface/table/reinforced/prison, @@ -35889,10 +29187,7 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) "wLR" = ( /obj/structure/surface/table/reinforced/prison, @@ -35900,9 +29195,7 @@ pixel_x = -14; pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) "wMj" = ( /obj/structure/window/framed/colony/reinforced, @@ -35910,22 +29203,15 @@ /area/varadero/interior/hall_SE) "wMn" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "wMw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "wMx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/nanopaste, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "wNz" = ( /obj/item/stack/tile/plasteel{ @@ -35938,10 +29224,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "wNV" = ( /obj/structure/surface/table, @@ -35950,26 +29233,18 @@ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "wOC" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wOL" = ( /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/varadero/interior/disposals) "wOO" = ( /turf/closed/wall/r_wall, @@ -35982,9 +29257,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/evidencebag, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "wPl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -35996,10 +29269,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ @@ -36018,9 +29288,7 @@ /area/varadero/exterior/lz1_near) "wPE" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "wPH" = ( /obj/structure/platform_decoration/kutjevo{ @@ -36032,15 +29300,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "wQh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "wQi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -36048,9 +29312,7 @@ name = "\improper Colony Offices"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "wRi" = ( /obj/structure/surface/table, @@ -36058,27 +29320,20 @@ layer = 3.1; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "wRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/varadero/interior/medical) "wRB" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) "wRR" = ( /obj/structure/platform/kutjevo/smooth{ @@ -36094,32 +29349,22 @@ layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) "wSx" = ( /turf/closed/wall, /area/varadero/interior/laundry) "wSL" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) "wSM" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior_protected/caves/central) "wSX" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "wTE" = ( /obj/structure/bed/chair{ @@ -36131,9 +29376,7 @@ pixel_x = -7; pixel_y = -4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wTJ" = ( /turf/open/floor/plating, @@ -36142,23 +29385,15 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) "wUj" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) "wUr" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "wUF" = ( /obj/effect/overlay/palmtree_r, @@ -36172,10 +29407,7 @@ /area/varadero/interior/oob) "wVa" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/medical) "wVf" = ( /turf/closed/wall/r_wall, @@ -36198,25 +29430,17 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) "wVD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "wVE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) "wVI" = ( /obj/structure/sign/safety/airlock{ @@ -36265,23 +29489,17 @@ /area/varadero/interior/maintenance/security) "wXu" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "wXC" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "wXD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ @@ -36310,9 +29528,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) "wZF" = ( /obj/structure/bed/chair/wood/normal{ @@ -36323,23 +29539,17 @@ "xag" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "xaK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "xbc" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) "xbm" = ( /obj/structure/machinery/photocopier, @@ -36350,17 +29560,13 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "xbD" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) "xce" = ( /obj/structure/platform/kutjevo/smooth{ @@ -36380,16 +29586,11 @@ /area/varadero/interior/records) "xcz" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "xcE" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xdz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36400,17 +29601,11 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "xdJ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) "xdW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36420,9 +29615,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ @@ -36440,15 +29633,11 @@ /obj/structure/prop/souto_land/streamer{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "xff" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "blue" - }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, @@ -36474,9 +29663,7 @@ dir = 1; health = 300 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) "xgW" = ( /obj/structure/surface/table/reinforced/prison, @@ -36496,10 +29683,7 @@ pixel_x = 7; pixel_y = -2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "xgY" = ( /obj/effect/overlay/palmtree_r, @@ -36509,10 +29693,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "xhx" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ @@ -36535,18 +29716,13 @@ }, /obj/structure/closet/crate/ammo/alt, /obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "xka" = ( /obj/structure/window/framed/colony/reinforced{ color = "#aba9a9" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "xkb" = ( /obj/structure/surface/table/reinforced/prison, @@ -36556,10 +29732,7 @@ /obj/item/clothing/glasses/science{ pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) "xke" = ( /obj/effect/overlay/palmtree_r, @@ -36570,9 +29743,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) "xlb" = ( /obj/structure/machinery/disposal, @@ -36580,25 +29751,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) "xlv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/disposals) "xml" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -36614,28 +29778,20 @@ pixel_x = 12; pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) "xnr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "xnS" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/eastbeach) "xnV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/morgue) "xpe" = ( /obj/structure/surface/rack, @@ -36649,9 +29805,7 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "xpw" = ( /obj/structure/surface/table/reinforced/prison, @@ -36668,19 +29822,14 @@ pixel_y = 18 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/technical_storage) "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) "xqy" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "xqG" = ( /obj/structure/mirror{ @@ -36690,9 +29839,7 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/security) "xqN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36700,9 +29847,7 @@ name = "\improper Colony Administration"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "xqP" = ( /obj/structure/disposalpipe/segment{ @@ -36712,9 +29857,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) "xqS" = ( /obj/structure/stairs/perspective{ @@ -36727,10 +29870,7 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "xqY" = ( /obj/structure/disposalpipe/segment{ @@ -36745,10 +29885,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) "xrl" = ( /obj/structure/platform/kutjevo/smooth{ @@ -36762,33 +29899,21 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "xrA" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "xsi" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "xsH" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -36802,10 +29927,7 @@ /area/varadero/interior/court) "xug" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "xuB" = ( /obj/structure/disposalpipe/segment{ @@ -36815,9 +29937,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "xuJ" = ( /obj/structure/machinery/atm{ @@ -36832,40 +29952,29 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) "xuT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/emails{ pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "xuW" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) "xuX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "xvj" = ( /obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "xvF" = ( /obj/structure/window/framed/colony/reinforced, @@ -36875,10 +29984,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/packageWrap, /obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "xwG" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -36887,18 +29993,14 @@ pixel_y = -8 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "xwY" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "xxk" = ( /turf/open/auto_turf/sand_white/layer1, @@ -36917,15 +30019,11 @@ pixel_x = 2; pixel_y = 17 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) "xxs" = ( /obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "xxE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36936,9 +30034,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36961,10 +30057,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) "xya" = ( /obj/structure/surface/rack, @@ -36981,9 +30074,7 @@ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "xyr" = ( /obj/structure/sink{ @@ -36991,16 +30082,10 @@ pixel_x = -11; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "xyJ" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/records) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, @@ -37012,15 +30097,11 @@ /area/varadero/interior/maintenance/security) "xzc" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/pontoon_beach) "xzd" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "xzj" = ( /obj/structure/sign/safety/airlock{ @@ -37029,33 +30110,24 @@ /turf/closed/wall, /area/varadero/interior/library) "xzr" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/comms3) "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) "xAs" = ( /obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) "xAK" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) "xAO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "xBv" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37065,9 +30137,7 @@ name = "\improper Underground Lavatory"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) "xBw" = ( /obj/structure/machinery/storm_siren{ @@ -37084,25 +30154,16 @@ time_to_dispel = 25000 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "xBO" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) "xBS" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, @@ -37121,23 +30182,15 @@ req_access_txt = "100" }, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/varadero/interior/medical) "xCM" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) "xCU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/varadero/interior/cargo) "xCZ" = ( /obj/structure/prop/tower, @@ -37159,9 +30212,7 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "xDy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37172,9 +30223,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/court) "xDE" = ( /obj/structure/blocker/invisible_wall/water, @@ -37184,18 +30233,14 @@ "xEc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "xEl" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) "xEG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -37203,10 +30248,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "xFb" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/eastocean) "xFw" = ( /obj/structure/bed/chair{ @@ -37214,18 +30256,14 @@ dir = 8; pixel_y = 18 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/laundry) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) "xFO" = ( /obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/mess) "xFS" = ( /obj/structure/platform_decoration/kutjevo{ @@ -37238,14 +30276,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "xGp" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/varadero/interior/hall_SE) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37268,15 +30302,11 @@ /area/varadero/interior/court) "xHz" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "xIA" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) "xJb" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -37284,36 +30314,26 @@ pixel_y = 22 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xJt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "xJx" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) "xJZ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "xKo" = ( /obj/structure/surface/table, @@ -37323,9 +30343,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "xKq" = ( /obj/structure/surface/table/reinforced/prison, @@ -37364,9 +30382,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "xKL" = ( /obj/structure/surface/rack, @@ -37391,27 +30407,18 @@ pixel_x = -7; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) "xKS" = ( /obj/structure/lz_sign/new_varadero, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xLB" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach/lz) "xLE" = ( /obj/structure/noticeboard{ @@ -37422,31 +30429,21 @@ /area/varadero/interior/security) "xLN" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) "xMq" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "xMs" = ( /obj/item/paper, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/morgue) "xNb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "xNw" = ( /obj/effect/decal/cleanable/blood/drip, @@ -37463,22 +30460,16 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "xOo" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "xOx" = ( /obj/structure/closet/crate/secure, /obj/item/trash/popcorn, /obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "xOz" = ( /obj/structure/machinery/light{ @@ -37490,33 +30481,24 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/varadero/interior/toilets) "xOI" = ( /obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "xOX" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "xPj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "xPx" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -37525,15 +30507,11 @@ req_access = null; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "xPV" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, @@ -37551,9 +30529,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) "xRx" = ( /obj/structure/surface/table/woodentable, @@ -37586,35 +30562,24 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "xTA" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) "xTH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "xUp" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) "xUq" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) "xUs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37624,9 +30589,7 @@ /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "xUu" = ( /obj/structure/surface/table/woodentable, @@ -37634,9 +30597,7 @@ /turf/open/floor/carpet, /area/varadero/interior/library) "xUH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/varadero/interior/court) "xVe" = ( /obj/item/prop/helmetgarb/bullet_pipe{ @@ -37647,34 +30608,25 @@ pixel_x = 10; pixel_y = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "xVw" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) "xVA" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "xVC" = ( /obj/structure/closet/crate/secure, /obj/item/trash/sosjerky, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "xVQ" = ( /obj/structure/sign/safety/reception, @@ -37685,35 +30637,26 @@ /area/varadero/interior/maintenance/north) "xVX" = ( /obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) "xWj" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "xWL" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) "xWY" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) "xXe" = ( /obj/structure/surface/table/reinforced/prison, @@ -37726,18 +30669,12 @@ pixel_x = -6; pixel_y = 12 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/technical_storage) "xXr" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xYB" = ( /obj/item/tool/pickaxe, @@ -37748,9 +30685,7 @@ pixel_x = 4; pixel_y = -2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "xYM" = ( /obj/structure/bed/chair{ @@ -37760,10 +30695,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) "xZa" = ( /obj/structure/prop/rock/brown, @@ -37774,9 +30706,7 @@ dir = 1 }, /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "xZD" = ( /obj/structure/disposalpipe/segment{ @@ -37790,16 +30720,10 @@ /area/varadero/interior/disposals) "xZN" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) "xZO" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "yab" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37807,15 +30731,11 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "yaf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) "yaC" = ( /obj/structure/machinery/door/airlock/strata/autoname{ @@ -37823,9 +30743,7 @@ locked = 1; name = "\improper Navigation Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "yba" = ( /obj/structure/machinery/space_heater, @@ -37836,10 +30754,7 @@ pixel_x = -2; pixel_y = 16 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "ybj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37850,9 +30765,7 @@ pixel_x = -16; pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "ybm" = ( /obj/structure/surface/table/woodentable, @@ -37867,9 +30780,7 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "ybY" = ( /obj/structure/surface/table, @@ -37879,9 +30790,7 @@ pixel_y = 11 }, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "ycz" = ( /obj/structure/machinery/shower{ @@ -37911,17 +30820,13 @@ /area/varadero/interior/records) "ydP" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ydQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) "ydZ" = ( /obj/structure/window/reinforced{ @@ -37940,31 +30845,20 @@ /obj/item/ammo_magazine/sniper/svd, /obj/item/weapon/gun/rifle/sniper/svd, /obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "yeF" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) "yeG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/frame/camera, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) "yeH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) "yeJ" = ( /obj/structure/machinery/light/small{ @@ -37983,28 +30877,20 @@ "yeY" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) "yfh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "yfQ" = ( /obj/structure/bed/chair{ dir = 4; icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/varadero/interior/administration) "yfT" = ( /obj/item/stack/tile/plasteel{ @@ -38035,9 +30921,7 @@ /obj/structure/catwalk{ indestructible = 1 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) "ygT" = ( /obj/structure/surface/table, @@ -38046,10 +30930,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) "ygY" = ( /obj/item/card/id/silver{ @@ -38057,19 +30938,13 @@ pixel_y = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "ygZ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "yhy" = ( /obj/structure/filingcabinet{ @@ -38119,9 +30994,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "yji" = ( /obj/structure/surface/table/reinforced/prison, @@ -38132,10 +31005,7 @@ /obj/item/storage/firstaid/rad{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "yjp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -38143,10 +31013,7 @@ name = "\improper Underground Security Checkpoint"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_N) "yjH" = ( /obj/structure/cargo_container/kelland/right, @@ -38158,10 +31025,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) "ykc" = ( /turf/closed/wall, @@ -38178,16 +31042,12 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) "ykA" = ( /obj/structure/closet/crate/construction, /obj/item/storage/belt/utility/full, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/varadero/exterior/eastbeach) "ykE" = ( /obj/structure/surface/table/reinforced/prison, @@ -38196,9 +31056,7 @@ pixel_y = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "ykM" = ( /obj/effect/overlay/palmtree_r{ @@ -51032,7 +43890,7 @@ wMw wMw wMw pAp -cFK +aVs kdV gvM gvM @@ -63993,7 +56851,7 @@ ryD xJZ iLc dUL -jcY +bPk sny xJZ xJZ diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 12b8bb793c40..2baad841c255 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -16,10 +16,7 @@ /area/strata/ug/interior) "aaf" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aag" = ( /obj/effect/landmark/xeno_spawn, @@ -65,10 +62,7 @@ "aap" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aaq" = ( /obj/effect/decal/remains/xeno, @@ -87,9 +81,7 @@ dir = 8; icon_state = "p_stair_ew_half_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/minehead) "aau" = ( /obj/structure/platform/strata{ @@ -128,10 +120,7 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aaA" = ( /obj/structure/surface/table/reinforced/prison, @@ -245,10 +234,7 @@ "aaR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aaS" = ( /obj/structure/bedsheetbin, @@ -375,19 +361,13 @@ "abt" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abu" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abv" = ( /obj/effect/decal/cleanable/blood, @@ -402,10 +382,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abz" = ( /obj/structure/machinery/light/small{ @@ -420,18 +397,14 @@ "abB" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "abC" = ( /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ug/interior/jungle/deep/minehead) "abD" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "abE" = ( /obj/structure/surface/rack, @@ -440,10 +413,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "abF" = ( /obj/structure/surface/rack, @@ -451,24 +421,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "abH" = ( /obj/structure/surface/rack, /obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "abI" = ( /obj/structure/surface/rack, /obj/item/storage/box/cdeathalarm_kit, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "abJ" = ( /obj/structure/surface/rack, @@ -478,38 +441,27 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "abK" = ( /obj/structure/closet/wardrobe/grey, /obj/effect/landmark/wo_supplies/storage/mines, /obj/effect/landmark/wo_supplies/storage/mines, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abL" = ( /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, /obj/structure/surface/rack, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abM" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/gibs/core, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "abN" = ( /obj/item/stack/rods, @@ -535,17 +487,13 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/exterior/paths/cabin_area) "abQ" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/exterior/paths/cabin_area) "abR" = ( /obj/structure/platform/strata{ @@ -559,44 +507,29 @@ /area/strata/ag/exterior/paths/cabin_area) "abS" = ( /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/strata/ug/interior/jungle/deep/minehead) "abT" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, /obj/item/tool/crowbar, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "abU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "abV" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "abW" = ( /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "abX" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "abY" = ( /obj/structure/flora/pottedplant{ @@ -606,15 +539,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "abZ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aca" = ( /obj/structure/sink{ @@ -624,10 +553,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "acb" = ( /obj/structure/toilet{ @@ -637,10 +563,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "acc" = ( /obj/structure/platform/strata, @@ -650,9 +573,7 @@ "acd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "ace" = ( /obj/structure/machinery/light/small{ @@ -689,15 +610,11 @@ /area/strata/ag/exterior/paths/cabin_area) "acj" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "ack" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acl" = ( /obj/structure/machinery/light/small{ @@ -705,37 +622,25 @@ pixel_y = 20 }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acm" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "acn" = ( /obj/structure/reagent_dispensers, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aco" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner, /obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "acp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acq" = ( /obj/structure/machinery/shower{ @@ -748,25 +653,17 @@ /obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "acr" = ( /obj/item/stack/rods, /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) "acs" = ( /obj/effect/decal/cleanable/blood, /obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "act" = ( /obj/structure/inflatable/door, @@ -804,89 +701,63 @@ "acx" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acy" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acz" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acA" = ( /obj/structure/window/reinforced/tinted, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acB" = ( /obj/structure/window/reinforced/tinted, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acE" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "acF" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acG" = ( /obj/structure/window/reinforced/tinted, /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "acH" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "acI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) "acJ" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "acK" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "acL" = ( /obj/structure/machinery/scoreboard{ @@ -896,9 +767,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "acM" = ( /obj/structure/machinery/light/small{ @@ -907,16 +776,11 @@ }, /obj/effect/landmark/corpsespawner/russian, /obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "acN" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/hive) "acO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -938,15 +802,11 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "acR" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acS" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "acT" = ( /obj/structure/filingcabinet, @@ -954,18 +814,14 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acU" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "acV" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "acW" = ( /obj/structure/bed/nest, @@ -979,45 +835,33 @@ /area/strata/ag/exterior/marsh/water) "acY" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "acZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ada" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "adb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "add" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "ade" = ( /obj/structure/surface/table/reinforced/prison, @@ -1026,23 +870,17 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/ids, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adg" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adh" = ( /obj/structure/sign/safety/bulkhead_door, @@ -1052,18 +890,13 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "adj" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "adk" = ( /obj/structure/machinery/weather_siren{ @@ -1092,9 +925,7 @@ /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "ado" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/cabin_area) "adq" = ( /obj/structure/machinery/weather_siren{ @@ -1108,62 +939,42 @@ "ads" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/nearlz2) "adt" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "adw" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "adx" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "ady" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "adz" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "adA" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "adB" = ( /obj/structure/closet/basketball, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "adC" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -1182,9 +993,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "adE" = ( /obj/effect/decal/warning_stripes{ @@ -1196,9 +1005,7 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "adF" = ( /obj/effect/decal/warning_stripes{ @@ -1213,20 +1020,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "adG" = ( /obj/structure/closet/basketball, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "adH" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "adI" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -1252,9 +1053,7 @@ /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "adN" = ( /obj/item/lightstick/red/planted, @@ -1266,18 +1065,14 @@ pixel_y = 20 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "adP" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "adQ" = ( /turf/closed/wall/wood, @@ -1290,33 +1085,25 @@ }, /obj/item/tool/kitchen/utensil/pfork, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "adS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) "adT" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "adU" = ( /obj/structure/closet/secure_closet/security/soro, /obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "adV" = ( /obj/structure/filingcabinet, /obj/structure/window/reinforced/tinted, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adW" = ( /obj/item/stack/rods, @@ -1325,18 +1112,13 @@ "adX" = ( /obj/structure/barricade/handrail/strata, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "adY" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "adZ" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, @@ -1344,21 +1126,15 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aea" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aeb" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aec" = ( /obj/structure/machinery/vending/coffee, @@ -1366,9 +1142,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aed" = ( /obj/effect/decal/warning_stripes{ @@ -1377,25 +1151,19 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "aee" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "aef" = ( /obj/structure/inflatable/door, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "aeg" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -1410,40 +1178,29 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aei" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "aej" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "aek" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aem" = ( /obj/item/fuel_cell, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aen" = ( /obj/effect/landmark/monkey_spawn, @@ -1453,17 +1210,13 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aeq" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aer" = ( /obj/structure/window/reinforced/tinted{ @@ -1473,25 +1226,18 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aes" = ( /obj/structure/bed/nest, /obj/item/storage/pill_bottle/inaprovaline/skillless, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aet" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "aeu" = ( /obj/effect/decal/warning_stripes{ @@ -1499,9 +1245,7 @@ }, /obj/effect/decal/warning_stripes, /obj/item/toy/beach_ball/holoball, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "aev" = ( /obj/effect/landmark/corpsespawner/upp, @@ -1509,9 +1253,7 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "aex" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "aez" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -1519,17 +1261,13 @@ /area/strata/ug/interior/jungle/deep/minehead) "aeB" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aeC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aeD" = ( /obj/structure/machinery/light/small{ @@ -1539,9 +1277,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aeE" = ( /obj/structure/window/reinforced/tinted{ @@ -1549,18 +1285,13 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aeF" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "aeH" = ( /obj/structure/surface/table/reinforced/prison, @@ -1570,9 +1301,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "aeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -1590,17 +1319,13 @@ /area/strata/ag/exterior/paths/cabin_area) "aeM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aeN" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "aeR" = ( /obj/structure/machinery/power/apc{ @@ -1608,26 +1333,18 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aeS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "aeT" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aeU" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -1647,9 +1364,7 @@ layer = 2.9 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aeY" = ( /turf/closed/shuttle/ert{ @@ -1665,43 +1380,29 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "afb" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "afc" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "afd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "afe" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aff" = ( /obj/item/lightstick/planted, @@ -1709,9 +1410,7 @@ /area/strata/ag/interior/mountain) "afg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "afh" = ( /obj/effect/decal/warning_stripes{ @@ -1720,9 +1419,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "afi" = ( /obj/effect/decal/warning_stripes{ @@ -1738,9 +1435,7 @@ icon_state = "E" }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "afj" = ( /obj/effect/decal/warning_stripes{ @@ -1753,9 +1448,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "afk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1763,22 +1456,16 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "afl" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "afm" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "afn" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "afo" = ( /obj/structure/inflatable/door, @@ -1794,9 +1481,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "afs" = ( /obj/structure/flora/pottedplant{ @@ -1806,10 +1491,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "aft" = ( /obj/structure/sink{ @@ -1817,9 +1499,7 @@ pixel_x = -11 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "afu" = ( /obj/structure/flora/pottedplant{ @@ -1829,10 +1509,7 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "afv" = ( /obj/structure/platform/strata{ @@ -1850,9 +1527,7 @@ "afx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "afy" = ( /turf/closed/shuttle/ert{ @@ -1873,43 +1548,32 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "afD" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "afE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "afF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "afG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "afH" = ( /obj/structure/machinery/light/small{ @@ -1919,9 +1583,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "afI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1946,48 +1608,34 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "afL" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "afM" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "afN" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "afO" = ( /obj/effect/decal/cleanable/blood/gibs/down, /obj/item/dogtag, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/gen/bball) "afP" = ( /obj/structure/machinery/washing_machine, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "afQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -2004,10 +1652,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "afU" = ( /obj/structure/machinery/light/small{ @@ -2015,10 +1660,7 @@ pixel_y = 20 }, /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "afV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -2028,9 +1670,7 @@ /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) "afW" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "afX" = ( /obj/structure/surface/table/reinforced/prison, @@ -2039,17 +1679,13 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "afY" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) "afZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -2060,9 +1696,7 @@ "aga" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "agb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -2081,16 +1715,11 @@ /area/strata/ag/exterior/paths/cabin_area) "agf" = ( /obj/structure/bedsheetbin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "agg" = ( /obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "agh" = ( /obj/structure/machinery/washing_machine, @@ -2098,9 +1727,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "agi" = ( /obj/effect/decal/cleanable/dirt, @@ -2109,18 +1736,12 @@ "agl" = ( /obj/structure/machinery/light/small, /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "agm" = ( /obj/structure/inflatable/door, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "agn" = ( /obj/structure/barricade/handrail/strata, @@ -2134,15 +1755,11 @@ "agp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) "agq" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "agr" = ( /obj/structure/machinery/space_heater, @@ -2150,15 +1767,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ags" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "agt" = ( /obj/effect/landmark/xeno_spawn, @@ -2166,15 +1779,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "agu" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) "agv" = ( /turf/closed/shuttle/ert{ @@ -2183,22 +1792,15 @@ /area/strata/ug/interior/jungle/deep/structures/res) "agw" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "agx" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "agy" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "agz" = ( /obj/structure/stairs/perspective{ @@ -2208,9 +1810,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "agA" = ( /obj/effect/particle_effect/steam, @@ -2229,18 +1829,14 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agC" = ( /obj/effect/decal/remains/xeno, /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agD" = ( /obj/effect/decal/cleanable/blood, @@ -2251,9 +1847,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -2261,27 +1855,21 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agH" = ( /obj/structure/barricade/snow{ @@ -2296,25 +1884,17 @@ pixel_y = -4 }, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "agJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "agK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "agL" = ( /obj/structure/surface/table/reinforced/prison, @@ -2323,18 +1903,12 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "agM" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/reagentgrinder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "agN" = ( /obj/structure/sign/safety/fire_haz, @@ -2345,16 +1919,11 @@ /area/space) "agP" = ( /obj/structure/machinery/gibber, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "agQ" = ( /obj/structure/closet/lasertag/red, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "agR" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -2393,10 +1962,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "ahe" = ( /obj/structure/flora/pottedplant{ @@ -2408,33 +1974,23 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "ahf" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "ahg" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/paths/cabin_area/central) "ahh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ahi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ahj" = ( /obj/item/stack/catwalk, @@ -2460,9 +2016,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ahm" = ( /obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ahn" = ( /turf/open/auto_turf/ice/layer2, @@ -2476,24 +2030,18 @@ dir = 4 }, /obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ahp" = ( /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets, /obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ahq" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "ahr" = ( /obj/structure/closet/fireaxecabinet, @@ -2501,9 +2049,7 @@ /area/strata/ag/interior/dorms/flight_control) "ahs" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aht" = ( /obj/structure/bed/nest, @@ -2513,39 +2059,28 @@ }, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ahu" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahv" = ( /obj/structure/mirror{ pixel_y = 28 }, /obj/structure/largecrate/guns/russian, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "ahw" = ( /obj/structure/machinery/processor, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahx" = ( /obj/structure/pipes/vents/pump{ @@ -2554,20 +2089,14 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahy" = ( /obj/structure/kitchenspike, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahz" = ( /obj/structure/barricade/snow{ @@ -2604,9 +2133,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ahJ" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ahK" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -2620,9 +2147,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ahM" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) "ahN" = ( /obj/structure/disposalpipe/segment{ @@ -2638,32 +2163,24 @@ pixel_y = 20 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "ahP" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "ahQ" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "ahR" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ahS" = ( /obj/item/stack/rods, @@ -2677,45 +2194,30 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "ahV" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "ahW" = ( /obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "ahX" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/reagent_container/food/drinks/milk, /obj/item/reagent_container/food/drinks/milk, /obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ahY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -2746,37 +2248,27 @@ "aih" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aii" = ( /obj/structure/machinery/computer/guestpass, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aij" = ( /obj/item/device/flashlight/lamp, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aik" = ( /obj/item/storage/firstaid/adv, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "ail" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aim" = ( /turf/closed/shuttle/ert{ @@ -2817,9 +2309,7 @@ "air" = ( /obj/item/stool, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ais" = ( /turf/closed/shuttle/ert{ @@ -2830,10 +2320,7 @@ /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "aiu" = ( /obj/structure/window/reinforced/tinted{ @@ -2843,16 +2330,11 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aiv" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "aiw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -2870,9 +2352,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "aiz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -2881,9 +2361,7 @@ /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "aiA" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -2899,9 +2377,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aiC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -2910,9 +2386,7 @@ pixel_y = -4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aiD" = ( /obj/structure/machinery/light/small{ @@ -2923,26 +2397,18 @@ "aiE" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aiF" = ( /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "aiG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "aiH" = ( /obj/structure/sign/safety/fridge, @@ -2964,9 +2430,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "aiK" = ( /obj/structure/barricade/snow{ @@ -2981,25 +2445,16 @@ /area/strata/ag/interior/outpost/gen/bball) "aiM" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/personal_storage) "aiN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/personal_storage) "aiO" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/personal_storage) "aiP" = ( /obj/effect/particle_effect/steam, @@ -3020,14 +2475,10 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aiV" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "aiW" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -3038,18 +2489,14 @@ "aiX" = ( /obj/item/clipboard, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aiY" = ( /obj/structure/machinery/computer/cameras{ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aiZ" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -3074,15 +2521,11 @@ "ajd" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "aje" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ajf" = ( /obj/structure/platform/strata/metal{ @@ -3095,9 +2538,7 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "ajg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/flight_control) "ajh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -3107,18 +2548,14 @@ /area/strata/ag/exterior/paths/cabin_area) "aji" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ajj" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ajk" = ( /obj/item/weapon/gun/revolver/cmb{ @@ -3128,9 +2565,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ajl" = ( /obj/effect/decal/cleanable/blood, @@ -3148,28 +2583,19 @@ /obj/item/clothing/head/soft/ferret{ pixel_y = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ajo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/eggplantparm, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ajp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/jellysandwich, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ajr" = ( /obj/structure/surface/table/reinforced/prison, @@ -3179,26 +2605,18 @@ pixel_y = 3 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ajs" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ajt" = ( /obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "aju" = ( /obj/effect/landmark/monkey_spawn, @@ -3208,10 +2626,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/disposals) "ajw" = ( /obj/effect/particle_effect/steam, @@ -3224,47 +2639,33 @@ /area/strata/ag/exterior/marsh/river) "ajx" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajy" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/lightreplacer, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajC" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "ajD" = ( /obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "ajE" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "ajF" = ( /turf/closed/shuttle/ert{ @@ -3274,27 +2675,19 @@ /area/strata/ug/interior/jungle/deep/structures/res) "ajG" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ajH" = ( /obj/structure/bookcase, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ajI" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ajJ" = ( /obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "ajK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -3306,9 +2699,7 @@ icon_state = "xgib4" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ajN" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -3316,24 +2707,17 @@ "ajO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "ajQ" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ajR" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "ajS" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3352,9 +2736,7 @@ pixel_y = 10 }, /obj/structure/window, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "ajT" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3365,24 +2747,18 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "ajU" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 22 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "ajV" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajW" = ( /obj/item/stack/rods, @@ -3393,16 +2769,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajY" = ( /obj/structure/closet/wardrobe/red, /obj/item/clothing/suit/imperium_monk, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/personal_storage) "ajZ" = ( /obj/structure/closet/secure_closet/personal, @@ -3411,9 +2783,7 @@ pixel_y = 20 }, /obj/item/clothing/suit/storage/bomber, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/personal_storage) "aka" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -3426,10 +2796,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/device/mass_spectrometer, /obj/item/device/matter_decompiler, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "ake" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -3439,15 +2806,10 @@ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "akg" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "akh" = ( /turf/closed/shuttle/ert{ @@ -3487,10 +2849,7 @@ /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "ako" = ( /obj/structure/surface/table/reinforced/prison, @@ -3498,23 +2857,17 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "akp" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "akq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "akr" = ( /obj/structure/machinery/light/small{ @@ -3543,44 +2896,29 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "aku" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "akv" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "akw" = ( /obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "akx" = ( /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/strata/ag/interior/dorms/maintenance) "aky" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "akz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -3592,9 +2930,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "akB" = ( /obj/structure/barricade/snow{ @@ -3607,16 +2943,12 @@ /area/strata/ag/exterior/paths/cabin_area) "akC" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/personal_storage) "akD" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/personal_storage) "akE" = ( /obj/structure/sign/nosmoking_1, @@ -3636,33 +2968,22 @@ /area/strata/ag/exterior/paths/cabin_area) "akK" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "akL" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "akM" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "akN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "akO" = ( /obj/structure/largecrate/random/barrel/green, @@ -3681,10 +3002,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "akR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -3703,79 +3021,54 @@ "akU" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "akV" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) "akW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "akX" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "akY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cubancarp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "ala" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/fishfingers, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "alb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "alc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/meatballspagetti, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "ald" = ( /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/strata/ag/interior/dorms/canteen) "ale" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3788,16 +3081,12 @@ pixel_x = 8; pixel_y = 17 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "alf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "ali" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -3817,73 +3106,48 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/canteen/personal_storage) "all" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "alm" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/personal_storage) "aln" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "alo" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "alp" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Chunkeez Diner door" }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "alq" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "alr" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "als" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "alu" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "alv" = ( /obj/structure/barricade/snow, @@ -3899,9 +3163,7 @@ "alx" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "aly" = ( /turf/closed/wall/strata_ice/jungle, @@ -3917,9 +3179,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "alB" = ( /obj/structure/platform_decoration/strata/metal{ @@ -3929,97 +3189,64 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "alC" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "alD" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "alE" = ( /obj/structure/lz_sign/sorokyne_sign/interior, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "alF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "alG" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "alH" = ( /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/strata/ag/interior/dorms/canteen) "alI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "alJ" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "alK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "alL" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "alM" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "alN" = ( /obj/effect/decal/cleanable/blood, @@ -4030,10 +3257,7 @@ /area/strata/ag/exterior/research_decks) "alQ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "alR" = ( /obj/structure/barricade/snow{ @@ -4047,80 +3271,54 @@ /area/strata/ag/exterior/paths/cabin_area) "alT" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/personal_storage) "alU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "alV" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "alW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "alX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "alY" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "alZ" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "amc" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "amd" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "ame" = ( /obj/structure/mirror, @@ -4129,18 +3327,12 @@ "amf" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "amg" = ( /obj/structure/surface/rack, /obj/item/spacecash/c500, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "ami" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -4176,10 +3368,7 @@ /obj/item/clothing/suit/storage/snow_suit, /obj/item/tank/emergency_oxygen/engi, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "amq" = ( /obj/structure/pipes/vents/pump, @@ -4187,25 +3376,17 @@ /area/strata/ag/interior/nearlz1) "amr" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "ams" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "amt" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "amu" = ( /obj/structure/prop/almayer/computers/sensor_computer1, @@ -4219,9 +3400,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "amw" = ( /obj/effect/decal/cleanable/blood, @@ -4232,9 +3411,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "amA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -4260,10 +3437,7 @@ "amL" = ( /obj/item/stool, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "amM" = ( /obj/structure/bedsheetbin, @@ -4271,21 +3445,14 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "amN" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "amO" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "amP" = ( /obj/structure/machinery/shower{ @@ -4310,17 +3477,11 @@ layer = 3 }, /obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "amZ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "ana" = ( /obj/effect/decal/cleanable/blood{ @@ -4328,10 +3489,7 @@ }, /obj/effect/decal/cleanable/blood/gibs/limb, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "anb" = ( /obj/structure/platform/strata/metal{ @@ -4349,9 +3507,7 @@ /area/strata/ag/interior/outpost/gen/foyer) "and" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "ane" = ( /turf/open/floor/strata, @@ -4364,23 +3520,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "anh" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "ani" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "anj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4390,29 +3540,21 @@ /area/strata/ag/interior/nearlz1) "ank" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "anl" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "anm" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "ann" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "ano" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4421,20 +3563,14 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "anp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "anq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4444,10 +3580,7 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "anr" = ( /obj/structure/surface/rack, @@ -4460,9 +3593,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "ans" = ( /obj/structure/closet/secure_closet/security/soro, @@ -4472,20 +3603,14 @@ pixel_y = 20 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "ant" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anu" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anv" = ( /obj/structure/surface/table/reinforced/prison, @@ -4498,9 +3623,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anw" = ( /obj/effect/decal/cleanable/blood, @@ -4510,10 +3633,7 @@ /area/strata/ag/exterior/research_decks) "anx" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "anz" = ( /obj/structure/surface/table/reinforced/prison, @@ -4527,24 +3647,18 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anA" = ( /obj/structure/machinery/space_heater, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anB" = ( /obj/item/reagent_container/food/snacks/carpmeat, /obj/effect/landmark/objective_landmark/close, /obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "anC" = ( /obj/item/device/megaphone, @@ -4552,9 +3666,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "anE" = ( /obj/structure/stairs/perspective{ @@ -4569,18 +3681,14 @@ pixel_x = 3; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "anG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/personal_storage) "anI" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "anJ" = ( /obj/structure/sign/safety/galley, @@ -4589,25 +3697,17 @@ "anK" = ( /obj/structure/machinery/washing_machine, /obj/item/facepaint/skull, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "anL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "anM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "anN" = ( /obj/structure/platform/strata/metal{ @@ -4618,9 +3718,7 @@ "anP" = ( /obj/structure/bedsheetbin, /obj/item/device/binoculars/range, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "anR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -4636,16 +3734,12 @@ /area/strata/ag/interior/outpost/canteen/personal_storage) "anV" = ( /obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "anW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoa" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -4659,31 +3753,22 @@ /area/strata/ug/interior/jungle/deep/minehead) "aod" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aoi" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) "aoj" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aok" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ag/interior/landingzone_1) "aol" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aom" = ( /obj/structure/machinery/light/small{ @@ -4693,38 +3778,25 @@ /area/strata/ag/interior/nearlz1) "aon" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "aoo" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "aop" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/canteen) "aoq" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/canteen) "aor" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/canteen) "aos" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -4732,23 +3804,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "aot" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "aou" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "aov" = ( /obj/effect/decal/cleanable/blood{ @@ -4763,9 +3829,7 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "aoz" = ( /obj/structure/machinery/power/apc{ @@ -4776,9 +3840,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "aoA" = ( /obj/item/lightstick/planted, @@ -4791,9 +3853,7 @@ "aoC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aoD" = ( /obj/structure/surface/table/reinforced/prison, @@ -4802,63 +3862,43 @@ pixel_y = 6 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aoE" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/security) "aoF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aoH" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aoI" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aoJ" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoK" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoL" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4868,19 +3908,13 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoO" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "aoP" = ( /obj/structure/stairs/perspective{ @@ -4905,10 +3939,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/minehead) "aoT" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -4920,38 +3951,25 @@ /obj/structure/surface/rack, /obj/item/storage/box/masks, /obj/item/storage/box/masks, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aoV" = ( /obj/structure/surface/rack, /obj/item/storage/box/holobadge, /obj/item/storage/box/holobadge, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aoW" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "aoX" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aoY" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "apc" = ( /obj/structure/machinery/floodlight/landing, @@ -4967,45 +3985,31 @@ /area/strata/ag/exterior/paths/cabin_area) "apf" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "aph" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "api" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "apj" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "apk" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "apl" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "apm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "app" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -5013,9 +4017,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "apr" = ( /obj/structure/flora/pottedplant{ @@ -5024,24 +4026,17 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "aps" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "apt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "apu" = ( /obj/structure/surface/table/reinforced/prison, @@ -5049,43 +4044,33 @@ /obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "apv" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "apw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "apx" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "apy" = ( /obj/structure/surface/rack, /obj/item/storage/box/m94, /obj/item/storage/box/m94, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "apz" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -5101,38 +4086,26 @@ "apC" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/suit/radiation, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "apD" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "apE" = ( /obj/structure/machinery/washing_machine, /obj/item/clothing/suit/bluetag, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "apF" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "apG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "apI" = ( /obj/structure/curtain/open/shower, @@ -5145,45 +4118,31 @@ icon_state = "p_stair_full" }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "apK" = ( /obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "apL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "apM" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "apN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/pizza, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "apO" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "apP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -5200,9 +4159,7 @@ pixel_x = 6; pixel_y = 19 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "apT" = ( /obj/structure/surface/table/reinforced/prison, @@ -5213,40 +4170,30 @@ /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/kitchen/knife, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "apV" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "apW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "apX" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "apY" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "apZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -5255,9 +4202,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aqa" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -5265,9 +4210,7 @@ }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aqb" = ( /obj/effect/decal/cleanable/blood{ @@ -5276,9 +4219,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aqc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -5286,35 +4227,25 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aqd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "aqe" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "aqf" = ( /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/strata/ag/interior/dorms) "aqg" = ( /obj/structure/sign/nosmoking_2, @@ -5322,18 +4253,14 @@ /area/strata/ag/interior/dorms) "aqh" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aqi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "aqj" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -5358,17 +4285,11 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) "aqo" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) "aqp" = ( /obj/structure/sign/nosmoking_1, @@ -5386,28 +4307,20 @@ "aqs" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) "aqt" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) "aqv" = ( /obj/structure/surface/rack, /obj/item/storage/box/cups, /obj/item/storage/box/cups, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aqy" = ( /obj/structure/bed/chair{ @@ -5416,17 +4329,13 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aqz" = ( /obj/structure/surface/rack, /obj/item/stack/folding_barricade, /obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aqA" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5434,88 +4343,62 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "aqB" = ( /obj/item/storage/box/nade_box/tear_gas, /obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aqC" = ( /obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/security) "aqD" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/security) "aqE" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aqG" = ( /obj/structure/machinery/computer/communications{ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqI" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqJ" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqK" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqL" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqM" = ( /obj/item/stool, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqN" = ( /obj/item/lightstick/planted, @@ -5524,15 +4407,11 @@ /area/strata/ag/interior/restricted/devroom) "aqP" = ( /obj/item/device/aicard, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqQ" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "aqR" = ( /obj/structure/stairs/perspective{ @@ -5550,97 +4429,71 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "aqU" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) "aqV" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) "aqW" = ( /obj/item/clipboard, /obj/item/clipboard, /obj/structure/surface/rack, /obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) "aqX" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aqY" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aqZ" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "ara" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "arb" = ( /obj/item/storage/belt/security, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "arc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "ard" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "are" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) "arh" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) "ari" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) "arj" = ( /obj/structure/platform/strata/metal{ @@ -5666,9 +4519,7 @@ /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) "aro" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/paths/north_outpost) "arp" = ( /obj/structure/largecrate/random, @@ -5694,9 +4545,7 @@ /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "art" = ( /obj/structure/surface/rack, @@ -5705,9 +4554,7 @@ /obj/item/storage/box/holobadge, /obj/item/storage/box/evidence, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aru" = ( /obj/structure/surface/rack, @@ -5715,9 +4562,7 @@ /obj/item/storage/box/lightstick/red, /obj/item/storage/box/lightstick/red, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "arv" = ( /obj/structure/filingcabinet, @@ -5725,23 +4570,17 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "arw" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "arx" = ( /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "ary" = ( /obj/structure/bed/chair{ @@ -5750,15 +4589,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "arz" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "arA" = ( /obj/structure/bed/chair{ @@ -5767,9 +4602,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "arB" = ( /obj/structure/machinery/camera/autoname{ @@ -5784,9 +4617,7 @@ }, /obj/item/stack/folding_barricade, /obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "arE" = ( /obj/structure/surface/rack, @@ -5796,36 +4627,25 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "arF" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/security) "arG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/security) "arH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/personal_storage) "arI" = ( /obj/structure/sign/prop3, @@ -5833,9 +4653,7 @@ /area/strata/ag/interior/outpost/canteen) "arJ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "arK" = ( /obj/structure/platform/strata/metal, @@ -5859,17 +4677,11 @@ /area/strata/ug/interior/jungle/deep/minehead) "arO" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "arP" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "arQ" = ( /obj/structure/closet/fireaxecabinet, @@ -5879,9 +4691,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "arS" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -5891,18 +4701,14 @@ /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "arU" = ( /obj/item/storage/box/ids, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/ids, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "arV" = ( /obj/structure/surface/table/reinforced/prison, @@ -5910,15 +4716,11 @@ dir = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "arW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "arX" = ( /obj/structure/machinery/light/small{ @@ -5926,14 +4728,10 @@ pixel_y = 20 }, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "arY" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "arZ" = ( /obj/structure/platform/strata{ @@ -5948,9 +4746,7 @@ /area/strata/ag/interior/dorms) "asb" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "asc" = ( /obj/structure/pipes/vents/pump{ @@ -5959,24 +4755,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "asd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/tcomms/tcomms_deck) "ase" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) "asf" = ( /obj/structure/machinery/power/terminal{ @@ -5999,9 +4788,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "asj" = ( /obj/structure/stairs/perspective{ @@ -6022,14 +4809,10 @@ /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) "asm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/research_decks) "asn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/research_decks) "aso" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -6050,9 +4833,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "ass" = ( /obj/structure/surface/rack, @@ -6060,9 +4841,7 @@ /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "ast" = ( /obj/item/storage/box/donkpockets, @@ -6093,9 +4872,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "asx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6109,9 +4886,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asz" = ( /obj/structure/surface/table/reinforced/prison, @@ -6119,9 +4894,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asA" = ( /obj/structure/surface/table/reinforced/prison, @@ -6131,9 +4904,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asB" = ( /obj/structure/surface/table/reinforced/prison, @@ -6145,9 +4916,7 @@ /obj/item/paper_bin, /obj/structure/pipes/standard/manifold/hidden/cyan, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asD" = ( /obj/effect/decal/cleanable/blood/oil, @@ -6157,9 +4926,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asF" = ( /obj/structure/machinery/light/small{ @@ -6172,55 +4939,41 @@ /obj/item/stack/folding_barricade, /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "asJ" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asK" = ( /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asL" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asM" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asN" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asO" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asP" = ( /obj/structure/surface/table/reinforced/prison, @@ -6229,42 +4982,27 @@ pixel_y = 6 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asR" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asS" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asT" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asU" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asV" = ( /obj/structure/surface/table/woodentable, @@ -6285,9 +5023,7 @@ dir = 4; pixel_x = 9 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "asY" = ( /obj/structure/machinery/light/small{ @@ -6295,18 +5031,14 @@ pixel_y = 20 }, /obj/effect/spawner/random/powercell, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "asZ" = ( /obj/item/trash/plate{ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "ata" = ( /obj/structure/flora/pottedplant{ @@ -6318,18 +5050,14 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "atc" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "atd" = ( /obj/structure/barricade/handrail/strata{ @@ -6337,9 +5065,7 @@ }, /obj/item/device/megaphone, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/deep/minehead) "ate" = ( /obj/structure/barricade/handrail/strata{ @@ -6348,9 +5074,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/deep/minehead) "atf" = ( /obj/structure/platform/strata/metal{ @@ -6364,17 +5088,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "ath" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "ati" = ( /obj/structure/machinery/light/small{ @@ -6382,45 +5100,32 @@ pixel_y = 20 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "atj" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ug/interior/jungle/deep/structures/res) "atk" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/deep/structures/res) "atl" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/deep/structures/res) "atm" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "atn" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "ato" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -6436,24 +5141,18 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "atq" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "atr" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "att" = ( /obj/structure/machinery/camera/autoname{ @@ -6486,20 +5185,14 @@ /obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "atA" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "atB" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -6531,19 +5224,14 @@ }, /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "atG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "atI" = ( /obj/structure/machinery/camera/autoname{ @@ -6555,16 +5243,12 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "atL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "atO" = ( /obj/structure/surface/table/reinforced/prison, @@ -6576,9 +5260,7 @@ "atP" = ( /obj/effect/decal/cleanable/blood, /obj/structure/coatrack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "atQ" = ( /obj/structure/barricade/deployable{ @@ -6605,23 +5287,17 @@ /area/strata/ag/interior/outpost/canteen) "atU" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "atV" = ( /obj/effect/decal/cleanable/blood/gibs/down, /obj/item/device/encryptionkey/dutch, /obj/item/dogtag, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "atW" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "atY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -6632,9 +5308,7 @@ dir = 4 }, /obj/effect/spawner/random/tool, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/deep/minehead) "aua" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -6644,49 +5318,33 @@ /area/strata/ug/interior/jungle/deep/north_carp) "aub" = ( /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "auc" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "aud" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aue" = ( /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/strata/ug/interior/jungle/deep/structures/res) "auf" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ug/interior/jungle/deep/structures/res) "aug" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/deep/structures/res) "auh" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/deep/structures/res) "aui" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6698,41 +5356,31 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "auk" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "aul" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "aum" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "aun" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "auo" = ( /obj/structure/flora/pottedplant{ @@ -6741,37 +5389,27 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "aup" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "auq" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aur" = ( /obj/structure/surface/rack, /obj/item/storage/box/explosive_mines, /obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "aus" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "auv" = ( /obj/structure/sign/safety/restrictedarea, @@ -6793,16 +5431,11 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "auB" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "auC" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -6812,59 +5445,39 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "auE" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "auF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/security) "auH" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "auI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/stamp, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "auJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "auK" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "auL" = ( /obj/structure/pipes/vents/pump{ @@ -6888,9 +5501,7 @@ /area/strata/ag/interior/outpost/security) "auP" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auQ" = ( /obj/structure/bed/chair, @@ -6900,10 +5511,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auU" = ( /obj/effect/decal/cleanable/blood/gibs/down, @@ -6911,42 +5519,28 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auV" = ( /obj/item/clothing/gloves/white, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auW" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auX" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auY" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "auZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -6974,31 +5568,23 @@ /area/strata/ag/interior/outpost/canteen) "avc" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "avd" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "ave" = ( /obj/structure/barricade/handrail/strata, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/deep/minehead) "avf" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/deep/minehead) "avg" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -7023,26 +5609,19 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "avk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "avl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "avm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -7054,9 +5633,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "avr" = ( /obj/item/weapon/wirerod, @@ -7065,18 +5642,14 @@ /area/strata/ag/interior/dorms) "avs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "avt" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/item/stack/cable_coil/random, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "avu" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -7086,23 +5659,16 @@ /area/strata/ag/interior/dorms) "avv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "avw" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "avx" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "avz" = ( /obj/effect/decal/strata_decals/grime/grime2, @@ -7110,15 +5676,11 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "avA" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "avB" = ( /obj/structure/machinery/light/small{ @@ -7140,10 +5702,7 @@ dir = 8; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "avE" = ( /obj/effect/decal/strata_decals/grime/grime2{ @@ -7176,9 +5735,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "avK" = ( /obj/item/clothing/shoes/snow, @@ -7194,9 +5751,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "avL" = ( /turf/open/auto_turf/ice/layer1, @@ -7217,9 +5772,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "avR" = ( /obj/structure/platform/strata/metal{ @@ -7229,9 +5782,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "avS" = ( /obj/structure/barricade/handrail/strata{ @@ -7243,50 +5794,33 @@ pixel_y = 6 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "avT" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "avU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "avV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/donkpockets, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "avW" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "avX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "avY" = ( /obj/structure/machinery/light/small{ @@ -7294,22 +5828,16 @@ }, /obj/item/storage/box/explosive_mines, /obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "avZ" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awa" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awb" = ( /obj/item/lightstick/red/planted, @@ -7322,32 +5850,24 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "awe" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "awf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awg" = ( /obj/structure/flora/pottedplant{ @@ -7357,21 +5877,15 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awh" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "awi" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "awj" = ( /obj/structure/surface/table/reinforced/prison, @@ -7383,18 +5897,13 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "awk" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "awl" = ( /obj/structure/surface/table/reinforced/prison, @@ -7403,35 +5912,24 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "awm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "awo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "awp" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "awq" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -7460,18 +5958,14 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "aww" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "awx" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -7511,24 +6005,16 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "awE" = ( /obj/structure/surface/rack, /obj/item/toy/deck, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "awF" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "awG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -7563,10 +6049,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "awM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -7576,10 +6059,7 @@ dir = 8; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "awN" = ( /obj/structure/pipes/vents/pump{ @@ -7608,9 +6088,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/paths/adminext) "awR" = ( /obj/structure/barricade/handrail/strata{ @@ -7627,19 +6105,13 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/toy/deck, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "awT" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "awU" = ( /obj/structure/closet/secure_closet/personal, @@ -7653,9 +6125,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "awX" = ( /obj/structure/closet/secure_closet/personal, @@ -7679,10 +6149,7 @@ /area/strata/ag/exterior/paths/cabin_area) "axa" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "axb" = ( /obj/structure/stairs/perspective{ @@ -7694,9 +6161,7 @@ /area/strata/ag/exterior/paths/adminext) "axc" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "axd" = ( /obj/structure/closet/bombcloset, @@ -7704,16 +6169,12 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "axe" = ( /obj/structure/bed/chair, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "axf" = ( /obj/structure/tunnel/maint_tunnel{ @@ -7734,17 +6195,12 @@ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "axj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "axk" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -7755,26 +6211,20 @@ /area/strata/ag/interior/outpost/gen/bball) "axn" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "axp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "axq" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "axr" = ( /obj/structure/surface/rack, @@ -7783,24 +6233,17 @@ dir = 4 }, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "axt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "axu" = ( /obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "axv" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -7815,44 +6258,34 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "axC" = ( /obj/item/storage/box/ids, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/ids, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "axD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "axE" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "axF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka, /obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "axG" = ( /obj/structure/surface/table/reinforced/prison, @@ -7862,9 +6295,7 @@ }, /obj/item/reagent_container/food/condiment/peppermill, /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "axH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -7876,24 +6307,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "axJ" = ( /obj/item/device/t_scanner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "axK" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "axL" = ( /obj/structure/surface/table/woodentable, @@ -7925,45 +6349,32 @@ "axO" = ( /obj/item/reagent_container/food/drinks/shaker, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "axP" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "axQ" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "axR" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/minehead/ruins) "axS" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/minehead/ruins) "axT" = ( /obj/structure/bed{ @@ -7973,10 +6384,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "axU" = ( /obj/structure/barricade/wooden{ @@ -7993,10 +6401,7 @@ "axW" = ( /obj/structure/surface/rack, /obj/item/storage/box/handcuffs, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "axX" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -8021,59 +6426,42 @@ "ayd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "aye" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "ayf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "ayg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "ayh" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "ayj" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "ayk" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "ayl" = ( /obj/structure/inflatable/popped, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "aym" = ( /obj/structure/flora/pottedplant{ @@ -8138,10 +6526,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "ayz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -8153,9 +6538,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/paths/adminext) "ayC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -8163,24 +6546,18 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "ayD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "ayE" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "ayF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -8202,10 +6579,7 @@ /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "ayK" = ( /obj/effect/decal/cleanable/blood/oil, @@ -8219,25 +6593,19 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "ayL" = ( /obj/item/stack/rods, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "ayM" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "ayN" = ( /obj/structure/surface/rack, @@ -8246,9 +6614,7 @@ dir = 4 }, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "ayO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -8258,10 +6624,7 @@ /area/strata/ag/exterior/paths/north_outpost) "ayS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "ayW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -8284,30 +6647,22 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aza" = ( /obj/item/poster, /obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "azb" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "azd" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "aze" = ( /obj/effect/decal/cleanable/blood, @@ -8316,9 +6671,7 @@ "azf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azg" = ( /obj/structure/surface/table/reinforced/prison, @@ -8327,9 +6680,7 @@ pixel_y = 3 }, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -8343,10 +6694,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azj" = ( /obj/structure/machinery/light/small{ @@ -8360,10 +6708,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "azm" = ( /obj/structure/bed/chair{ @@ -8374,32 +6719,20 @@ "azo" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "azp" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "azq" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "azr" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "azs" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -8429,42 +6762,31 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "azz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "azA" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "azB" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "azC" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "azD" = ( /obj/structure/bed/chair{ @@ -8491,10 +6813,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "azH" = ( /obj/structure/machinery/optable, @@ -8503,20 +6822,14 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "azI" = ( /obj/structure/machinery/bioprinter, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "azL" = ( /obj/structure/sink{ @@ -8526,18 +6839,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "azM" = ( /obj/structure/mirror{ pixel_y = 24 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "azO" = ( /obj/structure/sign/nosmoking_1, @@ -8578,10 +6887,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "azV" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "azX" = ( /obj/effect/landmark/monkey_spawn, @@ -8608,16 +6914,11 @@ dir = 8 }, /obj/structure/fence, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aAe" = ( /obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aAf" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -8629,17 +6930,12 @@ /obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "aAh" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aAj" = ( /obj/effect/decal/cleanable/blood/gibs/limb, @@ -8650,9 +6946,7 @@ dir = 1 }, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aAm" = ( /obj/effect/decal/cleanable/blood, @@ -8662,9 +6956,7 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aAn" = ( /obj/effect/decal/cleanable/blood, @@ -8677,9 +6969,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aAo" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -8692,52 +6982,36 @@ "aAp" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/down, /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aAr" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aAs" = ( /obj/structure/barricade/handrail/strata, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aAt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aAu" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aAv" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aAw" = ( /obj/structure/surface/rack, @@ -8748,9 +7022,7 @@ }, /obj/structure/barricade/handrail/strata, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aAx" = ( /obj/structure/machinery/light/small{ @@ -8762,9 +7034,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aAB" = ( /obj/structure/machinery/light/small{ @@ -8784,23 +7054,17 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aAD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aAF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aAG" = ( /obj/structure/surface/table/reinforced/prison, @@ -8809,24 +7073,17 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aAJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aAK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aAL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -8834,20 +7091,14 @@ /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aAM" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "aAO" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aAP" = ( /obj/effect/decal/cleanable/blood{ @@ -8856,10 +7107,7 @@ /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/strata/ag/interior/outpost/canteen) "aAR" = ( /turf/open/auto_turf/snow/brown_base/layer2, @@ -8912,17 +7160,11 @@ /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/reagent_container/food/drinks/milk, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aAZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aBa" = ( /obj/item/dogtag, @@ -8938,10 +7180,7 @@ dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aBe" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -8956,9 +7195,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "aBi" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aBj" = ( /obj/structure/surface/table/reinforced/prison, @@ -8966,16 +7203,12 @@ dir = 4 }, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aBk" = ( /obj/structure/machinery/light/small, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "aBl" = ( /obj/effect/decal/cleanable/blood{ @@ -9000,32 +7233,23 @@ dir = 8; name = "\improper Airlock" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "aBn" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "aBo" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/greenglow, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/strata/ag/interior/dorms) "aBp" = ( /obj/structure/morgue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "aBq" = ( /obj/structure/machinery/weather_siren{ @@ -9039,17 +7263,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aBt" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aBu" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -9083,10 +7303,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "aBI" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aBJ" = ( /obj/structure/pipes/vents/pump{ @@ -9109,16 +7326,12 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aBR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aBS" = ( /obj/effect/decal/cleanable/blood, @@ -9132,9 +7345,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aBU" = ( /obj/structure/platform/strata/metal{ @@ -9146,18 +7357,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aBW" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aBX" = ( /obj/structure/stairs/perspective{ @@ -9165,9 +7372,7 @@ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aBY" = ( /obj/structure/platform/strata/metal{ @@ -9176,9 +7381,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aBZ" = ( /obj/structure/reagent_dispensers/watertank, @@ -9186,17 +7389,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aCa" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aCb" = ( /obj/structure/pipes/vents/pump{ @@ -9209,40 +7406,30 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aCd" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aCe" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aCf" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "aCg" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aCh" = ( /obj/structure/flora/pottedplant{ @@ -9254,9 +7441,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aCi" = ( /obj/structure/bed/chair{ @@ -9271,10 +7456,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aCl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -9287,29 +7469,20 @@ /area/strata/ag/interior/outpost/canteen) "aCo" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aCq" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aCr" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aCs" = ( /obj/structure/machinery/light/small{ @@ -9319,10 +7492,7 @@ /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aCt" = ( /obj/item/stack/rods, @@ -9343,9 +7513,7 @@ /area/strata/ug/interior/jungle/deep/north_carp) "aCw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "aCy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -9367,9 +7535,7 @@ /area/strata/ag/exterior/paths/north_outpost) "aCC" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aCD" = ( /obj/structure/closet, @@ -9380,10 +7546,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "aCG" = ( /obj/effect/decal/cleanable/blood, @@ -9396,23 +7559,15 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "aCI" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/strata/ag/interior/dorms) "aCK" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "aCL" = ( /obj/effect/decal/cleanable/greenglow, @@ -9459,29 +7614,19 @@ /area/strata/ag/exterior/paths/north_outpost) "aCT" = ( /obj/structure/prop/dam/truck/cargo, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aCU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "aCV" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aCW" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aCY" = ( /obj/structure/platform/strata/metal{ @@ -9490,9 +7635,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aDa" = ( /obj/structure/barricade/handrail/strata, @@ -9512,26 +7655,19 @@ /obj/item/stack/sheet/metal/medium_stack, /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aDf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aDg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aDh" = ( /obj/item/stack/snow, @@ -9540,19 +7676,14 @@ /area/strata/ug/interior/jungle/deep/structures/res) "aDi" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aDk" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aDl" = ( /obj/structure/surface/table/reinforced/prison, @@ -9561,44 +7692,31 @@ pixel_y = 3 }, /obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aDn" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aDo" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aDp" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "aDq" = ( /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/strata/ag/interior/outpost/canteen) "aDr" = ( /obj/structure/machinery/chem_dispenser/soda/beer, @@ -9622,10 +7740,7 @@ dir = 8 }, /obj/structure/coatrack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aDx" = ( /obj/effect/decal/cleanable/blood{ @@ -9644,17 +7759,13 @@ /area/strata/ug/interior/jungle/deep/north_carp) "aDC" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aDD" = ( /obj/structure/closet, /obj/item/storage/pill_bottle/kelotane/skillless, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -9665,32 +7776,22 @@ /area/strata/ag/interior/dorms) "aDG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aDH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aDI" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "aDJ" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "aDK" = ( /obj/structure/stairs/perspective{ @@ -9700,9 +7801,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/paths/dorms_quad) "aDL" = ( /obj/structure/stairs/perspective{ @@ -9713,9 +7812,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/paths/dorms_quad) "aDM" = ( /obj/structure/barricade/handrail/strata{ @@ -9751,10 +7848,7 @@ "aDU" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aDV" = ( /obj/item/clothing/shoes/snow, @@ -9764,35 +7858,23 @@ /obj/item/clothing/suit/storage/snow_suit, /obj/item/tank/emergency_oxygen/engi, /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aDW" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aDX" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aDZ" = ( /obj/structure/platform/strata/metal{ @@ -9804,27 +7886,19 @@ /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "aEb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aEc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "aEe" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -9834,9 +7908,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "aEg" = ( /obj/effect/decal/cleanable/blood{ @@ -9845,54 +7917,38 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aEh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aEi" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aEj" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aEk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill, /obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aEl" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aEm" = ( /obj/structure/flora/pottedplant{ @@ -9901,10 +7957,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aEn" = ( /obj/structure/surface/table/reinforced/prison, @@ -9914,10 +7967,7 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aEo" = ( /obj/structure/largecrate/random/case/double, @@ -9925,10 +7975,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aEq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -9936,18 +7983,12 @@ }, /obj/structure/largecrate/random, /obj/item/seeds/walkingmushroommycelium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aEr" = ( /obj/structure/closet/crate/freezer/rations, /obj/item/clothing/suit/xenos, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aEs" = ( /obj/structure/closet/crate/freezer/rations, @@ -9955,10 +7996,7 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aEt" = ( /obj/structure/sink{ @@ -9968,10 +8006,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aEu" = ( /obj/structure/machinery/power/apc{ @@ -9979,16 +8014,11 @@ pixel_y = 25 }, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aEv" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aEw" = ( /obj/structure/bed/chair{ @@ -10006,10 +8036,7 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aEC" = ( /obj/structure/barricade/handrail/strata, @@ -10021,21 +8048,15 @@ /area/strata/ug/interior/jungle/deep/south_res) "aEF" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aEG" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "aEH" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aEI" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -10047,16 +8068,12 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aEK" = ( /obj/structure/machinery/chem_dispenser/soda/beer, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aEL" = ( /obj/structure/sign/nosmoking_1, @@ -10128,9 +8145,7 @@ /area/strata/ag/interior/outpost/engi) "aFb" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aFc" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -10140,9 +8155,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aFd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -10151,23 +8164,17 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aFf" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aFg" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aFi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -10178,9 +8185,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aFj" = ( /obj/item/lightstick/red/spoke/planted{ @@ -10197,26 +8202,19 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/north_carp) "aFk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aFl" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFm" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -10226,9 +8224,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFn" = ( /obj/effect/decal/cleanable/blood{ @@ -10237,9 +8233,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFo" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -10254,9 +8248,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFp" = ( /obj/effect/decal/cleanable/blood{ @@ -10270,9 +8262,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFq" = ( /obj/effect/decal/cleanable/blood{ @@ -10281,9 +8271,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFr" = ( /obj/effect/decal/cleanable/blood{ @@ -10295,9 +8283,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aFs" = ( /obj/effect/decal/cleanable/blood{ @@ -10328,10 +8314,7 @@ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aFv" = ( /obj/structure/machinery/light/small, @@ -10339,10 +8322,7 @@ /area/strata/ag/exterior/paths/north_outpost) "aFw" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aFx" = ( /obj/structure/bed/chair{ @@ -10360,53 +8340,35 @@ /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/strata/ag/interior/outpost/canteen) "aFA" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aFB" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) "aFC" = ( /obj/structure/machinery/light/small, /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "aFD" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aFE" = ( /obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aFG" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aFH" = ( /obj/structure/machinery/shower{ @@ -10421,37 +8383,23 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aFI" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aFJ" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aFL" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "aFM" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aFN" = ( /obj/structure/machinery/light/small{ @@ -10461,26 +8409,20 @@ dir = 5 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aFO" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aFP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aFQ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -10498,9 +8440,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aFS" = ( /obj/structure/surface/table/reinforced/prison, @@ -10508,9 +8448,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aFT" = ( /obj/structure/bed/chair{ @@ -10526,10 +8464,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) "aFV" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -10551,9 +8486,7 @@ /area/strata/ag/exterior/paths/north_outpost) "aGc" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aGd" = ( /obj/structure/platform/strata/metal{ @@ -10588,10 +8521,7 @@ /area/strata/ag/interior/mountain) "aGh" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aGi" = ( /obj/structure/machinery/light/small{ @@ -10611,18 +8541,14 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aGn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aGp" = ( /obj/structure/sign/safety/laser, @@ -10644,9 +8570,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aGu" = ( /obj/structure/platform_decoration/strata/metal{ @@ -10665,10 +8589,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aGy" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -10676,10 +8597,7 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aGz" = ( /obj/structure/stairs/perspective{ @@ -10687,10 +8605,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aGA" = ( /obj/structure/machinery/light/small, @@ -10698,10 +8613,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aGB" = ( /obj/structure/stairs/perspective{ @@ -10709,9 +8621,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aGC" = ( /obj/structure/machinery/light/small, @@ -10727,9 +8637,7 @@ /area/strata/ag/interior/outpost/security) "aGE" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aGF" = ( /obj/effect/decal/cleanable/blood{ @@ -10757,9 +8665,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGI" = ( /obj/structure/bed/chair{ @@ -10767,18 +8673,12 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGJ" = ( /obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGK" = ( /obj/structure/surface/table/reinforced/prison, @@ -10791,9 +8691,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -10806,18 +8704,12 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aGN" = ( /obj/structure/surface/rack, /obj/item/device/radio, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aGO" = ( /obj/structure/machinery/light/small{ @@ -10832,26 +8724,17 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aGR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aGS" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aGU" = ( /obj/effect/landmark/monkey_spawn, @@ -10869,9 +8752,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "aGY" = ( /obj/structure/flora/pottedplant{ @@ -10882,17 +8763,13 @@ "aGZ" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aHa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) "aHb" = ( /obj/structure/sign/poster, @@ -10907,9 +8784,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aHd" = ( /obj/effect/decal/cleanable/blood{ @@ -10917,9 +8792,7 @@ }, /obj/item/tool/kitchen/utensil/pknife, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aHe" = ( /obj/structure/bed/chair{ @@ -10929,17 +8802,11 @@ /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) "aHf" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "aHh" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -10947,9 +8814,7 @@ "aHi" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) "aHj" = ( /obj/structure/stairs/perspective{ @@ -10967,29 +8832,20 @@ /area/strata/ag/exterior/research_decks) "aHl" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec2) "aHm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "aHo" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "aHq" = ( /obj/structure/flora/pottedplant{ @@ -10998,33 +8854,25 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aHr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aHs" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aHt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aHu" = ( /obj/structure/stairs/perspective{ @@ -11078,24 +8926,18 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aHK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aHL" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "aHM" = ( /obj/item/stool, @@ -11108,25 +8950,17 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka, /obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aHO" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "aHP" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) "aHR" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aHS" = ( /obj/structure/platform_decoration/strata/metal{ @@ -11135,29 +8969,17 @@ /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) "aHT" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aHU" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aHV" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aHW" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/east_dorms) "aHY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -11171,10 +8993,7 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "aIa" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aIb" = ( /obj/item/stack/sheet/wood, @@ -11188,27 +9007,20 @@ /area/strata/ug/interior/jungle/deep/south_res) "aIf" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aIg" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "aIh" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "aIi" = ( /obj/structure/pipes/vents/pump{ @@ -11216,23 +9028,16 @@ }, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "aIj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aIk" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aIl" = ( /obj/effect/decal/cleanable/blood{ @@ -11242,9 +9047,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aIm" = ( /obj/item/ammo_magazine/shotgun/buckshot{ @@ -11254,16 +9057,12 @@ /obj/effect/decal/strata_decals/grime/grime4{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "aIn" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aIo" = ( /obj/structure/pipes/vents/pump/on, @@ -11273,9 +9072,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/mushroom, /obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aIs" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -11345,9 +9142,7 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aIT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -11359,9 +9154,7 @@ /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aIV" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aIW" = ( /obj/structure/closet/bombcloset, @@ -11370,9 +9163,7 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aIX" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -11381,31 +9172,23 @@ }, /obj/item/stack/sheet/plasteel/medium_stack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aIZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aJb" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aJc" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aJd" = ( /obj/structure/sign/safety/terminal, @@ -11416,15 +9199,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aJf" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aJk" = ( /obj/item/lightstick/red/spoke/planted{ @@ -11441,9 +9220,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/structures/res) "aJl" = ( /obj/structure/platform/strata/metal{ @@ -11457,9 +9234,7 @@ dir = 8 }, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aJn" = ( /obj/effect/decal/cleanable/blood, @@ -11476,9 +9251,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aJp" = ( /obj/structure/platform/strata/metal{ @@ -11502,16 +9275,12 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/stamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aJv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aJw" = ( /obj/structure/toilet, @@ -11523,10 +9292,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "aJA" = ( /obj/structure/barricade/wooden{ @@ -11537,10 +9303,7 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "aJB" = ( /obj/structure/sign/safety/galley, @@ -11554,47 +9317,31 @@ /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aJD" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aJE" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aJF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aJG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "aJH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aJI" = ( /obj/structure/barricade/wooden, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/minehead/ruins) "aJJ" = ( /obj/structure/barricade/wooden, @@ -11618,25 +9365,18 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "aJP" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aJQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/syndicate, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aJR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -11652,17 +9392,12 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/interior/dorms) "aJT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aJV" = ( /obj/item/stack/snow, @@ -11742,10 +9477,7 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aKk" = ( /obj/structure/platform/strata/metal{ @@ -11761,9 +9493,7 @@ /area/strata/ag/exterior/paths/adminext) "aKm" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aKn" = ( /obj/structure/machinery/power/monitor{ @@ -11772,33 +9502,25 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aKp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aKq" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aKr" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aKs" = ( /obj/effect/decal/cleanable/generic, @@ -11837,10 +9559,7 @@ /area/strata/ag/exterior/marsh/water) "aKw" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aKx" = ( /obj/item/clothing/suit/storage/hazardvest, @@ -11873,16 +9592,11 @@ /area/strata/ag/interior/outpost/engi) "aKB" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "aKC" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aKD" = ( /obj/structure/surface/table/reinforced/prison, @@ -11898,9 +9612,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aKF" = ( /obj/structure/surface/table/reinforced/prison, @@ -11910,9 +9622,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "aKG" = ( /obj/structure/surface/table/reinforced/prison, @@ -11922,9 +9632,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aKK" = ( /obj/structure/machinery/light/small{ @@ -11948,48 +9656,31 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "aKQ" = ( /obj/structure/machinery/chem_dispenser/soda/beer, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aKR" = ( /obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aKS" = ( /obj/item/stack/sandbags, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aKT" = ( /obj/structure/surface/table/woodentable, /obj/item/pizzabox/meat, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) "aKU" = ( /obj/item/stool, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "aKV" = ( /obj/item/lightstick/planted, @@ -11999,10 +9690,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/strata/ag/interior/outpost/canteen/lower_cafeteria) "aKX" = ( /obj/structure/bed/chair/comfy{ @@ -12011,10 +9699,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aKY" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -12036,10 +9721,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aLc" = ( /obj/structure/window/reinforced/tinted, @@ -12052,52 +9734,38 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aLg" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aLh" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aLi" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) "aLj" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/interior/dorms) "aLk" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light/small, /obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "aLl" = ( /obj/structure/sign/poster, @@ -12112,15 +9780,10 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/paths/dorms_quad) "aLp" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "aLq" = ( /turf/open/floor/strata, @@ -12128,26 +9791,19 @@ "aLr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/folder/blue, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "aLs" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aLt" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aLu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -12185,10 +9841,7 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, @@ -12204,9 +9857,7 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aLL" = ( /obj/item/lightstick/planted, @@ -12223,9 +9874,7 @@ /area/strata/ag/exterior/paths/dorms_quad) "aLO" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aLP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, @@ -12243,9 +9892,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aLT" = ( /obj/structure/surface/table/reinforced/prison, @@ -12261,17 +9908,13 @@ }, /obj/item/device/flashlight/lamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aLU" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aLW" = ( /obj/structure/surface/table/reinforced/prison, @@ -12280,40 +9923,29 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aLZ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aMb" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aMc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aMd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/admin) "aMf" = ( /obj/structure/machinery/light/small{ @@ -12322,72 +9954,48 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aMg" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue4" - }, +/turf/open/floor/strata/blue4, /area/strata/ag/interior/outpost/admin) "aMh" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "blue4" - }, +/turf/open/floor/strata/blue4/north, /area/strata/ag/interior/outpost/admin) "aMi" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aMj" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aMk" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aMl" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "aMm" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) "aMn" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "aMo" = ( /obj/structure/surface/table/reinforced/prison, @@ -12400,9 +10008,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aMp" = ( /obj/structure/surface/table/reinforced/prison, @@ -12411,16 +10017,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aMq" = ( /obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "aMr" = ( /obj/structure/surface/rack, @@ -12428,39 +10029,24 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aMs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) "aMt" = ( /obj/structure/curtain/open/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aMu" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aMv" = ( /obj/structure/bed, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aMw" = ( /turf/closed/wall/strata_outpost, @@ -12486,28 +10072,20 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aMB" = ( -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aMC" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "aMD" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "aME" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -12570,15 +10148,11 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aMN" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aMO" = ( /obj/structure/machinery/light/small{ @@ -12592,17 +10166,13 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aMQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aMS" = ( /obj/structure/platform/strata/metal{ @@ -12633,23 +10203,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aMX" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aMY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aMZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -12665,17 +10229,13 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aNb" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aNc" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -12700,9 +10260,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aNh" = ( /obj/structure/sign/safety/terminal, @@ -12732,16 +10290,10 @@ /area/strata/ag/exterior/paths/dorms_quad) "aNs" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/west, /area/strata/ag/interior/outpost/admin) "aNt" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/east, /area/strata/ag/interior/outpost/admin) "aNu" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -12750,17 +10302,11 @@ /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) "aNw" = ( /obj/item/stool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aNx" = ( /obj/structure/surface/table/reinforced/prison, @@ -12772,9 +10318,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aNy" = ( /obj/structure/surface/table/reinforced/prison, @@ -12783,9 +10327,7 @@ pixel_y = 3 }, /obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aNz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -12811,18 +10353,12 @@ /area/strata/ag/exterior/paths/dorms_quad) "aNC" = ( /obj/structure/closet/crate, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aND" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aNE" = ( /obj/structure/machinery/space_heater, @@ -12830,10 +10366,7 @@ pixel_x = 3; pixel_y = 14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aNF" = ( /obj/effect/landmark/monkey_spawn, @@ -12854,16 +10387,11 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aNJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "aNL" = ( /obj/structure/sign/safety/restrictedarea, @@ -12901,9 +10429,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aNP" = ( /obj/structure/pipes/vents/pump{ @@ -12920,17 +10446,13 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aNR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aNS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -12939,20 +10461,14 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "aNT" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aNU" = ( /obj/item/lightstick/red/planted, @@ -12963,27 +10479,19 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aNW" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "aNX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aNZ" = ( /obj/structure/disposalpipe/segment{ @@ -12991,9 +10499,7 @@ }, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aOa" = ( /obj/structure/machinery/light/small, @@ -13004,15 +10510,11 @@ icon_state = "pottedplant_21" }, /obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aOc" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aOd" = ( /obj/structure/platform/strata/metal, @@ -13022,16 +10524,12 @@ /obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aOf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aOg" = ( /obj/structure/pipes/vents/pump{ @@ -13050,9 +10548,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aOj" = ( /obj/structure/pipes/vents/pump{ @@ -13065,9 +10561,7 @@ dir = 4 }, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -13083,9 +10577,7 @@ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOn" = ( /obj/structure/flora/pottedplant{ @@ -13099,22 +10591,15 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aOp" = ( /obj/item/stack/catwalk, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "aOq" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOr" = ( /obj/item/lightstick/red/spoke/planted{ @@ -13131,26 +10616,20 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/south_res) "aOt" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOu" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOv" = ( /obj/structure/surface/table/reinforced/prison, @@ -13160,28 +10639,21 @@ }, /obj/item/toy/deck, /obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOw" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aOx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/west, /area/strata/ag/interior/outpost/admin) "aOy" = ( /obj/structure/surface/table/reinforced/prison, @@ -13189,9 +10661,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOz" = ( /obj/item/lightstick/red/planted, @@ -13200,10 +10670,7 @@ /area/strata/ag/exterior/paths/dorms_quad) "aOA" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOB" = ( /obj/structure/platform/strata/metal, @@ -13226,56 +10693,37 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/sodawater, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aOK" = ( /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/strata/ag/interior/outpost/canteen) "aOL" = ( /obj/structure/closet/crate/science, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aOM" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/item/stool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aON" = ( /obj/item/stack/sheet/wood, /obj/structure/closet/crate/internals, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aOP" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aOR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -13288,9 +10736,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aOT" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -13335,9 +10781,7 @@ "aPb" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aPc" = ( /obj/structure/platform/strata/metal{ @@ -13382,9 +10826,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aPm" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -13403,15 +10845,11 @@ /obj/item/folder/red, /obj/item/ammo_box/magazine/shotgun/buckshot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aPp" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/south) "aPq" = ( /obj/structure/machinery/weather_siren{ @@ -13438,35 +10876,24 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/exterior/research_decks) "aPx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aPy" = ( /obj/structure/closet/bombcloset, /obj/item/clothing/suit/armor/bulletproof, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "aPz" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; req_one_access = null }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "aPB" = ( /obj/structure/flora/pottedplant{ @@ -13475,17 +10902,13 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aPC" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aPD" = ( /obj/structure/flora/pottedplant{ @@ -13497,26 +10920,20 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aPE" = ( /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aPF" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aPG" = ( /obj/structure/flora/pottedplant{ @@ -13528,9 +10945,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aPH" = ( /obj/structure/platform/strata/metal{ @@ -13560,9 +10975,7 @@ dir = 8 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aPL" = ( /obj/structure/flora/pottedplant{ @@ -13572,18 +10985,14 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata, /obj/item/device/flashlight/lamp/green, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPO" = ( /obj/structure/surface/table/reinforced/prison, @@ -13591,18 +11000,14 @@ dir = 1 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/stamp, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPQ" = ( /obj/structure/flora/pottedplant{ @@ -13612,26 +11017,20 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPR" = ( /obj/structure/barricade/handrail/strata, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPS" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPT" = ( /obj/effect/decal/cleanable/generic, @@ -13641,9 +11040,7 @@ /area/strata/ag/exterior/paths/dorms_quad) "aPW" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aPX" = ( /obj/structure/platform/strata/metal, @@ -13667,9 +11064,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aQc" = ( /obj/structure/barricade/wooden{ @@ -13678,10 +11073,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "aQd" = ( /obj/structure/machinery/vending/dinnerware, @@ -13693,20 +11085,14 @@ "aQe" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aQf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aQg" = ( /obj/structure/platform/strata/metal{ @@ -13739,10 +11125,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "aQk" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -13764,9 +11147,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "aQn" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -13779,10 +11160,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aQq" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -13790,17 +11168,11 @@ /area/strata/ag/exterior/paths/adminext) "aQr" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aQs" = ( /obj/structure/closet/wardrobe/pjs, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aQt" = ( /turf/closed/wall/wood, @@ -13818,9 +11190,7 @@ /area/strata/ag/interior/nearlz1) "aQw" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aQx" = ( /obj/structure/extinguisher_cabinet, @@ -13832,15 +11202,11 @@ pixel_y = 20 }, /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aQz" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aQA" = ( /obj/structure/bed/chair, @@ -13849,24 +11215,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aQB" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aQD" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aQF" = ( /obj/structure/flora/pottedplant{ @@ -13876,19 +11235,14 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aQG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "aQH" = ( /obj/structure/platform_decoration/strata/metal{ @@ -13918,23 +11272,16 @@ /area/strata/ag/exterior/paths/adminext) "aQP" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "aQQ" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aQR" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aQS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -13952,60 +11299,46 @@ "aQV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aQW" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aQX" = ( /obj/structure/machinery/light/small, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aQY" = ( /obj/structure/machinery/light/small, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aQZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/pizza, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aRa" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aRb" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aRc" = ( /obj/structure/surface/table/reinforced/prison, @@ -14051,27 +11384,20 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aRm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aRn" = ( /obj/structure/barricade/wooden{ dir = 8 }, /obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/bar) "aRo" = ( /obj/structure/largecrate/random, @@ -14095,19 +11421,13 @@ /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aRr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aRs" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aRv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -14116,9 +11436,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "aRy" = ( /obj/structure/platform/strata/metal{ @@ -14131,17 +11449,13 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "aRA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aRB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -14155,16 +11469,12 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aRD" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aRF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -14174,9 +11484,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aRI" = ( /obj/structure/noticeboard{ @@ -14185,25 +11493,19 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aRJ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms/south) "aRK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms/south) "aRL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14213,10 +11515,7 @@ dir = 8; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "aRM" = ( /obj/structure/machinery/light/small{ @@ -14225,9 +11524,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms/south) "aRO" = ( /obj/effect/decal/cleanable/blood, @@ -14256,35 +11553,26 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "aRZ" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aSb" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aSc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aSd" = ( /obj/structure/pipes/vents/pump{ @@ -14293,9 +11581,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "aSe" = ( /obj/structure/bed/chair{ @@ -14304,18 +11590,14 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aSf" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aSj" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -14331,24 +11613,18 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aSl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/pizza, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aSm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aSn" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -14358,10 +11634,7 @@ /obj/structure/surface/rack, /obj/item/storage/box/flashbangs, /obj/item/storage/box/flashbangs, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/bar) "aSo" = ( /obj/structure/closet/firecloset/full, @@ -14371,79 +11644,50 @@ }, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/bar) "aSp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "aSq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, /obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "aSr" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aSs" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aSt" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aSu" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aSv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka, /obj/item/stack/medical/bruise_pack, /obj/item/device/radio, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "aSw" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aSz" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/strata/ug/interior/jungle/deep/east_dorms) "aSA" = ( /obj/item/organ/eyes, @@ -14471,15 +11715,11 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/interior/landingzone_1) "aSH" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "aSJ" = ( /obj/item/lightstick/planted, @@ -14499,9 +11739,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) "aSN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/interior/landingzone_1) "aSP" = ( /obj/structure/machinery/weather_siren{ @@ -14515,10 +11753,7 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) "aSR" = ( /obj/structure/machinery/weather_siren{ @@ -14528,30 +11763,20 @@ /area/strata/ag/interior/nearlz1) "aSS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) "aST" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) "aSU" = ( /obj/structure/bookcase, /obj/item/book/manual/atmospipes, /obj/item/book/manual/engineering_guide, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aSV" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aSW" = ( /obj/structure/pipes/vents/pump{ @@ -14564,15 +11789,11 @@ /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "aSY" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "aSZ" = ( /obj/structure/surface/rack, @@ -14583,9 +11804,7 @@ /obj/item/inflatable, /obj/item/inflatable, /obj/item/tool/weldingtool, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms/south) "aTb" = ( /obj/effect/decal/cleanable/blood, @@ -14612,9 +11831,7 @@ /area/strata/ag/exterior/paths/adminext) "aTk" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aTn" = ( /obj/effect/decal/cleanable/blood{ @@ -14631,18 +11848,13 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aTt" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "aTu" = ( /obj/structure/bookcase{ @@ -14651,10 +11863,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "aTv" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -14667,24 +11876,17 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "aTz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aTA" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) "aTB" = ( /obj/structure/flora/pottedplant{ @@ -14694,9 +11896,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aTC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14709,10 +11909,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "aTE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14731,23 +11928,17 @@ dir = 8 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTH" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTK" = ( /obj/structure/bed/chair/office/light, @@ -14755,18 +11946,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTL" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -14774,9 +11961,7 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTN" = ( /obj/structure/surface/table/reinforced/prison, @@ -14786,26 +11971,18 @@ }, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTP" = ( /obj/item/tool/mop, /obj/structure/janitorialcart, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "aTQ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/west, /area/strata/ag/interior/outpost/admin) "aTR" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -14818,18 +11995,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/east, /area/strata/ag/interior/outpost/admin) "aTU" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aTV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -14844,10 +12016,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "aTX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -14863,10 +12032,7 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aTZ" = ( /obj/effect/decal/cleanable/generic, @@ -14879,9 +12045,7 @@ dir = 4 }, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "aUc" = ( /obj/structure/sign/safety/galley, @@ -14891,16 +12055,11 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aUf" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen) "aUg" = ( /turf/open/gm/river, @@ -14919,9 +12078,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aUp" = ( /turf/closed/wall/wood, @@ -14930,45 +12087,32 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aUr" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/nearlz1) "aUs" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aUt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aUu" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aUv" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aUx" = ( /obj/structure/platform/strata/metal, @@ -15002,9 +12146,7 @@ /area/strata/ag/exterior/paths/cabin_area) "aUE" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "aUF" = ( /obj/structure/pipes/vents/pump{ @@ -15026,15 +12168,10 @@ start_charge = 0 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "aUN" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/foyer) "aUR" = ( /obj/structure/flora/pottedplant{ @@ -15043,10 +12180,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "aUS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -15058,22 +12192,14 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "aUU" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "aUV" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "aUX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -15085,9 +12211,7 @@ /obj/structure/filingcabinet, /obj/structure/barricade/handrail/strata, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aUZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -15101,9 +12225,7 @@ /obj/structure/barricade/handrail/strata, /obj/item/device/flashlight/lamp, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVa" = ( /obj/structure/surface/table/reinforced/prison, @@ -15115,9 +12237,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVc" = ( /obj/structure/surface/table/reinforced/prison, @@ -15131,9 +12251,7 @@ /obj/item/reagent_container/food/drinks/cans/souto/grape, /obj/structure/barricade/handrail/strata, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVd" = ( /obj/structure/surface/table/reinforced/prison, @@ -15146,18 +12264,14 @@ /obj/item/paper_bin, /obj/structure/barricade/handrail/strata, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVe" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVf" = ( /obj/structure/stairs/perspective{ @@ -15167,10 +12281,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "aVg" = ( /obj/structure/stairs/perspective{ @@ -15181,10 +12292,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "aVh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -15206,9 +12314,7 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVk" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -15227,9 +12333,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aVp" = ( /obj/structure/platform/strata/metal{ @@ -15248,10 +12352,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aVy" = ( /obj/structure/closet/secure_closet/freezer/fridge, @@ -15261,30 +12362,20 @@ /obj/item/reagent_container/food/drinks/milk, /obj/item/reagent_container/food/drinks/milk, /obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aVz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/canteen/bar) "aVA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/canteen/bar) "aVB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aVD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -15299,9 +12390,7 @@ /obj/structure/surface/rack, /obj/item/book/manual/barman_recipes, /obj/item/book/manual/chef_recipes, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aVF" = ( /turf/open/floor/strata, @@ -15311,26 +12400,18 @@ color = "#6e6e6e"; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "aVH" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aVJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aVK" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -15368,9 +12449,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aVX" = ( /obj/structure/platform_decoration/strata/metal, @@ -15382,9 +12461,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aVZ" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -15424,19 +12501,13 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/marsh/river) "aWj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/marsh/river) "aWk" = ( /obj/effect/particle_effect/steam, @@ -15493,37 +12564,25 @@ "aWB" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "aWE" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "aWF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "aWG" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "aWH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "aWK" = ( /obj/structure/stairs/perspective{ @@ -15531,10 +12590,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "aWL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -15585,17 +12641,13 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aWW" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aWZ" = ( /obj/structure/bed/chair{ @@ -15615,10 +12667,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aXb" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -15633,33 +12682,21 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aXd" = ( /obj/item/storage/pill_bottle/bicaridine, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aXe" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aXf" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aXg" = ( /obj/structure/surface/table/reinforced/prison, @@ -15667,9 +12704,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/canteen/bar) "aXh" = ( /obj/structure/surface/table/reinforced/prison, @@ -15679,17 +12714,12 @@ }, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/canteen/bar) "aXi" = ( /obj/structure/machinery/reagentgrinder/industrial, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aXk" = ( /obj/effect/decal/cleanable/blood{ @@ -15702,17 +12732,11 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aXo" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aXp" = ( /turf/closed/wall/strata_outpost, @@ -15726,10 +12750,7 @@ /area/strata/ug/interior/jungle/deep/north_carp) "aXs" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/shed_five_caves) "aXt" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -15742,17 +12763,13 @@ dir = 8 }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aXw" = ( /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "aXx" = ( /obj/structure/machinery/power/apc{ @@ -15760,16 +12777,11 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "aXy" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) "aXB" = ( /obj/effect/decal/cleanable/blood, @@ -15854,10 +12866,7 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aYa" = ( /obj/structure/machinery/space_heater, @@ -15921,18 +12930,13 @@ /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) "aYw" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "aYx" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aYy" = ( /obj/item/lightstick/red/spoke/planted{ @@ -15949,24 +12953,17 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/hotsprings) "aYz" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/deep/structures/res) "aYA" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "aYB" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aYD" = ( /obj/structure/stairs/perspective{ @@ -15975,65 +12972,47 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aYE" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "aYG" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/foyer) "aYH" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aYI" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "aYK" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYO" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYQ" = ( /obj/item/stack/sheet/wood, @@ -16043,9 +13022,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYT" = ( /obj/structure/stairs/perspective{ @@ -16053,19 +13030,14 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "aYW" = ( /obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aYX" = ( /obj/structure/fence, @@ -16085,10 +13057,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aZc" = ( /turf/open/auto_turf/snow/brown_base/layer3, @@ -16107,10 +13076,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aZi" = ( /obj/structure/platform/strata/metal{ @@ -16142,17 +13108,11 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aZn" = ( /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "aZo" = ( /obj/structure/platform_decoration/strata{ @@ -16165,19 +13125,13 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) "aZq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aZr" = ( /obj/item/tool/kitchen/rollingpin, @@ -16185,10 +13139,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aZs" = ( /obj/structure/barricade/snow{ @@ -16200,10 +13151,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "aZu" = ( /obj/item/storage/box/cups, @@ -16213,10 +13161,7 @@ pixel_y = 3 }, /obj/item/book/manual/surgery, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "aZv" = ( /turf/open/auto_turf/snow/brown_base/layer2, @@ -16226,9 +13171,7 @@ /obj/item/book/manual/engineering_construction, /obj/item/book/manual/engineering_hacking, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aZx" = ( /turf/open/auto_turf/snow/brown_base/layer0, @@ -16240,9 +13183,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aZz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -16273,10 +13214,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "aZE" = ( /obj/structure/machinery/shower, @@ -16297,28 +13235,19 @@ /obj/structure/machinery/door/window/eastright{ dir = 2 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin4) "aZF" = ( /obj/structure/toilet, /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin4) "aZG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin4) "aZH" = ( /obj/item/stack/rods, @@ -16377,25 +13306,18 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "aZY" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/disposals) "aZZ" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "baa" = ( /obj/effect/decal/cleanable/blood, /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "bab" = ( /obj/structure/bed/chair, @@ -16412,9 +13334,7 @@ /area/strata/ug/interior/jungle/deep/tearlake) "bae" = ( /obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "baf" = ( /obj/structure/platform_decoration/strata{ @@ -16444,10 +13364,7 @@ "bal" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bam" = ( /obj/item/tool/wrench, @@ -16481,36 +13398,26 @@ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "bap" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "baq" = ( /obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bar" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bas" = ( /obj/structure/machinery/light/small{ @@ -16526,10 +13433,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "bau" = ( /obj/structure/stairs/perspective{ @@ -16540,9 +13444,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bav" = ( /obj/item/lightstick/red/planted, @@ -16558,10 +13460,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "baC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -16601,10 +13500,7 @@ "baL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "baM" = ( /obj/structure/bed/chair{ @@ -16615,23 +13511,17 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "baN" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "baQ" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "baR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "baS" = ( /obj/effect/decal/cleanable/blood{ @@ -16640,9 +13530,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/foyer) "baT" = ( /obj/structure/platform/strata/metal{ @@ -16660,9 +13548,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/foyer) "baX" = ( /obj/structure/barricade/handrail/strata{ @@ -16689,9 +13575,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/foyer) "bbe" = ( /obj/structure/barricade/handrail/strata{ @@ -16701,17 +13585,13 @@ /area/strata/ag/interior/outpost/engi/drome) "bbf" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bbg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bbh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -16732,47 +13612,35 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bbl" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bbm" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bbn" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "bbo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bbp" = ( /obj/structure/bed/stool, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bbq" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -16789,24 +13657,15 @@ /area/strata/ag/interior/outpost/admin) "bbv" = ( /obj/structure/machinery/gibber, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bbw" = ( /obj/structure/kitchenspike, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bbx" = ( /obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bby" = ( /obj/structure/sign/safety/fridge, @@ -16817,10 +13676,7 @@ /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bbA" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -16836,10 +13692,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "bbC" = ( /obj/structure/machinery/reagentgrinder, @@ -16847,10 +13700,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bbD" = ( /obj/structure/machinery/processor, @@ -16858,10 +13708,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "bbF" = ( /obj/structure/machinery/power/apc{ @@ -16874,26 +13721,18 @@ /obj/structure/surface/rack, /obj/item/book/manual/ripley_build_and_repair, /obj/item/book/manual/surgery, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "bbI" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/east_dorms) "bbJ" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/east_dorms) "bbK" = ( /obj/structure/machinery/light/small{ @@ -16916,9 +13755,7 @@ /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bbN" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bbO" = ( /turf/open/floor/strata, @@ -16927,10 +13764,7 @@ /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bbT" = ( /obj/structure/barricade/handrail/strata{ @@ -16955,9 +13789,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "bbZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -17013,9 +13845,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "bcm" = ( /obj/item/lightstick/red/planted, @@ -17023,9 +13853,7 @@ /area/strata/ag/exterior/paths/adminext) "bco" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "bcp" = ( /obj/structure/barricade/handrail/strata, @@ -17096,9 +13924,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bcG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -17160,18 +13986,14 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/beer, /obj/item/device/radio, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "bcS" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "bcT" = ( /obj/structure/platform_decoration/strata{ @@ -17207,9 +14029,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/research_decks) "bcY" = ( /obj/effect/decal/cleanable/blood, @@ -17221,10 +14041,7 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "bdb" = ( /obj/structure/flora/pottedplant{ @@ -17238,30 +14055,21 @@ dir = 8; icon_state = "p_stair_ew_half_cap" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "bdd" = ( /obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "bde" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "bdg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/foyer) "bdi" = ( /obj/structure/bed/chair{ @@ -17276,9 +14084,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/tool/stamp, /obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdl" = ( /obj/structure/floodgate, @@ -17287,9 +14093,7 @@ "bdm" = ( /obj/effect/landmark/corpsespawner/russian, /obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bdn" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -17301,48 +14105,36 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/donkpockets, /obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdq" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bds" = ( /obj/item/clipboard, /obj/item/clipboard, /obj/structure/surface/rack, /obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdu" = ( /obj/structure/surface/rack, /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets, /obj/item/storage/box/donkpockets, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdv" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bdw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -17457,9 +14249,7 @@ /area/strata/ag/exterior/marsh/river) "bdU" = ( /obj/item/book/manual/security_space_law, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bdV" = ( /obj/structure/platform/strata{ @@ -17527,9 +14317,7 @@ color = "#6e6e6e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/admin) "beh" = ( /obj/structure/stairs/perspective{ @@ -17540,9 +14328,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/admin) "bei" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17585,17 +14371,11 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "ber" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "bes" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -17617,19 +14397,14 @@ pixel_y = 20 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "bey" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "bez" = ( /obj/structure/barricade/handrail/strata{ @@ -17644,17 +14419,12 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/outpost/jung/dorms/admin4) "beB" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/jung/dorms/admin4) "beD" = ( /obj/effect/spawner/random/toolbox{ @@ -17683,9 +14453,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/west_engi) "beG" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -17739,15 +14507,11 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "beT" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "beU" = ( /obj/item/clipboard, @@ -17757,16 +14521,12 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "beV" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "beW" = ( /obj/structure/barricade/snow{ @@ -17780,9 +14540,7 @@ }, /obj/structure/window/reinforced/tinted, /obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "beY" = ( /obj/structure/bed/chair, @@ -17853,9 +14611,7 @@ /area/strata/ag/exterior/marsh) "bfm" = ( /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bfn" = ( /obj/effect/decal/warning_stripes{ @@ -17864,9 +14620,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bfo" = ( /obj/structure/platform_decoration/strata{ @@ -17904,9 +14658,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/research_decks) "bfv" = ( /obj/structure/machinery/weather_siren{ @@ -17936,16 +14688,11 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "bfD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/foyer) "bfE" = ( /obj/structure/platform/strata/metal{ @@ -17963,10 +14710,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/gen/foyer) "bfI" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -17981,10 +14725,7 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfN" = ( /obj/structure/sign/safety/radio_rad, @@ -17994,26 +14735,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfP" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfS" = ( /obj/structure/sign/safety/maint, @@ -18025,17 +14757,11 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfV" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bfW" = ( /turf/closed/wall/strata_ice/dirty, @@ -18048,9 +14774,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgb" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -18059,9 +14783,7 @@ /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -18070,9 +14792,7 @@ /obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -18081,9 +14801,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bge" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -18092,9 +14810,7 @@ /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgf" = ( /obj/structure/machinery/light/small{ @@ -18104,15 +14820,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgg" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bgh" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -18154,10 +14866,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "bgq" = ( /obj/structure/fence, @@ -18217,19 +14926,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bgA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bgB" = ( /obj/structure/platform/strata, @@ -18278,9 +14981,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/platform/east/scrub) "bgM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -18341,9 +15042,7 @@ /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bgW" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -18351,10 +15050,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/jung/dorms/admin4) "bgX" = ( /obj/structure/tunnel, @@ -18396,19 +15092,14 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "bhq" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 8; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/nearlz1) "bhr" = ( /obj/structure/platform/strata/metal{ @@ -18470,10 +15161,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "bhz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -18483,9 +15171,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bhB" = ( /obj/effect/decal/cleanable/blood/oil, @@ -18499,16 +15185,10 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bhD" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bhE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -18522,10 +15202,7 @@ /area/strata/ag/interior/outpost/engi/drome) "bhF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bhG" = ( /obj/structure/flora/pottedplant{ @@ -18535,23 +15212,17 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bhH" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bhI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bhJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -18600,9 +15271,7 @@ /area/strata/ag/exterior/marsh) "bhQ" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bhR" = ( /obj/structure/closet, @@ -18617,10 +15286,7 @@ /area/strata/ag/exterior/shed_five_caves) "bhU" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bhV" = ( /obj/structure/flora/pottedplant{ @@ -18646,10 +15312,7 @@ icon_state = "pottedplant_22" }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "bia" = ( /obj/item/lightstick/red/planted, @@ -18657,9 +15320,7 @@ /area/strata/ag/exterior/marsh/crash) "bib" = ( /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bic" = ( /obj/item/lightstick/red/planted, @@ -18682,31 +15343,21 @@ "bii" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bij" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "bik" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "bil" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) "bim" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -18778,16 +15429,12 @@ "biC" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "biD" = ( /obj/structure/coatrack, /obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "biE" = ( /obj/structure/platform/strata/metal{ @@ -18824,9 +15471,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "biN" = ( /obj/structure/platform/strata, @@ -18859,10 +15504,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "biU" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -18872,45 +15514,32 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "biV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "biW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/admin) "biX" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "biZ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bja" = ( /obj/structure/machinery/vending/snack, @@ -18918,15 +15547,11 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bjb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bjc" = ( /turf/open/asphalt/cement, @@ -18938,39 +15563,29 @@ /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bjf" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bjg" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "bjh" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bji" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bjj" = ( /turf/open/auto_turf/ice/layer0, @@ -18990,42 +15605,29 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/east_carp) "bjl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bjn" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bjo" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "bjp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bjr" = ( /turf/open/asphalt/cement, @@ -19246,10 +15848,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) "bkt" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) "bku" = ( /obj/structure/window/reinforced/tinted{ @@ -19259,10 +15858,7 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) "bkv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -19280,18 +15876,13 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bkx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bky" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -19318,10 +15909,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bkC" = ( /obj/structure/bed/chair{ @@ -19371,9 +15959,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/research_decks) "bkL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19387,9 +15973,7 @@ /area/strata/ag/interior/outpost/gen/foyer) "bkP" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/med) "bkT" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -19414,16 +15998,10 @@ /area/strata/ag/interior/mountain) "bkY" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "bkZ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "bla" = ( /obj/item/lightstick/red/planted, @@ -19438,10 +16016,7 @@ /area/strata/ag/interior/outpost/gen/foyer) "bld" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "ble" = ( /turf/open/auto_turf/snow/brown_base/layer0, @@ -19458,17 +16033,11 @@ /area/strata/ag/exterior/shed_five_caves) "blh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "bli" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "blk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19477,9 +16046,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) "bll" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "blm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19600,9 +16167,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/cabin_area) "blJ" = ( /turf/open/auto_turf/snow/brown_base/layer0, @@ -19627,9 +16192,7 @@ /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) "blN" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "blO" = ( /obj/structure/surface/table/reinforced/prison, @@ -19639,9 +16202,7 @@ pixel_y = 15 }, /obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "blP" = ( /turf/open/auto_turf/snow/brown_base/layer3, @@ -19654,37 +16215,24 @@ /area/strata/ag/interior/outpost/admin) "blR" = ( /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "blS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "blT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "blU" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "blV" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/admin) "blW" = ( /turf/closed/shuttle/ert{ @@ -19692,26 +16240,20 @@ }, /area/strata/ag/exterior/marsh/crash) "blX" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "blY" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bma" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) "bmb" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen) "bmc" = ( /obj/effect/decal/cleanable/blood/oil, @@ -19723,19 +16265,13 @@ /area/strata/ag/exterior/marsh/center) "bmf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "bml" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bmm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19747,10 +16283,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bmp" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -19769,19 +16302,13 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bmt" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bmu" = ( /obj/structure/largecrate/random/secure, @@ -19891,9 +16418,7 @@ /area/strata/ag/exterior/marsh/crash) "bmX" = ( /obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "bmY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19902,15 +16427,11 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) "bmZ" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/exterior/paths/cabin_area) "bna" = ( /obj/structure/barricade/snow, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/cabin_area) "bnb" = ( /obj/structure/platform_decoration/strata/metal{ @@ -19980,16 +16501,12 @@ /area/strata/ag/exterior/paths/southresearch) "bnv" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/north_lz_caves) "bnw" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/north_lz_caves) "bnx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -20020,10 +16537,7 @@ /area/strata/ag/exterior/paths/southresearch) "bnE" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "bnF" = ( /obj/structure/bed/roller, @@ -20035,18 +16549,12 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) "bnH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "bnI" = ( /obj/structure/surface/table/reinforced/prison, @@ -20103,10 +16611,7 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) "bnT" = ( /obj/structure/window/reinforced/tinted{ @@ -20116,18 +16621,13 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bnU" = ( /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/strata/ag/interior/outpost/canteen) "bnW" = ( /obj/effect/decal/cleanable/blood/oil, @@ -20146,9 +16646,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "boa" = ( /obj/structure/closet/bodybag, @@ -20216,9 +16714,7 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bok" = ( /obj/structure/closet/bodybag, @@ -20249,9 +16745,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) "boq" = ( /obj/item/stack/medical/splint, @@ -20261,25 +16755,19 @@ "bos" = ( /obj/item/paper_bin, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bot" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bou" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bov" = ( /obj/effect/decal/cleanable/blood{ @@ -20295,10 +16783,7 @@ /area/strata/ag/exterior/paths/southresearch) "box" = ( /obj/item/device/motiondetector, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "boy" = ( /obj/effect/decal/cleanable/blood{ @@ -20306,17 +16791,12 @@ }, /obj/item/weapon/harpoon, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "boz" = ( /obj/item/storage/fancy/cigarettes/lady_finger, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "boC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -20331,9 +16811,7 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "boE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -20346,10 +16824,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "boG" = ( /obj/structure/platform/strata{ @@ -20380,18 +16855,13 @@ icon_state = "p_stair_full" }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/exterior/research_decks) "boL" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "boM" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -20405,10 +16875,7 @@ /obj/effect/decal/cleanable/blood/gibs/down, /obj/effect/decal/cleanable/blood/splatter, /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "boO" = ( /obj/item/explosive/grenade/high_explosive/upp, @@ -20416,10 +16883,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "boP" = ( /obj/structure/surface/rack, @@ -20427,19 +16891,13 @@ /obj/item/storage/box/gloves, /obj/item/storage/box/pillbottles, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "boQ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "boS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -20457,28 +16915,20 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "boV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "boW" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "boX" = ( /obj/structure/platform_decoration/strata{ @@ -20490,10 +16940,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "boZ" = ( /obj/structure/platform/strata{ @@ -20530,10 +16977,7 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "bpf" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -20564,9 +17008,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "bpm" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -20620,9 +17062,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bpy" = ( /obj/effect/decal/cleanable/blood/oil, @@ -20631,9 +17071,7 @@ "bpz" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bpA" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -20649,28 +17087,20 @@ /area/strata/ag/exterior/paths/southresearch) "bpE" = ( /obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bpF" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "bpG" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, /obj/item/tank/emergency_oxygen/engi, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "bpH" = ( /obj/structure/surface/table/reinforced/prison, @@ -20681,34 +17111,26 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bpI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "bpJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "bpK" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "bpL" = ( /obj/structure/machinery/light/small{ @@ -20718,9 +17140,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bpM" = ( /obj/structure/stairs/perspective{ @@ -20729,9 +17149,7 @@ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bpN" = ( /obj/structure/stairs/perspective{ @@ -20739,9 +17157,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bpO" = ( /obj/structure/machinery/light/small{ @@ -20752,24 +17168,17 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "bpP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bpS" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bpT" = ( /obj/item/lightstick/red/planted, @@ -20784,19 +17193,14 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bpX" = ( /obj/structure/closet/bombcloset, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bpY" = ( /obj/structure/closet/secure_closet/personal, @@ -20808,10 +17212,7 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "bpZ" = ( /obj/effect/decal/cleanable/blood/oil, @@ -20828,10 +17229,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bqc" = ( /obj/effect/decal/cleanable/blood{ @@ -20847,19 +17245,13 @@ /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/strata/ag/interior/outpost/engi/drome) "bqe" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bqf" = ( /turf/open/auto_turf/strata_grass/layer0_mud, @@ -20872,10 +17264,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -20993,9 +17382,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bqZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -21026,10 +17413,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "bre" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -21047,9 +17431,7 @@ "brg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "brh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -21070,9 +17452,7 @@ /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) "brn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/north_lz_caves) "bro" = ( /obj/item/storage/box/masks{ @@ -21094,10 +17474,7 @@ "brr" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/administration) "brs" = ( /obj/structure/surface/table/reinforced/prison, @@ -21107,16 +17484,11 @@ /obj/structure/window/reinforced/tinted, /obj/item/device/flashlight/lamp, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bru" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "brv" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -21125,19 +17497,14 @@ "brw" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "brx" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "bry" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -21146,10 +17513,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) "brB" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "brC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -21157,10 +17521,7 @@ /area/strata/ag/exterior/paths/southresearch) "brD" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "brE" = ( /obj/structure/platform/strata{ @@ -21221,9 +17582,7 @@ /area/strata/ag/exterior/paths/southresearch) "brS" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "brT" = ( /obj/structure/prop/power_transformer, @@ -21288,17 +17647,11 @@ /area/strata/ag/exterior/marsh/center) "bsk" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bsl" = ( /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -21318,25 +17671,18 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "bsp" = ( /obj/structure/prop/ice_colony/tiger_rug{ layer = 2.1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "bsq" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bsr" = ( /obj/structure/platform_decoration/strata/metal{ @@ -21346,40 +17692,26 @@ /area/strata/ag/exterior/paths/southresearch) "bss" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "bst" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "bsu" = ( /obj/structure/platform_decoration/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) "bsv" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "bsw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "bsx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/foyer) "bsy" = ( @@ -21387,10 +17719,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/foyer) "bsz" = ( /obj/structure/sign/safety/maint, @@ -21400,41 +17729,29 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) "bsB" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "bsC" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bsD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bsG" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bsH" = ( /obj/structure/surface/table/reinforced/prison, @@ -21443,33 +17760,25 @@ pixel_y = 6 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bsI" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bsJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/admin) "bsK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bsM" = ( /obj/structure/platform/strata/metal, @@ -21485,10 +17794,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bsP" = ( /obj/structure/reagent_dispensers/watertank, @@ -21515,10 +17821,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bsT" = ( /obj/structure/platform/strata{ @@ -21553,9 +17856,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bsZ" = ( /obj/structure/platform_decoration/strata{ @@ -21677,9 +17978,7 @@ /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "btA" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -21693,9 +17992,7 @@ /area/strata/ag/exterior/marsh/crash) "btC" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "btE" = ( /obj/structure/bed/chair{ @@ -21704,9 +18001,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) "btG" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "btH" = ( /obj/structure/bed/chair{ @@ -21719,9 +18014,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "btJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -21732,10 +18025,7 @@ pixel_y = 12 }, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/platform/east/scrub) "btK" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -21751,9 +18041,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) "btN" = ( /obj/structure/platform/strata/metal{ @@ -21768,15 +18056,11 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "btT" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "btU" = ( /obj/structure/closet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "btV" = ( /obj/structure/surface/rack, @@ -21825,19 +18109,13 @@ /area/strata/ag/exterior/marsh/crash) "buc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bud" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bue" = ( /obj/effect/decal/cleanable/blood/oil, @@ -21916,9 +18194,7 @@ reason = "Visitor" }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "buz" = ( /obj/effect/decal/cleanable/blood/gibs/body, @@ -21990,26 +18266,17 @@ /area/strata/ag/interior/administration) "buP" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "buQ" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "buR" = ( /obj/structure/bookcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "buS" = ( /obj/effect/decal/cleanable/generic, @@ -22018,58 +18285,39 @@ "buT" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "buU" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "buV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "buW" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "buX" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "buY" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "buZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "bvb" = ( /obj/structure/noticeboard{ @@ -22079,25 +18327,19 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bvc" = ( /obj/effect/spawner/random/toolbox, /obj/structure/closet/secure_closet/personal, /obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bvd" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bve" = ( /obj/structure/displaycase, @@ -22105,39 +18347,28 @@ /area/strata/ag/interior/outpost/admin) "bvf" = ( /obj/structure/lamarr, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bvh" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bvj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bvk" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bvl" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bvn" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -22159,10 +18390,7 @@ /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, /obj/effect/landmark/wo_supplies/storage/belts/m41abelt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bvu" = ( /obj/structure/cargo_container/ferret/left, @@ -22231,9 +18459,7 @@ /area/strata/ag/interior/outpost/engi/drome) "bvL" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "bvM" = ( /obj/item/lightstick/red/planted, @@ -22364,17 +18590,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bwo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bwp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -22383,10 +18605,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bwr" = ( /obj/structure/platform/strata{ @@ -22425,10 +18644,7 @@ /obj/structure/machinery/sensortower{ pixel_x = -8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/platform/east/scrub) "bwA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -22461,9 +18677,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "bwH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -22502,10 +18716,7 @@ /area/strata/ag/exterior/nearlz2) "bwR" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) "bwT" = ( /obj/structure/platform/strata{ @@ -22605,15 +18816,11 @@ /area/strata/ag/exterior/nearlz2) "bxl" = ( /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bxm" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bxn" = ( /obj/structure/machinery/power/apc{ @@ -22621,9 +18828,7 @@ pixel_y = 25 }, /obj/structure/kitchenspike, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bxo" = ( /obj/item/lightstick/red/planted, @@ -22632,9 +18837,7 @@ "bxr" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bxs" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -22650,10 +18853,7 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bxy" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -22686,16 +18886,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bxF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bxG" = ( /obj/structure/platform/strata{ @@ -22714,9 +18908,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bxJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -22732,26 +18924,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxM" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxN" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxO" = ( /obj/structure/bed/chair/comfy{ @@ -22760,10 +18943,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxP" = ( /obj/effect/decal/cleanable/blood{ @@ -22772,10 +18952,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxQ" = ( /obj/structure/platform/strata{ @@ -22798,19 +18975,13 @@ dir = 4 }, /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bxV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "bxW" = ( /obj/structure/platform/strata{ @@ -22823,10 +18994,7 @@ /area/strata/ag/exterior/nearlz2) "bxX" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) "bxY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -22870,10 +19038,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "byf" = ( /obj/structure/platform/strata{ @@ -22905,9 +19070,7 @@ /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "bym" = ( /obj/structure/barricade/snow{ @@ -22942,18 +19105,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/north, /area/strata/ag/interior/outpost/med) "byF" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "byN" = ( /obj/structure/platform_decoration/strata, @@ -22986,30 +19144,22 @@ "byY" = ( /obj/item/tool/pen/blue, /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "byZ" = ( /mob/living/simple_animal/cat/Runtime{ desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; name = "Bernard" }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bza" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bzb" = ( /obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bzc" = ( /obj/structure/machinery/light/small{ @@ -23020,37 +19170,27 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bzd" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "bzf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bzg" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -23059,49 +19199,31 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "bzl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bzm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bzn" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bzo" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bzp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bzq" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -23112,36 +19234,26 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bzr" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "bzs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "bzt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "bzx" = ( /obj/structure/machinery/power/apc{ @@ -23158,9 +19270,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bzH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -23168,10 +19278,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) "bzM" = ( /obj/structure/machinery/light/small{ @@ -23179,22 +19286,15 @@ pixel_y = 20 }, /obj/item/stack/rods, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bzN" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bzR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bzV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -23215,25 +19315,18 @@ /area/strata/ag/exterior/marsh/river) "bAi" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/cabin_area) "bAp" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bAq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) "bAr" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "bAt" = ( /turf/closed/wall/strata_outpost, @@ -23284,57 +19377,41 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bAF" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bAG" = ( /obj/effect/decal/strata_decals/grime/grime1{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bAH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bAI" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "bAJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bAK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bAL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -23343,10 +19420,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bAM" = ( /obj/structure/machinery/alarm{ @@ -23372,10 +19446,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bAS" = ( /obj/structure/prop/ice_colony/soil_net, @@ -23385,23 +19456,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/med) "bAW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/med) "bBg" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "bBr" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -23409,10 +19474,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) "bBB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/strata/ag/interior/outpost/med) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -23430,28 +19492,17 @@ dir = 4 }, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "bBT" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) "bBU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/strata/ag/interior/outpost/med) "bBV" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "bBX" = ( /obj/structure/surface/table/reinforced/prison, @@ -23463,10 +19514,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "bBY" = ( /obj/structure/surface/table/reinforced/prison, @@ -23478,10 +19526,7 @@ dir = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "bCd" = ( /obj/structure/platform/strata{ @@ -23492,18 +19537,14 @@ /area/strata/ag/exterior/marsh/water) "bCf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bCh" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "bCm" = ( /obj/structure/filingcabinet, @@ -23511,9 +19552,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bCn" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, @@ -23524,9 +19563,7 @@ pixel_y = 14 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bCo" = ( /obj/structure/bookcase{ @@ -23535,25 +19572,17 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bCp" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/med) "bCq" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/med) "bCt" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/med) "bCv" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ @@ -23561,28 +19590,20 @@ id_tag = "bunker_or1"; name = "\improper Operating Room 1" }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/med) "bCw" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "bCx" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "bCy" = ( /obj/structure/window/reinforced/tinted{ @@ -23592,9 +19613,7 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bCz" = ( /turf/closed/wall/strata_outpost, @@ -23604,25 +19623,19 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bCH" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bCK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bCL" = ( /obj/effect/decal/warning_stripes{ @@ -23634,18 +19647,14 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bCN" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bCP" = ( /obj/structure/window/reinforced/tinted{ @@ -23659,9 +19668,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ @@ -23675,9 +19682,7 @@ /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) "bDn" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bDo" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -23685,23 +19690,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bDq" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "bDr" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bDs" = ( /obj/item/paper_bin, @@ -23714,49 +19711,36 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bDt" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bDv" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "bDy" = ( /obj/item/storage/box/ids, /obj/structure/surface/rack, /obj/item/device/radio, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bDz" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "bDA" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "bDB" = ( /obj/item/trash/plate{ @@ -23815,19 +19799,14 @@ /area/strata/ug/interior/jungle/deep/east_carp) "bDT" = ( /obj/structure/fence, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "bDU" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "bEh" = ( /obj/structure/platform/strata{ @@ -23839,15 +19818,10 @@ /area/strata/ag/exterior/marsh/water) "bEy" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bEE" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "bER" = ( /obj/structure/machinery/weather_siren{ @@ -23890,16 +19864,11 @@ /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, /obj/item/folder/red, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bFg" = ( /obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "bFi" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -23917,9 +19886,7 @@ icon_state = "NS-center" }, /obj/effect/decal/warning_stripes, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bFs" = ( /obj/effect/decal/warning_stripes{ @@ -23934,23 +19901,15 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bFv" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) "bFx" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "bFB" = ( /obj/structure/closet/secure_closet/personal, @@ -23959,24 +19918,17 @@ pixel_x = -24 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "bFC" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bFF" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bFG" = ( /turf/closed/wall/strata_ice/dirty, @@ -23991,10 +19943,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bGa" = ( /obj/structure/largecrate/random/case/double, @@ -24008,20 +19957,14 @@ /area/strata/ag/interior/administration) "bGc" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/administration) "bGd" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/west, /area/strata/ag/interior/outpost/med) "bGg" = ( /obj/structure/platform/strata{ @@ -24033,10 +19976,7 @@ /area/strata/ag/exterior/marsh/water) "bGk" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bGo" = ( /obj/structure/sign/safety/bulkhead_door, @@ -24050,24 +19990,17 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bGr" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bGs" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "bGx" = ( /obj/structure/surface/table/reinforced/prison, @@ -24079,53 +20012,38 @@ /obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "bGy" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bGD" = ( /obj/structure/machinery/photocopier, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bGH" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bGJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bGM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bGO" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bHj" = ( /turf/closed/wall/strata_ice/jungle, @@ -24134,17 +20052,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/med) "bHp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/med) "bHq" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -24153,29 +20067,20 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/med) "bHr" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bHs" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bHt" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/maintenance) "bHy" = ( /obj/structure/machinery/optable, @@ -24183,40 +20088,27 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bHA" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bHB" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bHD" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "bHE" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "bHF" = ( /obj/structure/window/reinforced/tinted{ @@ -24226,43 +20118,30 @@ dir = 8 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bHH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bHN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bHP" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bHQ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bHS" = ( /obj/effect/decal/warning_stripes{ @@ -24275,9 +20154,7 @@ icon_state = "N" }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bHT" = ( /obj/effect/decal/warning_stripes{ @@ -24287,65 +20164,44 @@ icon_state = "N" }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bHV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "bHW" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/glass, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bHY" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "bIb" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bIp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bIq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bIr" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bIt" = ( /obj/structure/surface/rack, @@ -24367,9 +20223,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/platform/east/scrub) "bIx" = ( /obj/effect/landmark/monkey_spawn, @@ -24396,9 +20250,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "bIH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -24419,9 +20271,7 @@ /area/strata/ag/interior/dorms/maintenance) "bIL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "bIM" = ( /turf/closed/wall/strata_ice/dirty, @@ -24444,67 +20294,47 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bJb" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "bJc" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bJg" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "bJx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "bJy" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bJz" = ( /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/strata/ag/interior/outpost/canteen/personal_storage) "bJC" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "bJE" = ( /obj/structure/filingcabinet, @@ -24538,10 +20368,7 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bJW" = ( /obj/structure/surface/table/reinforced/prison, @@ -24549,27 +20376,18 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bJX" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bKa" = ( /obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bKb" = ( /obj/structure/flora/pottedplant{ @@ -24578,10 +20396,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "bKc" = ( /obj/structure/bed/chair{ @@ -24590,24 +20405,18 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bKn" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bKp" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bKC" = ( /obj/structure/surface/table/reinforced/prison, @@ -24617,19 +20426,14 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "bKD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) "bKK" = ( /obj/structure/disposalpipe/segment{ @@ -24648,16 +20452,12 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bKM" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -24673,22 +20473,16 @@ 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/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bKP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/med) "bKR" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/med) "bKS" = ( /obj/structure/filingcabinet, @@ -24696,9 +20490,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bKT" = ( /obj/structure/platform_decoration/strata/metal{ @@ -24712,25 +20504,19 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "bLa" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "bLb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/admin) "bLi" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bLj" = ( /obj/structure/floodgate, @@ -24742,22 +20528,14 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bLo" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "bLt" = ( /obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -24766,23 +20544,17 @@ "bLA" = ( /obj/item/device/radio, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bLB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "bLC" = ( /obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bLD" = ( /obj/structure/bed/chair{ @@ -24796,23 +20568,14 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bLJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bLK" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "bLR" = ( /obj/structure/machinery/weather_siren{ @@ -24821,48 +20584,31 @@ /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) "bMd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ag/exterior/north_lz_caves) "bMB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/north_lz_caves) "bME" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) "bMF" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "bMG" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/north_lz_caves) "bMP" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ug/interior/jungle/deep/structures/res) "bMQ" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/res) "bMR" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "bMV" = ( /obj/structure/filingcabinet, @@ -24871,33 +20617,21 @@ pixel_x = -24 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bMX" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bMZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/meatballsoup, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms/canteen) "bNa" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "bNh" = ( /obj/structure/barricade/handrail/strata, @@ -24919,10 +20653,7 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "bNq" = ( /obj/structure/sign/safety/bulkhead_door, @@ -24953,10 +20684,7 @@ /area/strata/ag/interior/mountain) "bOh" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "bOj" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -24977,31 +20705,22 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bOq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "bOs" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "bOt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "bOv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -25009,24 +20728,16 @@ }, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "bOw" = ( /obj/item/tool/pen/blue, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "bOx" = ( /obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bOz" = ( /obj/structure/surface/table/reinforced/prison, @@ -25035,23 +20746,15 @@ }, /obj/item/storage/pill_bottle/antitox/skillless, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "bOA" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bOE" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "bOF" = ( /obj/item/book/manual/surgery, @@ -25059,16 +20762,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "bOH" = ( /obj/structure/machinery/door_control{ @@ -25082,17 +20780,13 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bOV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "bOZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -25102,9 +20796,7 @@ /area/strata/ag/exterior/paths/north_outpost) "bPe" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bPf" = ( /turf/closed/wall/strata_outpost, @@ -25113,9 +20805,7 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/res) "bPo" = ( /turf/closed/shuttle/ert{ @@ -25126,40 +20816,26 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bPr" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "bPs" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms) "bPt" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "bPu" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "bPv" = ( /obj/item/tool/kitchen/knife/butcher, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "bPy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -25169,51 +20845,36 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bPX" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) "bPY" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/canteen/personal_storage) "bPZ" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "bQa" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bQg" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "bQi" = ( /turf/closed/shuttle/ert{ @@ -25229,10 +20890,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "bQp" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bQq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -25241,20 +20899,14 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bQs" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "bQu" = ( /obj/structure/prop/structure_lattice{ @@ -25266,9 +20918,7 @@ pixel_x = -5; pixel_y = 16 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "bQv" = ( /obj/item/stack/sandbags, @@ -25276,10 +20926,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "bQA" = ( /obj/effect/landmark/xeno_spawn, @@ -25287,22 +20934,14 @@ /area/strata/ug/interior/jungle/deep/east_carp) "bQS" = ( /obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "bQT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "bQU" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "bRb" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -25312,9 +20951,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh) "bRe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/north_lz_caves) "bRf" = ( /turf/open/asphalt/cement, @@ -25339,54 +20976,36 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bRs" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "bRu" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "bRw" = ( /obj/structure/surface/rack, /obj/item/stack/folding_barricade, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bRT" = ( /obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "bRU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "bRY" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "bRZ" = ( /obj/structure/machinery/light/small{ @@ -25395,10 +21014,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "bSa" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -25412,19 +21028,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "bSv" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "bSD" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -25439,103 +21049,69 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bSF" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "bSG" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "bSI" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bSJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "bSN" = ( /obj/structure/surface/rack, /obj/item/storage/box/gloves, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "bST" = ( /obj/item/storage/briefcase, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "bTa" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/research_decks/security) "bTb" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bTk" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/north_outpost) "bTl" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/north_outpost) "bTp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "bTr" = ( /obj/item/stool, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "bTD" = ( /obj/structure/sign/nosmoking_1, @@ -25543,14 +21119,10 @@ /area/strata/ag/interior/outpost/med) "bTE" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bTF" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bTG" = ( /obj/structure/machinery/light/small{ @@ -25558,9 +21130,7 @@ pixel_y = 20 }, /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -25581,25 +21151,16 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) "bUn" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "bUo" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "bUp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -25608,74 +21169,52 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bUq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "bUs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "bUt" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "bUu" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "bUv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bUx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bUF" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/minehead) "bUI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bUJ" = ( /obj/structure/sign/safety/maint, @@ -25685,31 +21224,21 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bUL" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "bUM" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "bUO" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/canteen) "bUU" = ( /obj/structure/surface/rack, @@ -25725,9 +21254,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bUV" = ( /obj/structure/surface/rack, @@ -25735,9 +21262,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bUX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -25748,79 +21273,56 @@ /obj/item/storage/firstaid/adv, /obj/item/reagent_container/spray/pepper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bUZ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "bVa" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "bVc" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bVd" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bVf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "bVn" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "bVo" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "bVr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bVs" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bVw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -25839,17 +21341,13 @@ "bVF" = ( /obj/structure/closet/secure_closet/medical2, /obj/item/clothing/gloves/latex, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "bVL" = ( /obj/structure/surface/rack, /obj/item/storage/box/condimentbottles, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "bVM" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -25867,9 +21365,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "bVV" = ( /obj/structure/machinery/weather_siren{ @@ -25886,20 +21382,14 @@ /area/strata/ag/exterior/north_lz_caves) "bWc" = ( /obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "bWd" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "bWe" = ( /obj/item/lightstick/red/spoke/planted{ @@ -25916,24 +21406,17 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/minehead) "bWi" = ( /obj/structure/largecrate/random, /obj/item/storage/belt/shotgun, /obj/item/storage/backpack/lightpack, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "bWk" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bWl" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -25946,43 +21429,30 @@ /obj/item/storage/box/lightstick, /obj/item/storage/box/lightstick, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "bWw" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bWx" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bWy" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "bWB" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "bWD" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/north_outpost) "bWH" = ( /obj/structure/platform_decoration/strata/metal{ @@ -25994,36 +21464,25 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "bWM" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "bWN" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bWZ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "bXa" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "bXc" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -26031,9 +21490,7 @@ dir = 8 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "bXd" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -26060,27 +21517,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "bXi" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/research_decks) "bXj" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/research_decks) "bXq" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "bXv" = ( /obj/structure/bed/chair{ @@ -26089,15 +21536,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "bXw" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "bXC" = ( /obj/structure/machinery/light/small{ @@ -26113,10 +21556,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) "bXQ" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "bXV" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -26126,10 +21566,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "bXY" = ( /obj/structure/sign/safety/restrictedarea, @@ -26145,10 +21582,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bYg" = ( /obj/structure/stairs/perspective{ @@ -26159,18 +21593,13 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bYk" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/security) "bYl" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -26186,10 +21615,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "bYA" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -26197,18 +21623,13 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "bYD" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "bYE" = ( /obj/structure/extinguisher_cabinet, @@ -26220,10 +21641,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "bYJ" = ( /obj/structure/machinery/weather_siren{ @@ -26242,17 +21660,12 @@ /area/strata/ag/exterior/research_decks) "bYN" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "bYR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "bYS" = ( /obj/structure/bed/chair{ @@ -26262,9 +21675,7 @@ /area/strata/ag/interior/outpost/security) "bYU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "bYV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ @@ -26277,16 +21688,11 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bZh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "bZj" = ( /obj/structure/extinguisher_cabinet, @@ -26297,47 +21703,31 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "bZB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZC" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "bZD" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "bZE" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZG" = ( /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/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZH" = ( /obj/structure/sign/safety/galley, @@ -26376,24 +21766,17 @@ /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/plump_pie, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cac" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "cad" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "caf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -26402,35 +21785,25 @@ /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/security) "cah" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cak" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cam" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cao" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -26457,33 +21830,23 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) "caE" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "caI" = ( /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/paths/adminext) "caL" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "caM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) "caV" = ( /obj/item/stack/sheet/wood, @@ -26511,9 +21874,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, /obj/item/device/radio, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/north_lz_caves) "cbj" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -26526,10 +21887,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cbu" = ( /obj/structure/surface/table/reinforced/prison, @@ -26539,16 +21897,11 @@ /area/strata/ag/exterior/north_lz_caves) "cbv" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "cbz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cbE" = ( /obj/structure/flora/pottedplant{ @@ -26583,41 +21936,27 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "cbS" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "cbW" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "ccc" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "ccd" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) "ccg" = ( /obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/gen/bball) "cch" = ( /obj/structure/surface/table/reinforced/prison, @@ -26627,15 +21966,10 @@ /obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "cci" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "ccj" = ( /turf/open/asphalt/cement, @@ -26645,31 +21979,20 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "ccn" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cco" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/security) "ccp" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ccq" = ( /obj/structure/surface/table/reinforced/prison, @@ -26682,15 +22005,10 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ccr" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ccs" = ( /turf/open/floor/strata, @@ -26698,24 +22016,15 @@ "cct" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) "ccu" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "ccy" = ( /obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/adminext) "ccz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -26762,25 +22071,17 @@ /area/strata/ag/exterior/research_decks) "ccW" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "ccX" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "ccY" = ( /obj/structure/closet/lasertag/blue, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "cdb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -26790,9 +22091,7 @@ /area/strata/ag/exterior/paths/north_outpost) "cdc" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cdd" = ( /obj/structure/surface/table/reinforced/prison, @@ -26801,9 +22100,7 @@ pixel_x = -4; pixel_y = 14 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cdh" = ( /turf/open/floor/strata, @@ -26812,10 +22109,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "cdl" = ( /obj/structure/floodgate, @@ -26825,9 +22119,7 @@ /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/canteen) "cdn" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "cdo" = ( /turf/open/auto_turf/ice/layer1, @@ -26851,10 +22143,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "cdD" = ( /obj/structure/extinguisher_cabinet, @@ -26863,10 +22152,7 @@ "cdF" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "cdG" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -26880,18 +22166,12 @@ /obj/structure/xenoautopsy/tank/broken{ desc = "A broken cryo tank, this must've been where it all began..." }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "cdR" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "cdT" = ( /obj/structure/machinery/light/small{ @@ -26906,10 +22186,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "cdX" = ( /obj/structure/surface/table/reinforced/prison, @@ -26917,28 +22194,18 @@ /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "cdY" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cdZ" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "cea" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/security) "ced" = ( /turf/closed/wall/strata_ice/dirty, @@ -26948,19 +22215,13 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/maint/canteen_e_1) "ceg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "cei" = ( /turf/open/gm/dirt, @@ -26969,51 +22230,35 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) "cer" = ( /obj/structure/machinery/smartfridge/drinks, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "cet" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "ceu" = ( /obj/effect/decal/cleanable/blood, /obj/item/tool/match, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "cew" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "ceG" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "ceI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "ceK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -27023,28 +22268,19 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "ceL" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "ceM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) "ceN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "ceQ" = ( /turf/closed/wall/strata_ice/jungle, @@ -27057,10 +22293,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/interior/dorms) "ceW" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -27083,24 +22316,15 @@ id_tag = "bunker_or1"; name = "\improper Operating Room 1" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "ceZ" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cfg" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cfi" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -27108,25 +22332,17 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "cfl" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cfp" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /obj/item/stack/sheet/glass, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cfr" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -27140,10 +22356,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/security) "cfx" = ( /turf/open/floor/strata, @@ -27172,27 +22385,18 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cfD" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "cfE" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "cfF" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -27206,9 +22410,7 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "cfJ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cfR" = ( /turf/closed/wall/strata_outpost, @@ -27220,10 +22422,7 @@ /area/strata/ag/exterior/research_decks) "cfY" = ( /obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cfZ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -27237,60 +22436,42 @@ /area/strata/ag/interior/outpost/engi/drome) "cgd" = ( /obj/structure/fence, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "cge" = ( /obj/structure/window/reinforced/tinted, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "cgg" = ( /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) "cgm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill, /obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cgn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cgo" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cgp" = ( /obj/structure/bed/chair/comfy, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "cgq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -27298,18 +22479,13 @@ /area/strata/ug/interior/jungle/deep/east_carp) "cgu" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "cgE" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_res) "cgN" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome) "cgO" = ( /turf/closed/shuttle/ert{ @@ -27328,15 +22504,11 @@ /area/strata/ag/interior/outpost/engi/drome/shuttle) "cgR" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome) "cgS" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "cgT" = ( /obj/structure/mirror, @@ -27356,18 +22528,12 @@ /obj/item/clothing/suit/armor/riot, /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) "cgW" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cgX" = ( /obj/structure/surface/table/reinforced/prison, @@ -27376,29 +22542,17 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "cgY" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "cgZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "chd" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "che" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -27421,53 +22575,37 @@ "chp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "chq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "chr" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "cht" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "chw" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "chx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "chy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/cable_coil/blue, /obj/item/stack/cable_coil/blue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "chz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -27479,10 +22617,7 @@ /area/strata/ag/interior/outpost/canteen) "chC" = ( /obj/effect/spawner/random/attachment, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "chJ" = ( /mob/living/simple_animal/hostile/carp{ @@ -27499,24 +22634,15 @@ /area/strata/ug/interior/jungle/deep/south_res) "chS" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "chX" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "cie" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cif" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -27529,10 +22655,7 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "cik" = ( /turf/closed/wall/strata_outpost, @@ -27541,29 +22664,20 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "cin" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "cio" = ( /obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen) "cis" = ( /obj/effect/decal/cleanable/blood/oil, @@ -27594,17 +22708,11 @@ /area/strata/ag/interior/landingzone_checkpoint) "ciH" = ( /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "ciW" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cjb" = ( /turf/open/floor/strata, @@ -27618,43 +22726,28 @@ /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) "cji" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "cjj" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "cjk" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "cjl" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cjn" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen) "cjq" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "cjr" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -27662,10 +22755,7 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "cjv" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "cjw" = ( /turf/closed/wall/strata_outpost, @@ -27687,10 +22777,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "cjA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -27712,19 +22799,13 @@ dir = 1 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cjH" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cjI" = ( /obj/structure/platform/strata/metal{ @@ -27734,38 +22815,26 @@ dir = 4 }, /obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cjN" = ( /obj/structure/window/framed/strata, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "cjO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "cjP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "cjQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -27774,42 +22843,27 @@ /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "cjR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "cjS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) "cjU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "cjV" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "cjW" = ( /obj/structure/machinery/light/small{ @@ -27819,58 +22873,39 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "cjX" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "cjZ" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) "cka" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "ckb" = ( /obj/structure/largecrate/guns/russian, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "ckd" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "cke" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "ckf" = ( /obj/structure/bed/chair{ @@ -27879,10 +22914,7 @@ /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ckx" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) "ckz" = ( /obj/structure/surface/table/reinforced/prison, @@ -27892,10 +22924,7 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/north, /area/strata/ag/interior/outpost/med) "ckA" = ( /obj/structure/surface/rack, @@ -27904,38 +22933,26 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "ckB" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "ckC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "ckE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "ckF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -27947,25 +22964,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "ckH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "ckI" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "ckK" = ( /turf/closed/wall/strata_outpost, @@ -27978,44 +22987,29 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ckN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) "ckR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "ckS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "ckX" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "ckY" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "ckZ" = ( /turf/open/auto_turf/ice/layer0, @@ -28028,10 +23022,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cle" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -28041,10 +23032,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "clg" = ( /turf/closed/shuttle/ert{ @@ -28053,9 +23041,7 @@ /area/strata/ag/interior/outpost/engi/drome/shuttle) "clo" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "clr" = ( /obj/structure/surface/table/reinforced/prison, @@ -28064,9 +23050,7 @@ pixel_y = 6 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "cls" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -28079,9 +23063,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "clw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -28109,16 +23091,12 @@ /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "clG" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) "clI" = ( /obj/structure/machinery/vending/dinnerware, @@ -28138,10 +23116,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "clU" = ( /obj/structure/filingcabinet, @@ -28152,9 +23127,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms/south) "cmf" = ( /obj/effect/landmark/monkey_spawn, @@ -28167,10 +23140,7 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) "cmn" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "cmo" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -28185,27 +23155,20 @@ "cmt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) "cmu" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/north_carp) "cmA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landingzone_1) "cmB" = ( /obj/structure/bed/nest, /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "cmC" = ( /obj/structure/machinery/light/small, @@ -28215,17 +23178,13 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "cmE" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "cmF" = ( /obj/structure/surface/rack, @@ -28234,19 +23193,14 @@ /obj/item/inflatable/door, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms/south) "cmX" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/research_decks) "cmZ" = ( /obj/structure/fence, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cna" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -28264,10 +23218,7 @@ /area/strata/ag/exterior/research_decks) "cnc" = ( /obj/item/storage/box/rxglasses, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "cnd" = ( /obj/item/storage/pill_bottle/russianRed, @@ -28278,58 +23229,38 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "cne" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/strata/ag/interior/outpost/med) "cnf" = ( /obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) "cng" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) "cnh" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) "cni" = ( /obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/strata/ag/interior/outpost/med) "cnj" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/strata/ag/interior/outpost/med) "cnk" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "cnm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -28339,16 +23270,10 @@ /area/strata/ag/interior/outpost/canteen/bar) "cnp" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "cnr" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "cnu" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -28357,34 +23282,23 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "cnw" = ( /obj/structure/surface/rack, /obj/item/storage/belt/utility/full, /obj/item/tank/anesthetic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cnx" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, /obj/item/storage/belt/utility/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "cnA" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "cnB" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -28394,10 +23308,7 @@ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "cnK" = ( /obj/structure/surface/rack, @@ -28406,19 +23317,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cnO" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/dorms/hive) "cnQ" = ( /obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "cnS" = ( /turf/closed/shuttle/ert{ @@ -28432,9 +23338,7 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "cnZ" = ( /obj/structure/machinery/power/apc{ @@ -28442,16 +23346,12 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "coa" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -28461,16 +23361,11 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "coh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "coi" = ( /obj/structure/reagent_dispensers/beerkeg, @@ -28478,17 +23373,11 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "cok" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) "col" = ( /obj/structure/stairs/perspective{ @@ -28518,9 +23407,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "coy" = ( /obj/structure/bed/chair/office/light, @@ -28549,9 +23436,7 @@ }, /area/strata/ag/interior/outpost/engi/drome/shuttle) "coO" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "coP" = ( /obj/structure/bed/chair/office/light, @@ -28559,41 +23444,31 @@ /area/strata/ag/interior/dorms/flight_control) "coS" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "coU" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "coV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "coX" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "coY" = ( /obj/item/ammo_magazine/revolver/cmb{ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "coZ" = ( /obj/effect/decal/cleanable/blood, @@ -28602,9 +23477,7 @@ pixel_y = -4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "cpd" = ( /obj/structure/sign/safety/fire_haz, @@ -28614,10 +23487,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) "cpg" = ( /turf/closed/wall/strata_ice/jungle, @@ -28629,38 +23499,28 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/engi/drome) "cpo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/maintenance) "cpq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "cpE" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "cpR" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "cpU" = ( /turf/closed/wall/strata_outpost, @@ -28675,9 +23535,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/engi/drome) "cqf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -28698,9 +23556,7 @@ /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/nearlz1) "cqE" = ( /turf/open/floor/strata, @@ -28723,9 +23579,7 @@ /obj/item/device/lightreplacer, /obj/item/clothing/gloves/yellow, /obj/item/tool/extinguisher, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/north_lz_caves) "cqM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -28735,70 +23589,47 @@ /turf/open/asphalt/cement, /area/strata/ag/interior/administration) "crb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "crd" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "crf" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "crk" = ( /obj/effect/glowshroom/single, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/north_lz_caves) "crp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "crq" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/administration) "crt" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ag/interior/landingzone_1) "cru" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) "cry" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "crz" = ( /obj/structure/bed/nest, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "crA" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -28810,17 +23641,13 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "crG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "crI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -28834,68 +23661,49 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) "crR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "crT" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "crU" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "crV" = ( /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "crW" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "crY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) "csc" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "csi" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "csj" = ( /obj/structure/bed{ @@ -28904,16 +23712,11 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/outpost/jung/dorms/admin4) "csk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "csm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -28925,27 +23728,19 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) "cst" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "csu" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "csA" = ( /obj/structure/bed/chair/office/light{ @@ -28955,38 +23750,24 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) "csB" = ( /obj/structure/coatrack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "csE" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "csF" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "csG" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "csH" = ( /obj/structure/fence, @@ -29004,44 +23785,29 @@ /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "csQ" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "csR" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "csT" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "csV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "csW" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/canteen) "csY" = ( /obj/structure/bed/chair{ @@ -29091,45 +23857,32 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "cto" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "ctp" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "ctx" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "cty" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/marsh/river) "ctz" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "ctA" = ( /obj/structure/machinery/light/small{ @@ -29140,25 +23893,18 @@ /area/strata/ag/interior/administration) "ctB" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "ctC" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) "ctD" = ( /obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "ctF" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "ctH" = ( /obj/structure/platform_decoration/strata/metal{ @@ -29169,23 +23915,17 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "ctI" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "ctK" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) "ctS" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "ctZ" = ( /obj/structure/platform_decoration/strata/metal{ @@ -29209,10 +23949,7 @@ /area/strata/ug/interior/jungle/deep/east_carp) "cuj" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "cuy" = ( /obj/structure/platform/strata{ @@ -29234,10 +23971,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/landingzone_checkpoint) "cuH" = ( /obj/structure/machinery/light/small{ @@ -29245,10 +23979,7 @@ pixel_y = 20 }, /obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "cuM" = ( /turf/closed/wall/strata_ice/jungle, @@ -29269,26 +24000,17 @@ /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "cva" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cvb" = ( /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "cvc" = ( /obj/item/cell/high, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "cvd" = ( /obj/structure/closet/secure_closet/medical3{ @@ -29301,10 +24023,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "cve" = ( /obj/structure/bed/chair{ @@ -29313,18 +24032,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "cvf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "cvg" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -29334,26 +24048,18 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "cvl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "cvn" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) "cvC" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cvG" = ( /turf/open/gm/coast/west, @@ -29369,10 +24075,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "cwe" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -29383,10 +24086,7 @@ /area/strata/ag/interior/administration) "cwn" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "cwq" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -29402,17 +24102,13 @@ /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) "cwF" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/landingzone_checkpoint) "cwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "cwS" = ( /turf/open/auto_turf/ice/layer1, @@ -29422,25 +24118,18 @@ /area/strata/ag/interior/landingzone_checkpoint) "cxf" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "cxg" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/landingzone_checkpoint) "cxn" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/marsh) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -29461,19 +24150,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "cxW" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) "cyi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/maintenance) "cyG" = ( /obj/structure/floodgate, @@ -29485,10 +24169,7 @@ dir = 2; name = "Medical Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "cyQ" = ( /obj/structure/window/framed/strata, @@ -29506,9 +24187,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/ids, /obj/item/clothing/glasses/thermal/syndi, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -29542,9 +24221,7 @@ /area/strata/ug/interior/jungle/deep/east_engi) "cDt" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "cDL" = ( /obj/item/lightstick/red/planted, @@ -29554,9 +24231,7 @@ /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "cFg" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -29568,9 +24243,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "cFp" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -29586,30 +24259,21 @@ "cGL" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "cHm" = ( /obj/item/weapon/gun/pistol/t73, /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cIM" = ( /obj/structure/machinery/door/airlock/prison{ dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/outpost/jung/dorms/admin1) "cJf" = ( /obj/item/lightstick/red/planted, @@ -29617,15 +24281,11 @@ /area/strata/ag/exterior/marsh/center) "cKc" = ( /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "cLE" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "cNg" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -29644,70 +24304,46 @@ /area/strata/ug/interior/jungle/deep/tearlake) "cOB" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "cOI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/landingzone_2) "cOR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "cPq" = ( /obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "cRw" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "cRB" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "cSr" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cSP" = ( /obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "cTN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "cUi" = ( /obj/structure/pipes/vents/pump{ @@ -29718,9 +24354,7 @@ "cUr" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/stack/catwalk, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "cUu" = ( /obj/structure/bed, @@ -29729,10 +24363,7 @@ /obj/item/bedsheet/medical, /obj/item/storage/large_holster/machete/full, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "cUT" = ( /obj/structure/surface/table/reinforced/prison, @@ -29740,10 +24371,7 @@ dir = 1 }, /obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "cWs" = ( /obj/structure/barricade/handrail/strata{ @@ -29756,9 +24384,7 @@ }, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cXU" = ( /turf/closed/shuttle/ert{ @@ -29769,26 +24395,19 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "cZa" = ( /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/dorms/hive) "cZH" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/interior/landingzone_1) "cZZ" = ( /obj/item/fuel_cell, @@ -29816,9 +24435,7 @@ /obj/structure/surface/rack, /obj/item/stack/folding_barricade, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -29831,16 +24448,11 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "ddU" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome/shuttle) "dgB" = ( /turf/open/floor/strata, @@ -29851,10 +24463,7 @@ pixel_y = 20 }, /obj/structure/coatrack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "diD" = ( /obj/item/storage/surgical_tray, @@ -29863,10 +24472,7 @@ pixel_x = -4; pixel_y = 12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "diZ" = ( /obj/effect/decal/cleanable/blood, @@ -29883,25 +24489,19 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "djW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) "dks" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/interior/outpost/engi/drome/shuttle) "dkw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "dmd" = ( /obj/effect/particle_effect/steam, @@ -29918,10 +24518,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "dnR" = ( /obj/structure/machinery/light/small{ @@ -29930,18 +24527,13 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "dnS" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "doO" = ( /obj/structure/machinery/weather_siren{ @@ -29959,10 +24551,7 @@ /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) "drI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin2) "drQ" = ( /turf/open/gm/coast/east, @@ -29970,16 +24559,11 @@ "drS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) "dsx" = ( /obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/interior/outpost/engi/drome/shuttle) "dtt" = ( /obj/structure/stairs/perspective{ @@ -29988,10 +24572,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -30000,9 +24581,7 @@ /area/strata/ug/interior/jungle/deep/structures/engi) "duQ" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "dvf" = ( /obj/structure/platform/strata{ @@ -30022,36 +24601,23 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/engi/drome) "dvX" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "dwO" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "dyZ" = ( /obj/structure/holostool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "dzo" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "dBe" = ( /obj/structure/bed/chair/office/light{ @@ -30073,9 +24639,7 @@ "dBV" = ( /obj/structure/largecrate/random/case/double, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "dCb" = ( /obj/structure/machinery/power/reactor/colony, @@ -30090,10 +24654,7 @@ "dDr" = ( /obj/structure/bed/chair, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dDW" = ( /obj/structure/platform/strata{ @@ -30105,10 +24666,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) "dEa" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/gen/bball) "dEy" = ( /obj/structure/closet/secure_closet/medical3{ @@ -30118,10 +24676,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -30140,9 +24695,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "dFU" = ( /obj/structure/stairs/perspective{ @@ -30153,37 +24706,25 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "dGv" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "dGO" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ug/interior/jungle/platform/east/scrub) "dIh" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/tearlake) "dIE" = ( /obj/structure/prop/turbine_extras, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "dJV" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/sec1) "dKj" = ( /turf/closed/wall/strata_ice/jungle, @@ -30230,10 +24771,7 @@ /area/strata/ug/interior/jungle/deep/hotsprings) "dQi" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "dQq" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -30265,10 +24803,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/exterior/research_decks) "dTq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -30278,9 +24813,7 @@ /area/strata/ug/interior/jungle/deep/hotsprings) "dTN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "dUl" = ( /turf/open/auto_turf/strata_grass/layer0, @@ -30289,9 +24822,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "dWc" = ( /obj/structure/flora/pottedplant{ @@ -30306,9 +24837,7 @@ "dWu" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "dXc" = ( /obj/effect/landmark/static_comms/net_one, @@ -30319,9 +24848,7 @@ /area/strata/ug/interior/outpost/jung/dorms/med1) "dXV" = ( /obj/item/stack/snow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/paths/north_outpost) "dYK" = ( /obj/structure/sink{ @@ -30331,10 +24858,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med1) "dZl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -30343,9 +24867,7 @@ "dZm" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/border, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "eai" = ( /obj/structure/stairs/perspective{ @@ -30364,17 +24886,12 @@ /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/good_item, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "eeG" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "efR" = ( /obj/structure/cryofeed, @@ -30385,10 +24902,7 @@ color = "#6e6e6e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "efT" = ( /obj/effect/decal/cleanable/blood, @@ -30424,9 +24938,7 @@ pixel_y = 20 }, /obj/item/storage/secure/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec2) "ejw" = ( /obj/item/weapon/gun/pistol/t73, @@ -30438,17 +24950,11 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) "ekh" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec2) "eky" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "ekJ" = ( /turf/closed/wall/strata_ice/jungle, @@ -30456,10 +24962,7 @@ "ekZ" = ( /obj/item/storage/belt/knifepouch, /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "elr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -30483,9 +24986,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "eoK" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -30509,18 +25010,14 @@ /area/strata/ag/interior/tcomms) "eqS" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "era" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "erq" = ( /turf/open/gm/river, @@ -30543,9 +25040,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "euZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -30558,15 +25053,10 @@ "exx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "exO" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "eyA" = ( /obj/structure/machinery/light/small{ @@ -30575,15 +25065,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/vials, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "ezl" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/tcomms/tcomms_deck) "ezK" = ( /obj/structure/surface/table/reinforced/prison, @@ -30592,42 +25078,29 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "eBo" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "eBr" = ( /obj/structure/prop/dam/van, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) "eDc" = ( /obj/structure/bed, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "eDt" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/structure/machinery/door/window/eastright, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "eEO" = ( /obj/structure/prop/turbine_extras/left, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "eFa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "eFA" = ( /obj/effect/decal/cleanable/blood/oil, @@ -30640,27 +25113,18 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "eFG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "eFO" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "eGq" = ( /obj/structure/cryofeed, @@ -30678,9 +25142,7 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "eGF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -30708,9 +25170,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "eIT" = ( /obj/structure/closet/fireaxecabinet, @@ -30739,19 +25199,13 @@ /area/strata/ag/interior/outpost/engi/drome) "eLF" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "eLQ" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/west, /area/strata/ag/interior/outpost/med) "eMz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, @@ -30767,9 +25221,7 @@ "eNz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eNF" = ( /obj/structure/surface/table/almayer, @@ -30779,17 +25231,13 @@ pixel_y = 20 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eNL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "eNW" = ( /obj/structure/machinery/weather_siren{ @@ -30803,10 +25251,7 @@ /obj/structure/bed, /obj/structure/machinery/light/small, /obj/item/bedsheet/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "eOz" = ( /obj/effect/decal/cleanable/blood/oil, @@ -30821,16 +25266,11 @@ /turf/open/gm/river, /area/strata/ag/interior/restricted) "eOK" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "ePf" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "eRk" = ( /obj/structure/stairs/perspective{ @@ -30847,48 +25287,35 @@ name = "Emergency NanoMed"; pixel_x = 30 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eSs" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "eSx" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) "eSK" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/landingzone_checkpoint) "eSR" = ( /obj/structure/machinery/computer/emails, /obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eUW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/engi) "eVc" = ( /obj/structure/platform/strata/metal{ @@ -30905,9 +25332,7 @@ pixel_y = 20 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "eVI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -30915,9 +25340,7 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "eXK" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "eZw" = ( /obj/structure/bed/chair{ @@ -30930,15 +25353,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "fbG" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "fch" = ( /obj/structure/largecrate/random, @@ -30952,21 +25371,15 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "fhl" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/tcomms/tcomms_deck) "fhW" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/tcomms/tcomms_deck) "fil" = ( /obj/structure/machinery/weather_siren{ @@ -30976,9 +25389,7 @@ /area/strata/ag/interior/mountain) "fiD" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/tcomms/tcomms_deck) "fjZ" = ( /obj/structure/platform_decoration/strata{ @@ -30993,10 +25404,7 @@ /obj/structure/barricade/snow{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "fkD" = ( /turf/closed/shuttle/ert{ @@ -31013,9 +25421,7 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/outpost/med) "fli" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -31032,10 +25438,7 @@ /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) "fno" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "fow" = ( /obj/structure/machinery/light/small{ @@ -31044,10 +25447,7 @@ /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) "foN" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -31067,16 +25467,11 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "frL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "fst" = ( /obj/item/lightstick/red/spoke/planted{ @@ -31093,9 +25488,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/south_engi) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -31115,17 +25508,13 @@ pixel_y = 20 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "fuA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landingzone_1) "fuX" = ( /obj/effect/decal/cleanable/blood/gibs/limb, @@ -31140,10 +25529,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "fvt" = ( /obj/effect/decal/cleanable/blood, @@ -31155,9 +25541,7 @@ /area/strata/ug/interior/outpost/jung/dorms/sec1) "fwi" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -31167,19 +25551,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "fxO" = ( /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/jung/dorms/admin3) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -31193,16 +25571,11 @@ dir = 4 }, /obj/item/fuel_cell, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) "fzn" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin1) "fzz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -31222,9 +25595,7 @@ /area/strata/ug/interior/jungle/deep/structures/engi) "fzJ" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin3) "fzN" = ( /obj/structure/barricade/snow{ @@ -31246,10 +25617,7 @@ /area/strata/ag/exterior/research_decks) "fBk" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "fBu" = ( /obj/structure/sink{ @@ -31259,10 +25627,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin2) "fBC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -31273,10 +25638,7 @@ /area/strata/ag/exterior/research_decks) "fBY" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "fCo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -31317,9 +25679,7 @@ /area/strata/ug/interior/jungle/deep/east_engi) "fHp" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ @@ -31343,10 +25703,7 @@ /area/strata/ag/interior/tcomms) "fKt" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) "fKT" = ( /turf/open/gm/river, @@ -31368,10 +25725,7 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/bicaridine/skillless, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "fMr" = ( /obj/structure/machinery/light/small{ @@ -31396,10 +25750,7 @@ "fMS" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "fNs" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -31418,28 +25769,21 @@ /turf/open/floor/plating, /area/strata/ag/interior/tcomms) "fOX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/tcomms/tcomms_deck) "fPO" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) "fQG" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "fRa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "fRi" = ( /obj/structure/platform_decoration/strata{ @@ -31448,9 +25792,7 @@ /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) "fRv" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/crash) "fSr" = ( /obj/structure/machinery/weather_siren{ @@ -31469,15 +25811,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "fXU" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) "fXV" = ( /obj/structure/pipes/vents/pump{ @@ -31486,20 +25824,14 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "fYE" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/exterior/research_decks) "fZe" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -31532,16 +25864,11 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "gbU" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -31551,27 +25878,19 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "gfd" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "gfC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "gfI" = ( /obj/structure/bed/chair{ @@ -31582,17 +25901,11 @@ "ggr" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "ggH" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "ggJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -31602,20 +25915,14 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "gha" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/exterior/research_decks) "ghi" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -31628,18 +25935,13 @@ /obj/structure/machinery/door/window/eastright{ dir = 2 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "ghM" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "ghV" = ( /obj/structure/sign/safety/medical, @@ -31654,9 +25956,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "gih" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -31669,9 +25969,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "gjk" = ( /obj/structure/pipes/vents/pump, @@ -31695,10 +25993,7 @@ /area/strata/ag/exterior/marsh/center) "gjP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, @@ -31716,16 +26011,11 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "glG" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "glL" = ( /turf/open/auto_turf/snow/brown_base/layer1, @@ -31770,19 +26060,14 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "gqa" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "gqF" = ( /obj/structure/surface/table/reinforced/prison, @@ -31794,19 +26079,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "grd" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "grs" = ( /turf/closed/shuttle/ert{ @@ -31822,17 +26102,11 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "grP" = ( /obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) "gtZ" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -31863,9 +26137,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -31877,25 +26149,17 @@ /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "gvR" = ( /obj/structure/bookcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) "gAm" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) "gAv" = ( /obj/structure/surface/rack{ @@ -31936,10 +26200,7 @@ /area/strata/ag/interior/mountain) "gFf" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "gFH" = ( /obj/structure/cryofeed/right, @@ -31949,16 +26210,11 @@ "gFT" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "gGX" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "gHQ" = ( /obj/item/stack/sheet/wood, @@ -31979,10 +26235,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "gIY" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -32014,16 +26267,11 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red3" - }, +/turf/open/floor/strata/red3, /area/strata/ag/interior/outpost/med) "gOC" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/shed_five_caves) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -32033,9 +26281,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "gPL" = ( /obj/structure/inflatable, @@ -32054,15 +26300,10 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec2) "gRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/tcomms/tcomms_deck) "gRO" = ( /obj/structure/sign/nosmoking_1, @@ -32086,9 +26327,7 @@ "gTk" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "gTx" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -32112,10 +26351,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "gTZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -32125,10 +26361,7 @@ "gUj" = ( /obj/item/storage/toolbox/electrical, /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "gUp" = ( /obj/structure/machinery/light/small{ @@ -32159,9 +26392,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "gXX" = ( /obj/structure/surface/table/reinforced/prison, @@ -32169,21 +26400,15 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "gZp" = ( /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) "gZP" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "haw" = ( /obj/structure/surface/table/reinforced/prison, @@ -32191,17 +26416,13 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "haN" = ( /obj/structure/largecrate/random, /obj/item/trash/pistachios, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "haU" = ( /obj/structure/machinery/power/apc{ @@ -32217,17 +26438,11 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "hcg" = ( /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "hcO" = ( /obj/structure/machinery/light/small{ @@ -32239,16 +26454,10 @@ /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/jung/dorms/admin2) "hel" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "heO" = ( /obj/structure/sign/safety/bulkhead_door, @@ -32270,17 +26479,12 @@ pixel_x = -29 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin3) "hgI" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "hhW" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -32328,10 +26532,7 @@ "hmf" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "hms" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -32347,9 +26548,7 @@ /obj/structure/closet/secure_closet/personal, /obj/item/storage/secure/briefcase, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec2) "hni" = ( /obj/structure/surface/table/reinforced/prison, @@ -32359,9 +26558,7 @@ /obj/effect/spawner/random/toolbox{ pixel_y = 12 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "hpe" = ( /obj/structure/largecrate/hunter_games_ammo/good, @@ -32369,9 +26566,7 @@ /area/strata/ag/exterior/marsh) "hpD" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/med2) "hqw" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -32388,9 +26583,7 @@ /obj/structure/surface/rack, /obj/effect/landmark/good_item, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "hsV" = ( /obj/structure/machinery/space_heater, @@ -32420,18 +26613,13 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "hvj" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/west, /area/strata/ag/interior/outpost/med) "hwD" = ( /obj/structure/platform/strata/metal{ @@ -32449,10 +26637,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, @@ -32462,16 +26647,11 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "hCp" = ( /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "hDX" = ( /obj/structure/stairs/perspective{ @@ -32488,10 +26668,7 @@ /area/strata/ag/interior/outpost/canteen) "hEF" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "hFm" = ( /turf/open/gm/coast/beachcorner2/north_west, @@ -32500,9 +26677,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red3" - }, +/turf/open/floor/strata/red3, /area/strata/ag/interior/outpost/med) "hGm" = ( /obj/structure/stairs/perspective{ @@ -32529,10 +26704,7 @@ "hHm" = ( /obj/item/stack/rods, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "hHK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -32543,35 +26715,24 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "hIb" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) "hIt" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med1) "hJC" = ( /obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ug/interior/jungle/platform/east/scrub) "hJE" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_dorms) "hJT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/paths/north_outpost) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, @@ -32586,19 +26747,13 @@ /area/strata/ug/exterior/jungle/deep/carplake_center) "hOw" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "hOD" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "hPr" = ( /turf/open/auto_turf/ice/layer2, @@ -32612,10 +26767,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -32628,19 +26780,14 @@ /area/strata/ag/exterior/marsh/crash) "hTU" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "hTX" = ( /obj/structure/window/reinforced/tinted, /obj/item/device/flashlight/lamp, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -32683,10 +26830,7 @@ pixel_x = -23; start_charge = 0 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) "ibH" = ( /obj/item/trash/pistachios, @@ -32706,9 +26850,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "icG" = ( /obj/item/lightstick/red/spoke/planted{ @@ -32725,17 +26867,13 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/tearlake) "idq" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -32751,28 +26889,19 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/strata/ag/interior/dorms) "ihd" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "ihy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "ijo" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -32791,9 +26920,7 @@ /area/strata/ag/exterior/marsh) "imV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "imZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -32805,17 +26932,13 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "ioi" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ug/interior/jungle/platform/east/scrub) "ioz" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "ioM" = ( /obj/structure/surface/table/almayer, @@ -32827,9 +26950,7 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "iqe" = ( /obj/item/lightstick, @@ -32865,10 +26986,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/landingzone_checkpoint) "isa" = ( /turf/open/floor/strata, @@ -32883,15 +27001,10 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) "isu" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/landingzone_checkpoint) "isY" = ( /obj/structure/machinery/space_heater, @@ -32907,19 +27020,14 @@ /area/strata/ag/interior/outpost/med) "itG" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "iuf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "iuh" = ( /obj/structure/sink{ @@ -32930,10 +27038,7 @@ pixel_x = -29 }, /obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "iuB" = ( /obj/structure/machinery/light/small{ @@ -32954,9 +27059,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "iws" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, @@ -32968,10 +27071,7 @@ "ixb" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -32986,23 +27086,15 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) "ixD" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "ixQ" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "ixS" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "iym" = ( /obj/structure/barricade/handrail/strata{ @@ -33011,17 +27103,13 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/marsh) "izc" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "iAA" = ( /obj/structure/machinery/power/apc{ @@ -33049,9 +27137,7 @@ /area/strata/ug/interior/jungle/deep/tearlake) "iBV" = ( /obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "iBZ" = ( /obj/effect/landmark/objective_landmark/medium, @@ -33080,16 +27166,12 @@ /area/strata/ug/interior/outpost/jung/dorms/med1) "iGN" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "iGR" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "iHX" = ( /obj/structure/largecrate/random/case/double, @@ -33138,19 +27220,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "iLr" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) "iLJ" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "iMn" = ( /obj/structure/surface/rack{ @@ -33161,10 +27238,7 @@ "iMP" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "iNe" = ( /obj/structure/pipes/vents/pump{ @@ -33176,26 +27250,18 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "iOi" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/tcomms) "iPd" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "iPw" = ( /mob/living/simple_animal/hostile/retaliate/clown{ @@ -33211,16 +27277,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/vanyard) "iQt" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -33262,27 +27324,21 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "iVZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "iWi" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "iWG" = ( /obj/structure/barricade/snow, @@ -33315,23 +27371,15 @@ }, /obj/item/storage/fancy/vials, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "iZr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ug/interior/jungle/platform/east/scrub) "iZw" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "iZI" = ( /obj/effect/decal/cleanable/greenglow, @@ -33339,10 +27387,7 @@ /area/strata/ag/exterior/research_decks) "jam" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "jaZ" = ( /obj/structure/cargo_container/wy/mid{ @@ -33373,26 +27418,19 @@ /area/strata/ag/interior/outpost/security) "jeF" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "jeZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "jfh" = ( /obj/item/fuel_cell, /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "jgX" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -33402,9 +27440,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) "jhl" = ( /obj/structure/machinery/weather_siren{ @@ -33415,22 +27451,15 @@ /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) "jit" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ag/exterior/landingzone_2) "jiQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "jjw" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "jjJ" = ( /turf/closed/wall/strata_outpost, @@ -33446,10 +27475,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "jkf" = ( /obj/structure/closet/secure_closet/medical3{ @@ -33458,35 +27484,21 @@ /obj/item/storage/pill_bottle/imidazoline, /obj/item/storage/pill_bottle/imidazoline, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "jkp" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "jmy" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/vanyard) "jmH" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "jmP" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "jnH" = ( /obj/structure/prop/dam/drill, @@ -33504,10 +27516,7 @@ /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/jung/dorms/sec2) "jrw" = ( /obj/structure/barricade/wooden{ @@ -33521,23 +27530,16 @@ /area/strata/ag/exterior/paths/cabin_area) "jrU" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "jsd" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "jso" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "jsw" = ( /obj/structure/closet/bodybag, @@ -33561,16 +27563,11 @@ /obj/structure/surface/rack{ layer = 2.5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "jtB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin2) "juY" = ( /obj/effect/decal/cleanable/dirt, @@ -33588,20 +27585,14 @@ /area/strata/ag/interior/outpost/admin) "jyq" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms/south) "jyE" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "jyO" = ( /obj/structure/stairs/perspective{ @@ -33612,10 +27603,7 @@ /area/strata/ag/exterior/research_decks) "jzD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "jAo" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -33628,22 +27616,15 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "jBp" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "jBO" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "jCE" = ( /obj/effect/decal/cleanable/blood/oil, @@ -33651,10 +27632,7 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "jCU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin1) "jDr" = ( /obj/structure/machinery/light/small{ @@ -33672,10 +27650,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -33694,10 +27669,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) "jFO" = ( /obj/effect/landmark/static_comms/net_two, @@ -33711,9 +27683,7 @@ pixel_y = 20 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "jIz" = ( /obj/structure/machinery/weather_siren{ @@ -33725,10 +27695,7 @@ /area/strata/ag/interior/tcomms) "jJv" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) "jJy" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -33738,17 +27705,13 @@ /area/strata/ug/interior/jungle/deep/tearlake) "jKf" = ( /obj/structure/largecrate/random/secure, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/tcomms/tcomms_deck) "jKi" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "jLb" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -33762,9 +27725,7 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "jMD" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -33779,16 +27740,11 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) "jMV" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "jNJ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "jOp" = ( /obj/structure/machinery/light/small{ @@ -33806,18 +27762,13 @@ /obj/structure/machinery/door/airlock/almayer/command{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "jPQ" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "jPT" = ( /obj/item/fuel_cell, @@ -33825,9 +27776,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, @@ -33841,10 +27790,7 @@ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -33868,17 +27814,12 @@ icon_state = "xgib2" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "jVU" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "jWi" = ( /obj/structure/surface/table/reinforced/prison, @@ -33888,17 +27829,13 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "jWk" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "jWs" = ( /turf/open/floor/plating, @@ -33914,10 +27851,7 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "jXQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -33927,10 +27861,7 @@ /area/strata/ag/exterior/marsh/crash) "jXV" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/bball) "kaw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -33939,18 +27870,13 @@ "kaP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "kbS" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "kbU" = ( /obj/effect/decal/cleanable/blood, @@ -33979,24 +27905,17 @@ /area/strata/ug/interior/outpost/jung/dorms/med2) "kdm" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) "kdK" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "keg" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/med1) "kes" = ( /obj/structure/surface/table/reinforced/prison, @@ -34007,27 +27926,20 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "kfm" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "kfN" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "kgC" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -34037,9 +27949,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "kgQ" = ( /obj/item/stack/sheet/metal/medium_stack, @@ -34083,9 +27993,7 @@ color = "#6e6e6e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "klG" = ( /obj/structure/surface/table/reinforced/prison, @@ -34093,27 +28001,20 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "kmt" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/engi) "knJ" = ( /obj/structure/machinery/door/airlock/prison{ dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/outpost/jung/dorms/sec1) "koj" = ( /turf/closed/wall/strata_ice/dirty, @@ -34127,10 +28028,7 @@ dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/outpost/jung/dorms/med1) "krg" = ( /obj/structure/machinery/light/small{ @@ -34139,19 +28037,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "krm" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "ksA" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -34165,9 +28058,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "kvY" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -34176,9 +28067,7 @@ "kwu" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/static_comms/net_two, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/tcomms/tcomms_deck) "kwU" = ( /obj/structure/platform/strata/metal{ @@ -34223,9 +28112,7 @@ /area/strata/ug/interior/jungle/deep/tearlake) "kzc" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "kzk" = ( /obj/structure/surface/table/reinforced/prison, @@ -34234,16 +28121,11 @@ /area/strata/ag/interior/outpost/engi/drome) "kzD" = ( /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "kAn" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -34252,16 +28134,11 @@ "kCa" = ( /obj/structure/surface/rack, /obj/item/book/manual/engineering_guide, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "kCf" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "kCk" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, @@ -34269,10 +28146,7 @@ /area/strata/ag/exterior/marsh/center) "kDb" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "kEl" = ( /obj/structure/closet/secure_closet/personal, @@ -34284,9 +28158,7 @@ icon_state = "xgib6" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin2) "kGV" = ( /obj/effect/landmark/monkey_spawn, @@ -34320,9 +28192,7 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) "kIW" = ( /obj/structure/bed/chair{ @@ -34350,9 +28220,7 @@ /area/strata/ug/interior/jungle/deep/south_engi) "kNZ" = ( /obj/structure/inflatable, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/tcomms/tcomms_deck) "kOr" = ( /obj/structure/machinery/light/small{ @@ -34363,10 +28231,7 @@ /area/strata/ag/interior/tcomms) "kPl" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/platform/east/scrub) "kPC" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -34379,16 +28244,11 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "kPM" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin1) "kQu" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -34400,9 +28260,7 @@ pixel_y = -2 }, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -34418,18 +28276,14 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "kRY" = ( /obj/structure/morgue, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "kSs" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -34456,9 +28310,7 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "kUi" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "kUs" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -34476,10 +28328,7 @@ /area/strata/ag/exterior/paths/southresearch) "kXi" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "kXx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -34490,10 +28339,7 @@ /area/strata/ag/exterior/paths/cabin_area) "kXR" = ( /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -34508,9 +28354,7 @@ /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) "kYx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/landingzone_2) "kZL" = ( /obj/structure/platform/strata/metal{ @@ -34528,10 +28372,7 @@ "lax" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/donkpockets, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "laF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -34551,9 +28392,7 @@ /area/strata/ag/exterior/tcomms/tcomms_deck) "lbW" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "lcq" = ( /obj/item/clothing/suit/storage/militia, @@ -34610,10 +28449,7 @@ /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, /obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "lij" = ( /obj/structure/window/reinforced/tinted{ @@ -34621,9 +28457,7 @@ }, /obj/structure/closet/secure_closet/personal, /obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) "liK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -34632,16 +28466,12 @@ "ljg" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/closet/bodybag/tarp, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ug/interior/outpost/jung/dorms/admin3) "lkl" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34660,10 +28490,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34677,16 +28504,11 @@ /area/strata/ug/interior/jungle/deep/south_engi) "loN" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) "loP" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) "lpk" = ( /obj/structure/bed{ @@ -34717,10 +28539,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin3) "lqD" = ( /obj/structure/machinery/light/small{ @@ -34775,9 +28594,7 @@ color = "#6e6e6e"; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "lvF" = ( /turf/open/gm/coast/south, @@ -34787,9 +28604,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) "lxp" = ( /obj/structure/machinery/photocopier, @@ -34830,10 +28645,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "lAc" = ( /turf/closed/wall/wood, @@ -34854,16 +28666,11 @@ /area/strata/ag/interior/tcomms) "lEo" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "lFy" = ( /obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "lFG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -34873,9 +28680,7 @@ /area/strata/ag/exterior/marsh) "lGv" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, @@ -34883,10 +28688,7 @@ /area/strata/ag/interior/nearlz1) "lHH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/landingzone_checkpoint) "lHO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -34924,10 +28726,7 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin2) "lKv" = ( /turf/open/floor/strata, @@ -34945,9 +28744,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "lNr" = ( /obj/structure/surface/rack, @@ -34974,9 +28771,7 @@ pixel_y = -4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "lOT" = ( /obj/effect/particle_effect/steam, @@ -34993,9 +28788,7 @@ "lPk" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -35013,10 +28806,7 @@ /area/strata/ag/interior/landingzone_checkpoint) "lRa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ @@ -35034,25 +28824,19 @@ /area/strata/ug/interior/jungle/deep/south_engi) "lTX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/tcomms/tcomms_deck) "lUg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "lUm" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "lUu" = ( /obj/effect/decal/warning_stripes{ @@ -35061,9 +28845,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "lUw" = ( /obj/item/weapon/gun/pistol/t73, @@ -35083,27 +28865,20 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "lXd" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/marsh) "lZc" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) "lZd" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "lZf" = ( /turf/open/auto_turf/ice/layer2, @@ -35117,31 +28892,22 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "maP" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "mce" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "mcD" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "mcX" = ( /obj/structure/surface/rack, @@ -35154,10 +28920,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "mde" = ( /obj/structure/platform_decoration/strata{ @@ -35170,16 +28933,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "mdK" = ( /obj/item/storage/belt/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "mem" = ( /obj/structure/stairs/perspective{ @@ -35187,9 +28946,7 @@ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "meu" = ( /obj/effect/decal/warning_stripes{ @@ -35198,9 +28955,7 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "meS" = ( /obj/structure/machinery/light/small{ @@ -35208,9 +28963,7 @@ pixel_y = 20 }, /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin2) "mfp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -35219,10 +28972,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "mfW" = ( /obj/structure/stairs/perspective{ @@ -35230,9 +28980,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, @@ -35244,10 +28992,7 @@ color = "#6e6e6e"; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "mip" = ( /obj/structure/platform/strata{ @@ -35273,19 +29018,14 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "miR" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "mjp" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -35306,10 +29046,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "mjJ" = ( /obj/effect/spawner/random/toolbox, @@ -35317,29 +29054,21 @@ /area/strata/ag/exterior/research_decks) "mjR" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "mlq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "mms" = ( /obj/effect/glowshroom, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "mmF" = ( /obj/effect/landmark/monkey_spawn, @@ -35347,27 +29076,19 @@ /area/strata/ug/exterior/jungle/deep/carplake_center) "mnq" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "mnY" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "mow" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "mpk" = ( /turf/closed/shuttle/ert{ @@ -35378,10 +29099,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "mpr" = ( /obj/structure/sign/safety/maint, @@ -35389,33 +29107,22 @@ /area/strata/ag/interior/tcomms) "mqs" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "mqQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "mrp" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "mrz" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "mrG" = ( /obj/item/clothing/shoes/snow, @@ -35428,10 +29135,7 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/north_outpost) "mrT" = ( /obj/structure/machinery/weather_siren{ @@ -35446,10 +29150,7 @@ "msC" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "msG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -35476,10 +29177,7 @@ dir = 6 }, /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "mwt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -35494,19 +29192,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "mxu" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "myk" = ( /obj/structure/sign/safety/storage, @@ -35519,18 +29211,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "mBb" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "mBl" = ( /obj/structure/reagent_dispensers/watertank, @@ -35540,20 +29228,14 @@ /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) "mCx" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "mCK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "mDF" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, @@ -35568,23 +29250,15 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh) "mEL" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/exterior/research_decks) "mFh" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/tcomms/tcomms_deck) "mGA" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "mHo" = ( /obj/structure/largecrate/random, @@ -35616,10 +29290,7 @@ /area/strata/ag/exterior/shed_five_caves) "mKv" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "mKA" = ( /obj/structure/surface/table/reinforced/prison, @@ -35629,24 +29300,18 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "mKX" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) "mLe" = ( /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/strata/ag/interior/landingzone_checkpoint) "mLn" = ( /turf/closed/wall/strata_ice/jungle, @@ -35666,16 +29331,11 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/exterior/jungle/deep/carplake_center) "mLW" = ( /obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "mMp" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -35692,10 +29352,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "mOj" = ( /obj/structure/surface/rack, @@ -35704,10 +29361,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -35734,16 +29388,11 @@ "mQg" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/interior/outpost/engi/drome/shuttle) "mQE" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "mQR" = ( /obj/structure/inflatable/popped, @@ -35753,17 +29402,12 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "mSK" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/interior/outpost/engi/drome/shuttle) "mUD" = ( /turf/closed/shuttle/ert{ @@ -35786,18 +29430,13 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin2) "mWT" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "mYs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -35807,9 +29446,7 @@ /area/strata/ag/exterior/marsh) "mYN" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh) "mYX" = ( /obj/structure/machinery/shower{ @@ -35818,54 +29455,37 @@ /obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/med1) "mZd" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/gen/foyer) "nai" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "ncp" = ( /obj/structure/desertdam/decals/road_stop, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "ndC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "ndS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "neL" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "nfK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -35883,9 +29503,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -35937,24 +29555,17 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "npy" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) "npS" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh) "npW" = ( /obj/structure/stairs/perspective{ @@ -35963,9 +29574,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red3" - }, +/turf/open/floor/strata/red3, /area/strata/ag/interior/outpost/med) "npX" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -35994,24 +29603,18 @@ pixel_y = 20 }, /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin3) "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_carp) "nsB" = ( /obj/structure/closet/coffin, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "ntu" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -36037,9 +29640,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ug/interior/jungle/platform/east/scrub) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -36073,10 +29674,7 @@ /area/strata/ag/exterior/marsh/center) "nCJ" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "nDj" = ( /obj/structure/bookcase{ @@ -36093,17 +29691,11 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "nFN" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "nGi" = ( /obj/structure/cargo_container/grant/left, @@ -36117,19 +29709,13 @@ /area/strata/ag/exterior/marsh) "nIf" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "nIS" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "nJK" = ( /turf/closed/wall/strata_ice/dirty, @@ -36148,17 +29734,12 @@ /obj/structure/surface/rack, /obj/item/book/manual/orbital_cannon_manual, /obj/item/book/manual/research_and_development, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "nOE" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "nPb" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -36179,17 +29760,12 @@ /area/strata/ag/interior/outpost/engi/drome) "nPW" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/crash) "nQk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "nQE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -36214,18 +29790,13 @@ /area/strata/ag/exterior/marsh) "nST" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "nTf" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "nTD" = ( /obj/structure/toilet{ @@ -36235,10 +29806,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med2) "nTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -36255,25 +29823,18 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "nUX" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "nVt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/dorms) "nWv" = ( /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "nWX" = ( /obj/structure/bed/roller, @@ -36303,16 +29864,11 @@ /area/strata/ag/exterior/marsh) "ocE" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "ocH" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/marsh/crash) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -36321,24 +29877,17 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "odr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "odB" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "odJ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi/drome) "oeA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) "oeH" = ( /obj/structure/surface/table/reinforced/prison, @@ -36355,19 +29904,13 @@ /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_carp) "oeQ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) "oeT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) "ofd" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -36378,18 +29921,14 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "oiF" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) "oiV" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -36416,19 +29955,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "olH" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -36444,10 +29978,7 @@ pixel_y = 20 }, /obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "opg" = ( /obj/structure/machinery/power/terminal{ @@ -36461,10 +29992,7 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "oqA" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "oqJ" = ( /obj/structure/inflatable/popped/door, @@ -36499,9 +30027,7 @@ /area/strata/ag/interior/outpost/engi) "ouJ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "oxE" = ( /obj/structure/surface/rack, @@ -36519,10 +30045,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med2) "oyy" = ( /obj/structure/bookcase{ @@ -36537,17 +30060,11 @@ /area/strata/ug/interior/jungle/deep/structures/engi) "oBn" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) "oBv" = ( /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "oCc" = ( /obj/item/fuel_cell, @@ -36557,9 +30074,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -36574,47 +30089,34 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "oFG" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "oGW" = ( /obj/structure/machinery/light/small, /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/nearlz2) "oHN" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "oIi" = ( /obj/structure/filingcabinet, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "oIv" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "oIx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin2) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -36624,9 +30126,7 @@ /area/strata/ug/interior/jungle/deep/west_engi) "oJD" = ( /obj/item/stack/rods, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -36639,9 +30139,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/research_decks) "oLv" = ( /obj/effect/decal/cleanable/blood{ @@ -36654,25 +30152,18 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "oMa" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "oMZ" = ( /obj/structure/toilet{ dir = 8 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "oOB" = ( /obj/item/clothing/shoes/snow, @@ -36684,19 +30175,13 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "oOX" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "oPz" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -36707,9 +30192,7 @@ /turf/open/floor/plating, /area/strata/ag/interior/tcomms) "oPN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ug/interior/jungle/platform/east/scrub) "oPQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -36721,28 +30204,20 @@ /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "oQv" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/crash) "oRm" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "oSN" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/platform/east/scrub) "oSP" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -36758,9 +30233,7 @@ /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) "oUS" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -36774,9 +30247,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "oWD" = ( /obj/structure/machinery/light/small{ @@ -36785,10 +30256,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "oWO" = ( /obj/structure/window/reinforced/tinted{ @@ -36796,9 +30264,7 @@ }, /obj/structure/closet/secure_closet/personal, /obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) "oWQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -36815,16 +30281,11 @@ /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "oZt" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "oZD" = ( /obj/item/lightstick, @@ -36844,10 +30305,7 @@ /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "pbF" = ( /obj/structure/platform/strata/metal{ @@ -36875,9 +30333,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/nearlz1) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -36887,18 +30343,14 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "pgW" = ( /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "piu" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint/canteen_e_1) "piD" = ( /obj/structure/surface/table/reinforced/prison, @@ -36935,10 +30387,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "pkO" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -36947,28 +30396,20 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "pmC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "pmT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "pnP" = ( /obj/structure/machinery/shower{ @@ -36981,10 +30422,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin1) "poc" = ( /obj/structure/bed/chair{ @@ -36993,29 +30431,18 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "ppe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "ppA" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "ppC" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -37054,10 +30481,7 @@ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -37072,19 +30496,13 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "psQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "psR" = ( /obj/item/lightstick/red/spoke/planted{ @@ -37101,9 +30519,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/east_carp) "psV" = ( /obj/effect/particle_effect/steam, @@ -37118,10 +30534,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "ptT" = ( /turf/closed/wall/strata_outpost, @@ -37130,47 +30543,32 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "puV" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "puX" = ( /obj/structure/closet/lawcloset, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) "pvY" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "pwn" = ( /obj/structure/largecrate/guns/russian, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "pwz" = ( /obj/structure/bed/chair/office/light{ @@ -37179,10 +30577,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -37199,10 +30594,7 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "pzt" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "pAc" = ( /turf/closed/wall/strata_outpost, @@ -37214,16 +30606,11 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "pDb" = ( /obj/structure/dropship_equipment/sentry_holder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "pDz" = ( /turf/closed/shuttle/ert{ @@ -37233,19 +30620,14 @@ /area/strata/ag/interior/outpost/engi/drome/shuttle) "pDJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "pDQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome/shuttle) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ @@ -37265,20 +30647,14 @@ /area/strata/ug/interior/outpost/jung/dorms/admin1) "pEo" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "pEF" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) "pEM" = ( /obj/structure/barricade/wooden, @@ -37286,9 +30662,7 @@ /area/strata/ag/exterior/paths/southresearch) "pEY" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "pFi" = ( /obj/structure/largecrate/random/barrel/green, @@ -37296,9 +30670,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome/shuttle) "pGf" = ( /obj/structure/machinery/power/apc{ @@ -37325,10 +30697,7 @@ "pGC" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "pHR" = ( /turf/open/gm/dirt, @@ -37345,10 +30714,7 @@ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "pJz" = ( /obj/structure/platform/strata/metal{ @@ -37372,19 +30738,13 @@ /area/strata/ug/interior/jungle/deep/south_engi) "pLE" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "pMU" = ( /obj/structure/tunnel/maint_tunnel{ pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) "pNL" = ( /obj/structure/stairs/perspective{ @@ -37405,25 +30765,18 @@ /obj/item/lightstick, /obj/item/lightstick, /obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) "pOH" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/admin2) "pOW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -37447,9 +30800,7 @@ "pSc" = ( /obj/structure/closet/coffin, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "pSm" = ( /obj/structure/surface/rack{ @@ -37483,16 +30834,11 @@ dir = 4; pixel_x = -10 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "pVq" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/tcomms) "pWp" = ( /obj/structure/platform_decoration/strata{ @@ -37509,24 +30855,15 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/tcomms) "pXB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "pYI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin1) "pYM" = ( /obj/item/stack/sheet/wood, @@ -37544,9 +30881,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "qbA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -37561,9 +30896,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -37586,10 +30919,7 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "qer" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin1) "qeH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -37602,10 +30932,7 @@ dir = 8 }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "qfi" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -37620,10 +30947,7 @@ /area/strata/ag/interior/tcomms) "qfM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "qfN" = ( /obj/structure/largecrate/random/secure, @@ -37634,10 +30958,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/landingzone_checkpoint) "qhp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -37648,42 +30969,28 @@ /obj/structure/machinery/door/airlock/strata/autoname{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/restricted/devroom) "qjD" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/marsh) "qks" = ( /obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "qkS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/marsh) "qkU" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/marsh) "qlq" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "qmw" = ( /obj/structure/sign/safety/storage, @@ -37692,20 +30999,14 @@ "qmW" = ( /obj/structure/largecrate/random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "qns" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med1) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -37727,15 +31028,11 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/east_engi) "qrz" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ug/interior/jungle/platform/east/scrub) "qsI" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -37743,10 +31040,7 @@ /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) "qsZ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/adminext) "qtn" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -37762,10 +31056,7 @@ /area/strata/ag/exterior/marsh/center) "quT" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, @@ -37776,10 +31067,7 @@ dir = 5 }, /obj/structure/closet/crate/radiation, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qwx" = ( /obj/structure/bed{ @@ -37787,10 +31075,7 @@ }, /obj/structure/window/reinforced/tinted, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "qwM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -37811,10 +31096,7 @@ /area/strata/ug/interior/jungle/deep/tearlake) "qxt" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) "qxD" = ( /obj/structure/machinery/weather_siren{ @@ -37833,19 +31115,14 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "qAr" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/sec2) "qBd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -37854,17 +31131,11 @@ "qBg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qCv" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qDg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -37872,31 +31143,21 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "qDI" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qFH" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "qFY" = ( /obj/structure/machinery/door/airlock/prison{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "qGK" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "qHo" = ( /obj/effect/decal/cleanable/blood{ @@ -37910,15 +31171,11 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "qJi" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "qJC" = ( /obj/effect/decal/cleanable/blood, @@ -37932,19 +31189,14 @@ /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "qLp" = ( /obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qMF" = ( /obj/structure/pipes/vents/pump/on, @@ -37958,35 +31210,22 @@ /area/strata/ag/exterior/research_decks) "qMQ" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "qNi" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "qNS" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "qOj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "qOm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "qOt" = ( /obj/structure/closet/bodybag, @@ -37998,23 +31237,15 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec2) "qON" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "qOZ" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "qPl" = ( /obj/structure/machinery/light/small{ @@ -38022,10 +31253,7 @@ pixel_y = 20 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "qQq" = ( /obj/structure/closet/bodybag, @@ -38034,9 +31262,7 @@ /area/strata/ag/exterior/research_decks) "qQu" = ( /obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) "qQN" = ( /obj/structure/closet/bodybag, @@ -38052,9 +31278,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "qSo" = ( /turf/closed/shuttle/ert{ @@ -38095,10 +31319,7 @@ "qTV" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) "qUB" = ( /obj/structure/bed/chair{ @@ -38111,19 +31332,14 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) "qUW" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) "qWC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "qWD" = ( /turf/closed/wall/strata_ice/dirty, @@ -38131,10 +31347,7 @@ "qWQ" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) "qXN" = ( /obj/structure/platform/strata/metal{ @@ -38148,10 +31361,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "qYm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -38177,9 +31387,7 @@ "rba" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -38202,10 +31410,7 @@ dir = 4 }, /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "reb" = ( /obj/structure/stairs/perspective{ @@ -38229,18 +31434,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "rfB" = ( /obj/structure/machinery/power/reactor/colony, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/shed_five_caves) "rgt" = ( /obj/structure/stairs/perspective{ @@ -38248,17 +31447,11 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/minehead) "rgz" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "rgH" = ( /obj/structure/barricade/snow{ @@ -38272,26 +31465,20 @@ dir = 4 }, /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) "rhk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landingzone_1) "rhJ" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ug/interior/jungle/platform/east/scrub) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -38312,10 +31499,7 @@ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "riY" = ( /obj/structure/pipes/vents/pump{ @@ -38332,10 +31516,7 @@ /area/strata/ug/interior/outpost/jung/dorms/admin2) "rjn" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -38344,35 +31525,24 @@ "rkb" = ( /obj/item/clothing/glasses/thermal/syndi, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "rkq" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "rkI" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/platform/east/scrub) "rno" = ( /obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "rok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -38390,15 +31560,10 @@ dir = 2; name = "Medical Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "rpX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/platform/east/scrub) "rqL" = ( /obj/item/tool/wrench, @@ -38438,10 +31603,7 @@ /area/strata/ug/interior/jungle/deep/south_engi) "rwD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "rxp" = ( /turf/closed/wall/strata_outpost, @@ -38471,28 +31633,21 @@ /turf/open/floor/strata, /area/strata/ag/interior/mountain) "ryK" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "rzx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /obj/item/reagent_container/food/drinks/cans/beer, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "rzG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "rAv" = ( /obj/structure/platform/strata{ @@ -38506,9 +31661,7 @@ dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "rEr" = ( /obj/structure/platform/strata/metal{ @@ -38535,10 +31688,7 @@ "rHs" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -38550,17 +31700,12 @@ /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/north_carp) "rJf" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/engi) "rJz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "rKG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -38570,24 +31715,17 @@ dir = 4 }, /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan4" - }, +/turf/open/floor/strata/cyan4/east, /area/strata/ag/interior/outpost/med) "rLn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "rLZ" = ( /obj/effect/spawner/random/toolbox{ pixel_y = 12 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/strata/ag/interior/outpost/engi/drome/shuttle) "rMv" = ( /turf/closed/shuttle/ert{ @@ -38602,16 +31740,12 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "rMP" = ( /obj/structure/closet/coffin, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "rNI" = ( /turf/open/auto_turf/ice/layer1, @@ -38638,9 +31772,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "rQX" = ( /obj/structure/platform/strata{ @@ -38657,9 +31789,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -38673,24 +31803,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "rTC" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "rUn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "rUQ" = ( /obj/structure/stairs/perspective{ @@ -38702,10 +31825,7 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "rWk" = ( /obj/structure/sink{ @@ -38715,10 +31835,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec2) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -38737,10 +31854,7 @@ /obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/shed_five_caves) "saY" = ( /turf/open/gm/river, @@ -38759,18 +31873,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "scp" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /obj/item/fuel_cell, -/turf/open/floor/strata{ - icon_state = "red2" - }, +/turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -38782,9 +31892,7 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "sgq" = ( /obj/structure/bed{ @@ -38813,17 +31921,11 @@ }, /obj/item/explosive/grenade/high_explosive/upp, /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/platform/east/scrub) "sip" = ( /obj/structure/inflatable, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "sjp" = ( /obj/structure/flora/pottedplant{ @@ -38832,10 +31934,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "ski" = ( /obj/structure/surface/table/reinforced/prison, @@ -38847,19 +31946,14 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "skJ" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "sly" = ( /obj/structure/disposalpipe/segment{ @@ -38872,10 +31966,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "smd" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -38905,18 +31996,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/platform/east/scrub) "soD" = ( /obj/item/fuel_cell, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "spp" = ( /obj/item/weapon/gun/pistol/t73, @@ -38931,9 +32018,7 @@ /area/strata/ug/interior/jungle/platform/east/scrub) "srQ" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "ssd" = ( /turf/open/gm/coast/east, @@ -38947,15 +32032,10 @@ }, /obj/structure/window/reinforced/tinted, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "ssE" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/vanyard) "stf" = ( /turf/open/gm/coast/west, @@ -38971,17 +32051,12 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "svP" = ( /obj/structure/fence, /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/tcomms/tcomms_deck) "sxr" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -38997,9 +32072,7 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "sya" = ( /obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "syU" = ( /obj/structure/machinery/space_heater, @@ -39017,9 +32090,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "sAv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -39029,23 +32100,16 @@ color = "#6e6e6e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "sBg" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "sCa" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "sDs" = ( /obj/structure/flora/pottedplant{ @@ -39056,18 +32120,13 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "sDE" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "sEG" = ( /obj/structure/platform_decoration/strata{ @@ -39087,9 +32146,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "sGJ" = ( /obj/structure/machinery/light/small{ @@ -39101,10 +32158,7 @@ "sGR" = ( /obj/effect/decal/cleanable/blood, /obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "sHP" = ( /turf/closed/wall/strata_outpost, @@ -39131,16 +32185,11 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) "sOB" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "sPc" = ( /turf/closed/wall/strata_ice/dirty, @@ -39154,18 +32203,13 @@ pixel_y = 20 }, /obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/platform/east/scrub) "sQs" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/landingzone_2) "sQA" = ( /obj/effect/landmark/good_item, @@ -39173,25 +32217,18 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin2) "sQK" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "sRz" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "sRR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -39200,39 +32237,28 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) "sRX" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "sSv" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/marsh) "sSZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms) "sWO" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/marsh) "sXl" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "sXt" = ( /obj/structure/bed/chair{ @@ -39248,10 +32274,7 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/shed_five_caves) "sXF" = ( /obj/effect/particle_effect/steam, @@ -39278,47 +32301,32 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "taa" = ( /obj/structure/filingcabinet, /obj/structure/barricade/handrail/strata, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "taL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "taW" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/platform/east/scrub) "tdn" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "tdr" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "tdB" = ( /obj/item/explosive/grenade/high_explosive/upp, @@ -39326,10 +32334,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin2) "teI" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -39340,9 +32345,7 @@ "tfB" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/north_lz_caves) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -39354,10 +32357,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) "tgC" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -39373,10 +32373,7 @@ color = "#6e6e6e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "thz" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -39387,9 +32384,7 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "tiE" = ( /obj/structure/barricade/handrail/strata{ @@ -39398,15 +32393,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/stack/cable_coil/blue, /obj/item/stack/cable_coil/blue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) "tiU" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "tjo" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -39424,27 +32415,20 @@ /obj/item/storage/box/gloves, /obj/item/storage/box/pillbottles, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "tlo" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "tlJ" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "tmi" = ( /obj/item/stack/sheet/wood, @@ -39457,22 +32441,15 @@ name = "slab of triumph"; pixel_y = 2 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "tmB" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin1) "tnM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ug/interior/jungle/platform/east/scrub) "toV" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -39491,10 +32468,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "tru" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -39522,10 +32496,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/exterior/research_decks) "tsX" = ( /obj/structure/platform/strata/metal{ @@ -39548,9 +32519,7 @@ /area/strata/ag/exterior/paths/north_outpost) "tuV" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) "tvk" = ( /obj/structure/platform/strata/metal{ @@ -39570,27 +32539,20 @@ /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/strata/ug/interior/jungle/deep/structures/engi) "txs" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) "tyh" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "tyj" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) "tyD" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -39607,19 +32569,14 @@ /area/strata/ag/exterior/paths/southresearch) "tBw" = ( /obj/structure/closet/crate/radiation, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "tCi" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/center) "tCI" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/admin) "tCM" = ( /obj/structure/bed/roller, @@ -39635,10 +32592,7 @@ /area/strata/ag/exterior/marsh/center) "tEf" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "tEC" = ( /obj/structure/sign/nosmoking_1, @@ -39655,10 +32609,7 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "tHv" = ( /obj/effect/landmark/static_comms/net_two, @@ -39670,17 +32621,12 @@ dir = 6 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "tHE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/russianRed, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "tIl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -39690,10 +32636,7 @@ /area/strata/ag/interior/mountain) "tIv" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "tJp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -39725,10 +32668,7 @@ /area/strata/ag/exterior/nearlz2) "tKC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) "tKS" = ( /turf/closed/shuttle/ert{ @@ -39743,9 +32683,7 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "tLI" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/structures/engi) "tLO" = ( /obj/effect/landmark/monkey_spawn, @@ -39766,40 +32704,27 @@ /area/strata/ug/interior/jungle/deep/east_engi) "tNQ" = ( /obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ug/interior/jungle/platform/east/scrub) "tOA" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "tPi" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med2) "tPl" = ( /obj/structure/toilet{ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "tPx" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "tPN" = ( /turf/closed/wall/strata_ice/jungle, @@ -39815,9 +32740,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/platform/east/scrub) "tRf" = ( /obj/structure/surface/table/reinforced/prison, @@ -39825,16 +32748,10 @@ dir = 1; icon_state = "commb" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "tRC" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "tSb" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, @@ -39882,10 +32799,7 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "tTP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "tUu" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -39900,18 +32814,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "tUW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "tUZ" = ( /obj/structure/platform/strata{ @@ -39922,19 +32832,14 @@ "tVN" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "tVP" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "tWf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -39951,9 +32856,7 @@ /area/strata/ag/exterior/tcomms/tcomms_deck) "tYB" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "tYF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -39966,33 +32869,23 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec2) "tZV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "uad" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/tcomms/tcomms_deck) "uaC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "uaH" = ( /turf/open/floor/strata, @@ -40003,9 +32896,7 @@ /obj/item/weapon/gun/pistol/t73, /obj/item/attachable/bayonet/upp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/landingzone_checkpoint) "ubx" = ( /obj/structure/largecrate/random, @@ -40023,9 +32914,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "ucD" = ( /obj/structure/inflatable/door, @@ -40040,9 +32929,7 @@ /obj/item/lightstick, /obj/item/lightstick, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec1) "ueK" = ( /obj/effect/particle_effect/steam, @@ -40071,10 +32958,7 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "ufI" = ( /obj/structure/stairs/perspective{ @@ -40082,16 +32966,12 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "ugH" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/secure/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec2) "ugI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -40104,10 +32984,7 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin3) "uhF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -40129,10 +33006,7 @@ /area/strata/ag/exterior/research_decks) "uko" = ( /obj/item/stack/snow, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/north_outpost) "ukx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -40144,9 +33018,7 @@ /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, /obj/item/restraint/handcuffs, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "ulL" = ( /obj/structure/platform/strata/metal{ @@ -40159,63 +33031,41 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med1) "unE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) "unO" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "uoP" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "uph" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) "upO" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "uqB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/gen/bball) "uqY" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "urF" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med2) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -40238,10 +33088,7 @@ dir = 4 }, /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "utV" = ( /obj/effect/landmark/monkey_spawn, @@ -40252,9 +33099,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "uul" = ( /obj/structure/largecrate/guns/russian, @@ -40271,10 +33116,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "uvZ" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -40295,10 +33137,7 @@ }, /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "uyQ" = ( /obj/structure/barricade/handrail/strata{ @@ -40307,9 +33146,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ug/interior/jungle/platform/east/scrub) "uzb" = ( /obj/structure/stairs/perspective{ @@ -40322,10 +33159,7 @@ dir = 4 }, /obj/item/stack/catwalk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "uzv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -40342,10 +33176,7 @@ dir = 4 }, /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "uCc" = ( /obj/structure/cargo_container/grant/rightmid, @@ -40353,18 +33184,13 @@ /area/strata/ag/exterior/marsh) "uCI" = ( /obj/structure/dispenser, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "uDa" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "uDU" = ( /obj/structure/stairs/perspective{ @@ -40381,21 +33207,14 @@ "uEj" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/center) "uFT" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) "uGH" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted/devroom) "uHa" = ( /obj/structure/machinery/light/small{ @@ -40403,9 +33222,7 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "uHX" = ( /obj/effect/decal/cleanable/cobweb2, @@ -40419,9 +33236,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) "uKj" = ( /obj/structure/bed/chair, @@ -40432,10 +33247,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/engi) "uLd" = ( /obj/structure/surface/table/reinforced/prison, @@ -40443,22 +33255,14 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "uLl" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "uLJ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/engi) "uLK" = ( /obj/structure/disposalpipe/segment, @@ -40471,10 +33275,7 @@ "uNQ" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -40488,9 +33289,7 @@ /obj/item/weapon/gun/pistol/t73, /obj/item/attachable/bayonet/upp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/landingzone_checkpoint) "uPR" = ( /obj/item/weapon/gun/pistol/t73, @@ -40522,18 +33321,13 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin3) "uTL" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) "uTQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -40544,17 +33338,13 @@ /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) "uVv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "uWe" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "uWG" = ( /obj/structure/stairs/perspective{ @@ -40567,24 +33357,18 @@ "uWO" = ( /obj/structure/closet/basketball, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/gen/bball) "uWP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_dorms) "uXI" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/tcomms/tcomms_deck) "uXY" = ( /obj/structure/platform/strata/metal{ @@ -40593,17 +33377,12 @@ /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) "uZh" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) "vaq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "vaW" = ( /obj/structure/platform_decoration/strata, @@ -40630,18 +33409,13 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin2) "vbN" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "vdi" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -40653,10 +33427,7 @@ /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/jung/dorms/med2) "vgb" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -40680,9 +33451,7 @@ "vhl" = ( /obj/item/storage/pill_bottle/bicaridine, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "vhv" = ( /obj/structure/surface/rack, @@ -40703,27 +33472,19 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/tcomms) "vjD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/monkeyburger, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "vjZ" = ( /obj/structure/machinery/disposal, /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) "vkp" = ( /turf/closed/shuttle/ert{ @@ -40734,9 +33495,7 @@ /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) "vlG" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "vlH" = ( /obj/structure/machinery/weather_siren{ @@ -40751,36 +33510,23 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) "vms" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "vmI" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) "vnh" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/south) "vnC" = ( /obj/structure/curtain/open/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "vnI" = ( /obj/structure/machinery/light/small{ @@ -40788,9 +33534,7 @@ }, /obj/structure/curtain/open/medical, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "vnV" = ( /obj/structure/stairs/perspective{ @@ -40805,9 +33549,7 @@ /area/strata/ag/exterior/paths/southresearch) "voe" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "vox" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -40833,10 +33575,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/med2) "vqx" = ( /obj/effect/landmark/hunter_secondary, @@ -40846,10 +33585,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "vsd" = ( /obj/structure/surface/table/reinforced/prison, @@ -40858,63 +33594,38 @@ }, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "vsp" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landingzone_2) "vsy" = ( -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "vsL" = ( /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "vsZ" = ( /obj/item/stack/medical/splint, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "vth" = ( /obj/structure/closet/lawcloset, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "vtl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) "vtp" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "vtz" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "vtM" = ( /obj/structure/machinery/weather_siren{ @@ -40943,10 +33654,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "vvB" = ( /obj/structure/filingcabinet, @@ -40954,18 +33662,13 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "vvR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/research_decks/security) "vvV" = ( /obj/effect/decal/cleanable/dirt, @@ -40996,9 +33699,7 @@ "vwX" = ( /obj/structure/machinery/centrifuge, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "vxd" = ( /turf/closed/wall/strata_outpost, @@ -41010,16 +33711,11 @@ /turf/open/floor/strata, /area/strata/ag/interior/tcomms) "vyl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "vyK" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "vBi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -41043,10 +33739,7 @@ /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, /obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "vCl" = ( /obj/structure/barricade/handrail/strata{ @@ -41068,17 +33761,11 @@ /area/strata/ag/interior/outpost/canteen) "vCN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) "vDm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/east_dorms) "vDr" = ( /turf/closed/shuttle/ert{ @@ -41098,9 +33785,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "vGx" = ( /turf/closed/shuttle/ert{ @@ -41114,10 +33799,7 @@ "vId" = ( /obj/structure/machinery/space_heater, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "vJj" = ( /obj/structure/surface/table/reinforced/prison, @@ -41142,22 +33824,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/landingzone_checkpoint) "vMr" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms/flight_control) "vNG" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "vOf" = ( /turf/closed/shuttle/ert{ @@ -41195,10 +33871,7 @@ /obj/structure/stairs/perspective{ color = "#6e6e6e" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/admin3) "vTN" = ( /obj/structure/machinery/power/apc{ @@ -41207,15 +33880,10 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/sec1) "vUp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ag/exterior/tcomms/tcomms_deck) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -41235,10 +33903,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "vZT" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -41261,10 +33926,7 @@ dir = 1; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/jungle/deep/structures/engi) "wbN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -41278,14 +33940,10 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "wdI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) "wdN" = ( /obj/structure/platform/strata{ @@ -41299,9 +33957,7 @@ dir = 1 }, /obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/nearlz2) "wfv" = ( /obj/structure/stairs/perspective{ @@ -41356,18 +34012,14 @@ /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_dorms) "wni" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/tcomms/tcomms_deck) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "wol" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/gen/bball) "woP" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -41392,10 +34044,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "wrw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -41415,25 +34064,18 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "wsj" = ( /obj/item/trash/pistachios, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "wsm" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -41449,9 +34091,7 @@ /obj/structure/barricade/handrail/strata, /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "wuI" = ( /turf/open/gm/coast/beachcorner2/north_west, @@ -41461,9 +34101,7 @@ /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) "wvF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "wxU" = ( /obj/structure/bed{ @@ -41472,24 +34110,15 @@ /obj/structure/machinery/light/small, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "wxY" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "wzZ" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "wAj" = ( /obj/structure/surface/rack, @@ -41500,10 +34129,7 @@ /obj/item/clothing/head/hardhat/white, /obj/structure/machinery/light/small, /obj/item/clothing/head/hardhat/white, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "wAw" = ( /obj/structure/toilet{ @@ -41513,10 +34139,7 @@ /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/strata/ug/interior/outpost/jung/dorms/admin1) "wAG" = ( /obj/structure/fence, @@ -41527,9 +34150,7 @@ /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/crap_item, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/jung/dorms/admin1) "wBI" = ( /obj/structure/bed{ @@ -41542,9 +34163,7 @@ /area/strata/ug/interior/outpost/jung/dorms/med2) "wDq" = ( /obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/strata/ag/exterior/tcomms/tcomms_deck) "wDF" = ( /obj/structure/machinery/light/small, @@ -41599,9 +34218,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ug/interior/jungle/platform/east/scrub) "wLv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -41630,9 +34247,7 @@ /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) "wPI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/tcomms/tcomms_deck) "wQx" = ( /obj/structure/machinery/light/small{ @@ -41644,18 +34259,13 @@ "wUa" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) "wVf" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/landingzone_checkpoint) "wWK" = ( /obj/structure/stairs/perspective{ @@ -41664,10 +34274,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -41682,9 +34289,7 @@ /area/strata/ug/interior/jungle/deep/south_dorms) "wXL" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) "wYx" = ( /turf/open/floor/carpet, @@ -41702,19 +34307,14 @@ "wZW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/binoculars, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "wZZ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) "xaR" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) "xdr" = ( /turf/closed/wall/strata_outpost, @@ -41730,20 +34330,14 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/jung/dorms/admin1) "xeo" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/closet/jcloset, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "xes" = ( /obj/structure/platform_decoration/strata{ @@ -41761,9 +34355,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "xhM" = ( /obj/structure/machinery/weather_siren{ @@ -41778,9 +34370,7 @@ /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) "xje" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/tcomms/tcomms_deck) "xjr" = ( /turf/open/auto_turf/strata_grass/layer0, @@ -41789,10 +34379,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "xkj" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -41801,24 +34388,16 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "xlP" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/west, /area/strata/ag/interior/outpost/med) "xlQ" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) "xlX" = ( /obj/structure/flora/pottedplant{ @@ -41829,10 +34408,7 @@ /area/strata/ug/interior/outpost/jung/dorms/admin1) "xmR" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "xnn" = ( /obj/structure/sign/safety/storage, @@ -41849,50 +34425,32 @@ /obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) "xnZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/mountain) "xoE" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "xpK" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "xqv" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "xqT" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "xre" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, @@ -41904,17 +34462,12 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "xst" = ( /obj/structure/machinery/cryobag_recycler, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" - }, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) "xsH" = ( /turf/closed/shuttle/ert{ @@ -41934,9 +34487,7 @@ pixel_y = 3 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "xuE" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -41953,10 +34504,7 @@ /area/strata/ug/interior/jungle/deep/south_engi) "xvy" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) "xwn" = ( /obj/structure/surface/table/reinforced/prison, @@ -41965,9 +34513,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, +/turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/deep/structures/engi) "xxS" = ( /turf/open/auto_turf/ice/layer0, @@ -41980,16 +34526,11 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/gen/bball) "xzL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "xzR" = ( /turf/open/floor/plating, @@ -42002,43 +34543,30 @@ /area/strata/ag/exterior/marsh) "xAp" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "xAF" = ( /obj/structure/curtain/open/medical, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "xAS" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ug/interior/jungle/platform/east/scrub) "xBT" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "xCN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "xDu" = ( /obj/structure/sign/nosmoking_2, @@ -42052,9 +34580,7 @@ /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -42084,10 +34610,7 @@ /area/strata/ag/exterior/nearlz2) "xFR" = ( /obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "xFT" = ( /obj/item/weapon/gun/pistol/t73, @@ -42099,10 +34622,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "xGi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -42118,9 +34638,7 @@ "xGE" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landingzone_2) "xHw" = ( /obj/structure/flora/pottedplant{ @@ -42144,10 +34662,7 @@ /area/strata/ug/interior/jungle/deep/east_dorms) "xJb" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) "xJD" = ( /obj/structure/closet/bodybag, @@ -42164,10 +34679,7 @@ /area/strata/ug/interior/jungle/deep/structures/engi) "xKr" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "xKs" = ( /obj/structure/closet/bodybag, @@ -42180,10 +34692,7 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) "xKy" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -42199,9 +34708,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) "xKD" = ( /obj/structure/closet/bodybag, @@ -42222,23 +34729,15 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "xMr" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/engi) "xOa" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) "xOo" = ( /obj/effect/landmark/xeno_spawn, @@ -42280,9 +34779,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) "xRr" = ( /obj/structure/machinery/light/small{ @@ -42295,39 +34792,25 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) "xRR" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "xSJ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) "xTh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/maintenance) "xTw" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/tcomms/tcomms_deck) "xTU" = ( /turf/open/auto_turf/snow/brown_base/layer4, @@ -42345,18 +34828,14 @@ "xUo" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "xVQ" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) "xWN" = ( /obj/effect/decal/cleanable/blood, @@ -42380,39 +34859,25 @@ /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "yah" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) "ybN" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/research_decks/security) "yca" = ( /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/strata/ug/interior/jungle/deep/structures/engi) "yde" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) "ydp" = ( /obj/structure/surface/rack{ @@ -42420,16 +34885,12 @@ }, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/sec2) "ydz" = ( /obj/item/toy/deck, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) "ydV" = ( /obj/effect/decal/cleanable/blood{ @@ -42441,9 +34902,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landingzone_2) "ygq" = ( /turf/closed/wall/strata_outpost, @@ -42451,26 +34910,19 @@ "ygz" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/flight_control) "yhJ" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) "yis" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pouch/flare/full, /obj/item/weapon/gun/pistol/t73, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -42487,10 +34939,7 @@ /area/strata/ag/exterior/shed_five_caves) "ykU" = ( /obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, @@ -42501,10 +34950,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen) (1,1,1) = {" diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index aaeb160aeef1..9617bfaccb6c 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -16,37 +16,22 @@ /turf/open/space, /area/space) "aac" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, /area/space) "aad" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/north, /area/space) "aae" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, /area/space) "aaf" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/space) "aag" = ( /turf/open/floor/almayer_hull, /area/space) "aah" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space) "aak" = ( /obj/effect/step_trigger/teleporter/random{ @@ -68,9 +53,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "aaq" = ( /obj/item/bedsheet/purple{ @@ -108,9 +91,7 @@ pixel_x = -16; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "aau" = ( /turf/closed/wall/almayer/reinforced/temphull, @@ -124,10 +105,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "aaF" = ( /obj/structure/stairs{ @@ -139,9 +117,7 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "aaH" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -149,10 +125,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/stair_clone/upper) "aaP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ @@ -167,9 +140,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "aaY" = ( /obj/structure/lattice, @@ -181,9 +152,7 @@ name = "\improper Evacuation Airlock SU-3"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "abf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -232,9 +201,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "abG" = ( /obj/structure/filingcabinet/security, @@ -244,9 +211,7 @@ /obj/structure/sign/safety/rewire{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "abH" = ( /obj/structure/machinery/power/apc/almayer{ @@ -271,34 +236,24 @@ pixel_y = 28 }, /obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "abR" = ( /obj/item/tank/phoron, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "abS" = ( /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "abT" = ( /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "abU" = ( /obj/structure/machinery/computer/aa_console, /obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "acc" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -308,9 +263,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "acd" = ( /obj/structure/surface/rack, @@ -318,9 +271,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "acf" = ( /turf/closed/wall/almayer/outer, @@ -330,10 +281,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "acj" = ( /obj/structure/desertdam/decals/road_edge{ @@ -371,9 +319,7 @@ /area/almayer/living/basketball) "ack" = ( /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "acl" = ( /turf/open/floor/wood/ship, @@ -441,15 +387,11 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/chapel) "acp" = ( /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "acq" = ( /obj/structure/disposalpipe/segment{ @@ -468,9 +410,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/warhead, /obj/structure/machinery/light/built, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "acu" = ( /obj/structure/disposalpipe/segment{ @@ -495,21 +435,15 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "acz" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "acA" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "acI" = ( /obj/structure/desertdam/decals/road_edge{ @@ -550,19 +484,14 @@ /obj/structure/sign/safety/terminal{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "acN" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/weapon_room) "acQ" = ( /turf/open/floor/almayer, @@ -577,15 +506,11 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "acU" = ( /obj/structure/closet/basketball, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/basketball) "acW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -595,16 +520,12 @@ /area/almayer/lifeboat_pumps/north1) "acX" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "acY" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "acZ" = ( /obj/structure/surface/table/almayer, @@ -622,14 +543,10 @@ pixel_x = 2; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "add" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "ade" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -651,9 +568,7 @@ /area/almayer/lifeboat_pumps/north1) "adr" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "adu" = ( /turf/open/floor/almayer, @@ -667,9 +582,7 @@ pixel_x = 4; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "adD" = ( /obj/structure/window/reinforced{ @@ -679,9 +592,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/basketball) "adF" = ( /obj/structure/window/reinforced{ @@ -691,10 +602,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/basketball) "adG" = ( /turf/closed/wall/almayer/outer, @@ -704,9 +612,7 @@ /area/almayer/engineering/starboard_atmos) "adP" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "adR" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -717,9 +623,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices/flight) "aea" = ( /obj/structure/machinery/light{ @@ -730,9 +634,7 @@ /area/almayer/lifeboat_pumps/north1) "aec" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/north1) "aed" = ( /obj/structure/machinery/scoreboard_button{ @@ -740,16 +642,11 @@ name = "Scoreboard Reset Button"; pixel_x = -20 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/living/basketball) "aee" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/north1) "aef" = ( /turf/open/floor/almayer, @@ -758,18 +655,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "aei" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north1) "aej" = ( /turf/closed/wall/almayer, @@ -798,9 +690,7 @@ /area/almayer/lifeboat_pumps/north2) "aez" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "aeA" = ( /turf/open/floor/almayer, @@ -812,14 +702,10 @@ /obj/structure/sign/safety/rewire{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "aeC" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "aeE" = ( /obj/structure/window/framed/almayer/hull, @@ -829,10 +715,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/living/basketball) "aeH" = ( /obj/structure/disposalpipe/segment{ @@ -847,10 +730,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "aeJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -859,10 +739,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) "aeK" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_missiles) "aeL" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -870,18 +747,13 @@ vector_x = -1; vector_y = 100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "aeM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "aeN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -897,17 +769,13 @@ /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "aeP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "aeQ" = ( /obj/structure/surface/table/almayer, @@ -920,9 +788,7 @@ /obj/structure/sign/safety/rewire{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "aeR" = ( /obj/structure/surface/table/almayer, @@ -930,9 +796,7 @@ pixel_y = 30 }, /obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "aeT" = ( /obj/structure/stairs{ @@ -943,9 +807,7 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "aeW" = ( /obj/effect/decal/cleanable/dirt, @@ -966,24 +828,16 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "aeZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north1) "afa" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_missiles) "afb" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -995,9 +849,7 @@ pixel_x = -26 }, /obj/item/device/binoculars, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "afj" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, @@ -1007,16 +859,10 @@ /turf/open/floor/engine, /area/almayer/engineering/airmix) "afm" = ( -/turf/open/floor/almayer_hull{ - dir = 6; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, /area/space) "afr" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north1) "afs" = ( /obj/structure/disposalpipe/segment{ @@ -1035,9 +881,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/cafeteria_officer) "afF" = ( /turf/open/floor/plating/plating_catwalk, @@ -1049,29 +893,21 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "afH" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/cafeteria_officer) "afI" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/cafeteria_officer) "afJ" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cafeteria_officer) "afK" = ( /obj/structure/bed/chair, @@ -1085,25 +921,18 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cafeteria_officer) "afM" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/starboard_atmos) "afN" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/engineering/starboard_atmos) "afO" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, @@ -1111,19 +940,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/starboard_atmos) "afP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/engineering/starboard_atmos) "afQ" = ( /obj/structure/surface/table/almayer, @@ -1144,23 +968,17 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/starboard_missiles) "afX" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "afZ" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "agb" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -1171,18 +989,13 @@ pixel_x = -8; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "agc" = ( /turf/open/floor/carpet, /area/almayer/living/commandbunks) "agf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/offices/flight) "agj" = ( /turf/closed/wall/almayer/reinforced, @@ -1193,9 +1006,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/basketball) "agr" = ( /obj/structure/surface/table/almayer, @@ -1208,9 +1019,7 @@ /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/officer_study) "agu" = ( /turf/open/floor/almayer, @@ -1231,9 +1040,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "agA" = ( /obj/structure/window/framed/almayer, @@ -1255,24 +1062,16 @@ pixel_x = -4; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "agI" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/living/officer_study) "agK" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/living/officer_study) "agM" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -1287,31 +1086,21 @@ /area/almayer/engineering/airmix) "agO" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/officer_study) "agQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cafeteria_officer) "agT" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/cafeteria_officer) "agV" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cafeteria_officer) "agY" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cafeteria_officer) "ahc" = ( /obj/structure/surface/table/almayer, @@ -1325,18 +1114,13 @@ dir = 4 }, /obj/item/storage/box/donkpockets, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cafeteria_officer) "ahf" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/starboard_atmos) "ahh" = ( /turf/open/floor/plating/plating_catwalk, @@ -1346,9 +1130,7 @@ name = "\improper Evacuation Airlock SU-2"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "aho" = ( /obj/structure/window/framed/almayer, @@ -1370,9 +1152,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "ahG" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -1382,9 +1162,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/starboard_atmos) "ahJ" = ( /obj/structure/window/framed/almayer, @@ -1411,31 +1189,19 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/offices/flight) "ahV" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/offices/flight) "aia" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/officer_study) "aic" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "aid" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -1443,16 +1209,12 @@ name = "\improper Officer's Study" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/officer_study) "aie" = ( /obj/effect/landmark/railgun_computer, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "aig" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -1460,9 +1222,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "aih" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -1473,9 +1233,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cafeteria_officer) "aij" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -1485,18 +1243,13 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cafeteria_officer) "ain" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cafeteria_officer) "aiq" = ( /turf/open/floor/almayer, @@ -1508,18 +1261,13 @@ /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) "ais" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/offices/flight) "aiw" = ( /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) "aiH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "aiJ" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -1527,17 +1275,13 @@ vector_x = 1; vector_y = -102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "aiQ" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "aiR" = ( /obj/structure/stairs{ @@ -1549,9 +1293,7 @@ vector_x = -1; vector_y = 100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "aiW" = ( /obj/structure/disposalpipe/segment{ @@ -1590,17 +1332,13 @@ /area/almayer/medical/upper_medical) "ajm" = ( /obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "ajs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "aju" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1616,9 +1354,7 @@ /area/almayer/lifeboat_pumps/north2) "ajA" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "ajD" = ( /obj/structure/surface/table/almayer, @@ -1644,9 +1380,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "ajM" = ( /obj/structure/window/framed/almayer, @@ -1669,46 +1403,26 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) "ajY" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, /area/space) "ajZ" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "aka" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north1) "akb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "akc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/north1) "akf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/weapon_room) "akh" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/hallways/upper/midship_hallway) "akn" = ( /obj/structure/machinery/light{ @@ -1717,10 +1431,7 @@ /obj/vehicle/powerloader{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/hallways/lower/vehiclehangar) "ako" = ( /obj/structure/disposalpipe/segment{ @@ -1748,9 +1459,7 @@ pixel_x = -7; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "akv" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -1765,20 +1474,13 @@ /obj/item/device/camera{ pixel_x = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "akw" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "akx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "akz" = ( /obj/structure/surface/table/almayer, @@ -1789,10 +1491,7 @@ /area/almayer/living/offices/flight) "akA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) "akC" = ( /turf/closed/wall/almayer/reinforced, @@ -1804,10 +1503,7 @@ pixel_y = 25 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_two) "akL" = ( /obj/structure/machinery/light{ @@ -1820,10 +1516,7 @@ pixel_y = 24; req_access_txt = "31" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "akQ" = ( /obj/structure/disposalpipe/segment{ @@ -1832,15 +1525,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) "ald" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "alf" = ( /obj/structure/machinery/light{ @@ -1849,9 +1537,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "alg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -1883,32 +1569,23 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "alw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Pilot's Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "aly" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/starboard_missiles) "alD" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) "alE" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/upper_medical) "alL" = ( /turf/closed/wall/almayer, @@ -1917,9 +1594,7 @@ /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering) "alR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "alU" = ( /turf/closed/wall/almayer/reinforced, @@ -1933,17 +1608,13 @@ vector_x = 1; vector_y = -102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) "alZ" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/cic) "amb" = ( /obj/structure/window/reinforced{ @@ -1964,17 +1635,13 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) "amh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "amk" = ( /obj/effect/decal/warning_stripes{ @@ -1985,10 +1652,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/containment) "amo" = ( /obj/structure/largecrate/random/secure, @@ -1996,32 +1660,23 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ams" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "amu" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "amw" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering) "amx" = ( /turf/open/floor/almayer, @@ -2031,19 +1686,14 @@ /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) "amA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "amE" = ( /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "amF" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2059,10 +1709,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "amM" = ( /obj/structure/window/framed/almayer, @@ -2075,10 +1722,7 @@ /turf/open/floor/plating, /area/almayer/engineering/port_atmos) "amX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/navigation) "amY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2099,9 +1743,7 @@ }, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "and" = ( /obj/structure/window/reinforced{ @@ -2126,9 +1768,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "anm" = ( /obj/structure/stairs{ @@ -2139,9 +1779,7 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "anp" = ( /obj/structure/sign/safety/hazard{ @@ -2149,9 +1787,7 @@ pixel_y = 32 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "anq" = ( /obj/item/device/radio/intercom{ @@ -2170,9 +1806,7 @@ /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "anr" = ( /obj/structure/sign/safety/intercom{ @@ -2180,15 +1814,10 @@ pixel_y = 32 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "ans" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "anw" = ( /obj/structure/machinery/flasher{ @@ -2201,9 +1830,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "anz" = ( /obj/effect/decal/warning_stripes{ @@ -2214,9 +1841,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "anM" = ( /obj/structure/surface/table/almayer, @@ -2227,10 +1852,7 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) "anO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) "anP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2245,15 +1867,11 @@ req_one_access_txt = "3;22;2;19" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices/flight) "anV" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "anW" = ( /obj/structure/machinery/light{ @@ -2278,18 +1896,13 @@ /area/almayer/hallways/hangar) "aoh" = ( /obj/structure/morgue/crematorium, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "aoi" = ( /turf/open/floor/almayer, /area/almayer/shipboard/navigation) "aom" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "aop" = ( /obj/structure/closet/secure_closet/personal/patient{ @@ -2298,26 +1911,17 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "aoq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "aor" = ( /obj/structure/curtain/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "aos" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/upper_medical) "aov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2326,9 +1930,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "aoy" = ( /obj/structure/sign/safety/fire_haz{ @@ -2350,9 +1952,7 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "aoA" = ( /obj/structure/machinery/light, @@ -2362,9 +1962,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "aoC" = ( /obj/structure/pipes/vents/pump{ @@ -2373,10 +1971,7 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) "aoI" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "aoJ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -2418,18 +2013,14 @@ pixel_y = -3; req_one_access_txt = "19;28" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "aoL" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/living/offices/flight) "aoM" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "aoN" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -2445,9 +2036,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) "aoT" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aoW" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, @@ -2455,9 +2044,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aoX" = ( /obj/effect/decal/warning_stripes{ @@ -2468,10 +2055,7 @@ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "apa" = ( /obj/structure/surface/rack, @@ -2484,16 +2068,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "apg" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "api" = ( /obj/structure/pipes/vents/scrubber{ @@ -2512,15 +2090,11 @@ "apo" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "apq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "aps" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -2528,17 +2102,13 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "apt" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "apz" = ( /obj/structure/surface/table/almayer, @@ -2547,9 +2117,7 @@ name = "North Checkpoint Shutters"; req_one_access_txt = "3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "apB" = ( /obj/structure/surface/rack, @@ -2560,15 +2128,10 @@ /obj/item/reagent_container/food/snacks/wrapped/booniebars{ pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "apE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/hallways/hangar) "apL" = ( /obj/structure/surface/table/almayer, @@ -2576,10 +2139,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "apR" = ( /obj/effect/decal/warning_stripes{ @@ -2593,9 +2153,7 @@ name = "Secure Reinforced Air Vent"; welded = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "apS" = ( /obj/effect/decal/warning_stripes{ @@ -2613,10 +2171,7 @@ pixel_x = -3; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/containment) "apU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -2634,21 +2189,15 @@ /area/almayer/medical/containment/cell) "apW" = ( /obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "apX" = ( /obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "apY" = ( /obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "apZ" = ( /obj/structure/machinery/telecomms/receiver/preset_left, @@ -2659,20 +2208,14 @@ pixel_x = 16; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "aqa" = ( /obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "aqb" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "aqf" = ( /obj/structure/pipes/vents/pump{ @@ -2686,9 +2229,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aqh" = ( /obj/structure/flora/pottedplant{ @@ -2697,17 +2238,12 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "aqm" = ( /obj/item/bedsheet/brown, /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aqn" = ( /obj/structure/machinery/light{ @@ -2726,24 +2262,16 @@ pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/offices) "aqp" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/command/lifeboat) "aqq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "aqs" = ( /obj/effect/decal/warning_stripes{ @@ -2758,9 +2286,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "aqy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2770,18 +2296,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "aqz" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "aqB" = ( /obj/structure/blocker/fuelpump, @@ -2791,18 +2313,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/cic) "aqG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/medical_science) "aqH" = ( /obj/structure/disposalpipe/segment{ @@ -2812,22 +2329,14 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "aqI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/auxiliary_officer_office) "aqJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/command/lifeboat) "aqK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "aqL" = ( /obj/structure/stairs{ @@ -2838,14 +2347,10 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "aqN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aqP" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ @@ -2869,15 +2374,11 @@ }, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell) "aqS" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "aqU" = ( /turf/closed/wall/almayer/reinforced, @@ -2886,9 +2387,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "aqY" = ( /obj/structure/window/framed/almayer, @@ -2908,9 +2407,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "arh" = ( /obj/structure/machinery/light{ @@ -2920,9 +2417,7 @@ cell_type = /obj/item/cell/hyper; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "ari" = ( /obj/structure/surface/rack, @@ -2932,64 +2427,45 @@ pixel_y = 28 }, /obj/item/storage/pouch/tools, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "arj" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/device/radio/headset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "ark" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "arl" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/telecomms) "arm" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering) "arp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "arq" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) "arr" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "ars" = ( /obj/item/device/radio/intercom{ @@ -3000,10 +2476,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "ary" = ( /obj/effect/decal/warning_stripes{ @@ -3018,58 +2491,41 @@ }, /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "arz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "arA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "arF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "arG" = ( /obj/structure/machinery/power/apc/almayer/hardened{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "arH" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "arK" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering) "arP" = ( /obj/structure/sign/safety/hazard{ @@ -3079,20 +2535,14 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "arR" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cic) "arT" = ( /obj/structure/target{ @@ -3105,20 +2555,13 @@ /area/almayer/command/lifeboat) "arX" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "asc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "ase" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/pilotbunks) "asf" = ( /obj/structure/sink{ @@ -3129,9 +2572,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/pilotbunks) "asm" = ( /obj/structure/stairs{ @@ -3142,9 +2583,7 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "asn" = ( /obj/structure/window/framed/almayer/white, @@ -3159,9 +2598,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "asu" = ( /obj/structure/sign/safety/hazard{ @@ -3169,18 +2606,13 @@ pixel_y = -8 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "asw" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "asA" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -3194,35 +2626,25 @@ /area/almayer/hallways/lower/repair_bay) "asH" = ( /obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "asI" = ( /obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "asJ" = ( /obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "asK" = ( /obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "asL" = ( /obj/structure/machinery/telecomms/relay/preset/telecomms{ listening_level = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "asM" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -3235,10 +2657,7 @@ "asN" = ( /obj/structure/machinery/computer/crew, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cic) "asQ" = ( /obj/structure/surface/rack, @@ -3246,14 +2665,10 @@ /obj/item/device/radio/marine, /obj/item/device/radio/marine, /obj/item/folded_tent/cmd, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "asR" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/command/cic) "asT" = ( /obj/structure/disposalpipe/segment, @@ -3263,15 +2678,11 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "asX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "asY" = ( /obj/structure/stairs/perspective{ @@ -3287,9 +2698,7 @@ dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "ata" = ( /obj/structure/machinery/light{ @@ -3313,17 +2722,12 @@ /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) "atc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "atf" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "atg" = ( /obj/structure/bed/sofa/vert/grey/top, @@ -3336,9 +2740,7 @@ id = "tcomms_apc"; name = "\improper Telecommunications Power Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "atm" = ( /turf/open/floor/plating/plating_catwalk, @@ -3350,9 +2752,7 @@ /area/almayer/engineering/upper_engineering) "ato" = ( /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "atp" = ( /obj/structure/stairs/perspective{ @@ -3372,10 +2772,7 @@ /area/almayer/lifeboat_pumps/north2) "ats" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "att" = ( /obj/structure/surface/table/almayer, @@ -3384,38 +2781,27 @@ dir = 4 }, /obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "atu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "atv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "atx" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "aty" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "atz" = ( /obj/structure/sign/safety/escapepod{ @@ -3425,15 +2811,10 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "atH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "atJ" = ( /obj/effect/decal/warning_stripes{ @@ -3449,22 +2830,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "atK" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/command/lifeboat) "atM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/command/lifeboat) "atN" = ( /obj/effect/decal/warning_stripes{ @@ -3478,16 +2850,10 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "atO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) "atP" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3498,9 +2864,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "atS" = ( /obj/structure/machinery/power/apc/almayer{ @@ -3530,9 +2894,7 @@ name = "ARES Exterior Lockdown" }, /obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "auf" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, @@ -3540,16 +2902,12 @@ /area/almayer/command/airoom) "aui" = ( /obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "auj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "aum" = ( /obj/structure/disposalpipe/segment, @@ -3557,9 +2915,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "auu" = ( /obj/structure/disposalpipe/segment{ @@ -3583,9 +2939,7 @@ /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) "auB" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering) "auH" = ( /obj/structure/machinery/door_control{ @@ -3599,9 +2953,7 @@ name = "Telecommunications"; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "auK" = ( /obj/structure/stairs/perspective{ @@ -3622,16 +2974,11 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "auO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering) "auQ" = ( /obj/structure/window/framed/almayer, @@ -3643,34 +2990,23 @@ /obj/item/tool/warning_cone, /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "auT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/command/cic) "auU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "auV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "auW" = ( /turf/closed/wall/almayer/reinforced, @@ -3680,16 +3016,12 @@ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/port_point_defense) "auZ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "ava" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3728,18 +3060,13 @@ name = "\improper Umbillical Airlock"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) "avu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "avv" = ( /obj/structure/machinery/light{ @@ -3747,10 +3074,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/squads/alpha) "avw" = ( /obj/structure/window/framed/almayer, @@ -3763,15 +3087,10 @@ /turf/open/floor/grass, /area/almayer/living/starboard_garden) "avB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/navigation) "avC" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered/agent) "avF" = ( /obj/effect/decal/warning_stripes{ @@ -3779,16 +3098,10 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/containment) "avG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/containment) "avH" = ( /obj/effect/decal/warning_stripes{ @@ -3798,10 +3111,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/containment) "avJ" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -3809,51 +3119,36 @@ name = "\improper Evacuation Airlock SU-5"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "avN" = ( /obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "avO" = ( /obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "avP" = ( /obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "avQ" = ( /obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "avR" = ( /obj/structure/machinery/telecomms/relay/preset/telecomms{ listening_level = 6 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "avS" = ( /obj/structure/bed/chair/office/dark{ dir = 8; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/command/cic) "avU" = ( /obj/effect/landmark/start/crew_chief, @@ -3882,9 +3177,7 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) "avY" = ( /turf/open/floor/plating/plating_catwalk, @@ -3897,9 +3190,7 @@ /turf/open/floor/grass, /area/almayer/living/starboard_garden) "awa" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/powered/agent) "awd" = ( /turf/closed/wall/almayer/reinforced, @@ -3911,39 +3202,26 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "awj" = ( /obj/structure/machinery/photocopier, /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "awk" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "awm" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/command/cic) "awn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "awp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3957,23 +3235,16 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "awq" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "awt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cic) "awu" = ( /obj/effect/decal/warning_stripes{ @@ -3988,15 +3259,10 @@ /area/almayer/command/airoom) "awv" = ( /obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "awx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/command/telecomms) "awy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4015,9 +3281,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "awB" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -4028,9 +3292,7 @@ req_one_access_txt = "2;7" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "awC" = ( /turf/closed/wall/almayer, @@ -4038,9 +3300,7 @@ "awD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "awE" = ( /turf/open/floor/plating/plating_catwalk, @@ -4053,17 +3313,13 @@ dir = 8 }, /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "awH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command, /obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "awQ" = ( /obj/structure/surface/table/almayer, @@ -4093,15 +3349,11 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "awR" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "awS" = ( /obj/structure/window/framed/almayer, @@ -4122,9 +3374,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/pilotbunks) "awZ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4132,14 +3382,10 @@ pixel_x = 8; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) "axa" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "axc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -4152,19 +3398,13 @@ /turf/open/floor/almayer, /area/almayer/living/port_emb) "axe" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering) "axk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/weapon_room) "axl" = ( /obj/structure/machinery/door_control{ @@ -4174,18 +3414,13 @@ pixel_x = -27; req_one_access_txt = "4;28" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/upper_medical) "axm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "axn" = ( /obj/structure/sign/safety/rewire{ @@ -4202,46 +3437,33 @@ pixel_x = -6; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "axo" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/telecomms) "axp" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/command/cic) "axu" = ( /obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "axw" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "axx" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axy" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axA" = ( /obj/structure/surface/table/almayer, @@ -4254,24 +3476,18 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axD" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "axE" = ( /obj/structure/closet/toolcloset, @@ -4279,9 +3495,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "axI" = ( /obj/structure/machinery/light{ @@ -4291,9 +3505,7 @@ /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/industrial, /obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axL" = ( /obj/structure/surface/table/almayer, @@ -4305,38 +3517,28 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axM" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axN" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axO" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axQ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "axR" = ( /obj/structure/machinery/shower, @@ -4350,15 +3552,11 @@ /area/almayer/engineering/upper_engineering/port) "axV" = ( /obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "axW" = ( /obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "axX" = ( /obj/structure/machinery/telecomms/server/presets/squads, @@ -4369,9 +3567,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "axY" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -4380,21 +3576,14 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "aya" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/upper_engineering) "ayb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "ayc" = ( /obj/structure/platform{ @@ -4407,17 +3596,11 @@ dir = 5; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north2) "aye" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "ayi" = ( /obj/structure/machinery/recharger, @@ -4425,9 +3608,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "ayj" = ( /obj/effect/landmark/start/cargo, @@ -4443,26 +3624,19 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north2) "ayo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PU-2"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "ayq" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "ayr" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4480,14 +3654,10 @@ pixel_x = 17; pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "ays" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cic) "ayu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -4506,35 +3676,24 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cic) "ayw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/navigation) "ayz" = ( /obj/structure/bed/chair/office/dark{ dir = 8; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/command/cic) "ayD" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "ayI" = ( /obj/structure/surface/rack, @@ -4544,9 +3703,7 @@ /obj/item/clothing/glasses/welding{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "ayK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -4574,35 +3731,23 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) "ayQ" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north2) "ayR" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north2) "ayV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "ayW" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -4613,9 +3758,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "ayX" = ( /obj/structure/surface/table/almayer, @@ -4623,9 +3766,7 @@ /obj/structure/sign/catclock{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "ayZ" = ( /obj/structure/machinery/light{ @@ -4637,9 +3778,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "aza" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4650,54 +3789,37 @@ name = "\improper North West Ladders Shutters" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "azc" = ( /obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "azd" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/command/telecomms) "aze" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/upper_engineering) "azg" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "azh" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "azi" = ( /obj/effect/spawner/random/tool, /obj/structure/surface/rack, /obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "azk" = ( /obj/structure/platform{ @@ -4710,51 +3832,34 @@ dir = 9; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north2) "azl" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/living/offices/flight) "azo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "azp" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "azq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "azr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "azs" = ( /obj/structure/surface/table/almayer, @@ -4769,10 +3874,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "azw" = ( /obj/structure/machinery/light{ @@ -4786,21 +3888,15 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "azA" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/navigation) "azC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "azD" = ( /obj/structure/stairs{ @@ -4812,9 +3908,7 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "azJ" = ( /obj/structure/surface/table/almayer, @@ -4836,9 +3930,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "azV" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4850,9 +3942,7 @@ name = "Normandy Remote Control Console"; shuttleId = "dropship_normandy" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "azW" = ( /obj/structure/machinery/door/window/westright{ @@ -4870,9 +3960,7 @@ name = "Alamo Remote Control Console"; shuttleId = "dropship_alamo" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "azZ" = ( /obj/structure/machinery/keycard_auth, @@ -4910,10 +3998,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cic) "aAn" = ( /obj/structure/sign/safety/escapepod{ @@ -4941,20 +4026,14 @@ /obj/item/storage/box/botanydisk, /obj/item/storage/box/botanydisk, /obj/item/storage/box/botanydisk, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aAy" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "aAA" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +/turf/open/floor/almayer/uscm/directional/east, /area/almayer/command/cic) "aAB" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4963,9 +4042,7 @@ pixel_y = 8 }, /obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aAC" = ( /obj/structure/bed/chair/office/dark{ @@ -4975,17 +4052,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aAE" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aAF" = ( /obj/item/device/radio/intercom{ @@ -5003,9 +4076,7 @@ req_access_txt = "25"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/morgue) "aAK" = ( /obj/structure/surface/table/almayer, @@ -5024,9 +4095,7 @@ pixel_x = -1; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "aAP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -5051,18 +4120,13 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "aAU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_midship_hallway) "aAZ" = ( /obj/structure/bed/chair/office/light{ @@ -5071,9 +4135,7 @@ /obj/structure/pipes/vents/pump/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aBb" = ( /obj/structure/disposalpipe/segment{ @@ -5083,9 +4145,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aBc" = ( /obj/structure/disposalpipe/segment{ @@ -5094,15 +4154,10 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aBd" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/morgue) "aBe" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5133,9 +4188,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "aBh" = ( /obj/structure/disposalpipe/junction, @@ -5153,9 +4206,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aBk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5179,9 +4230,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aBn" = ( /obj/structure/disposalpipe/junction{ @@ -5223,9 +4272,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aBt" = ( /obj/structure/surface/table/almayer, @@ -5237,18 +4284,13 @@ /turf/open/floor/almayer, /area/almayer/living/offices/flight) "aBu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/command/lifeboat) "aBw" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "aBx" = ( /obj/structure/bed/chair/office/light{ @@ -5260,18 +4302,13 @@ /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/item/folder/black_random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "aBA" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/command/lifeboat) "aBD" = ( /obj/structure/closet/basketball, @@ -5279,19 +4316,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/basketball) "aBE" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/almayer, /area/almayer/command/lifeboat) "aBG" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, +/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/almayer/command/lifeboat) "aBH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -5316,9 +4348,7 @@ dir = 1; req_one_access = list(36) }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/synthcloset) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5331,10 +4361,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/command/cic) "aBW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5343,16 +4370,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/command/cichallway) "aBX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "aBZ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5370,18 +4391,14 @@ layer = 2.99; pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aCa" = ( /obj/structure/machinery/door/window/westright{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aCb" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5393,9 +4410,7 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aCd" = ( /obj/structure/bed/chair/office/dark{ @@ -5425,9 +4440,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cic) "aCo" = ( /obj/structure/surface/table/almayer, @@ -5437,24 +4450,17 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/morgue) "aCp" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "aCt" = ( /obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "aCu" = ( /obj/effect/decal/warning_stripes{ @@ -5462,10 +4468,7 @@ pixel_x = 1 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/lower/port_midship_hallway) "aCw" = ( /obj/structure/window/framed/almayer/white, @@ -5476,9 +4479,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) "aCC" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "aCD" = ( /obj/structure/pipes/vents/pump, @@ -5486,10 +4487,7 @@ dir = 4; pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/medical_science) "aCR" = ( /obj/structure/machinery/door_control{ @@ -5506,35 +4504,25 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/containment) "aCX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "aCZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/computerlab) "aDa" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio, /obj/item/device/radio, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aDb" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -5544,45 +4532,31 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/command/telecomms) "aDe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering) "aDh" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "aDi" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aDj" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering) "aDm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDn" = ( /obj/structure/disposalpipe/segment{ @@ -5592,18 +4566,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering) "aDo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDr" = ( /obj/structure/disposalpipe/segment{ @@ -5612,9 +4582,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDs" = ( /obj/structure/disposalpipe/segment{ @@ -5627,9 +4595,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDt" = ( /obj/structure/machinery/cm_vending/clothing/military_police_warden, @@ -5639,9 +4605,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aDB" = ( /obj/structure/disposalpipe/segment{ @@ -5655,9 +4619,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDC" = ( /obj/structure/disposalpipe/segment{ @@ -5670,9 +4632,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aDD" = ( /obj/structure/disposalpipe/junction{ @@ -5685,10 +4645,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering) "aDE" = ( /obj/structure/disposalpipe/segment{ @@ -5701,9 +4658,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aDK" = ( /obj/effect/decal/warning_stripes{ @@ -5717,16 +4672,10 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) "aDO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/command/lifeboat) "aDQ" = ( /obj/structure/window/framed/almayer, @@ -5737,9 +4686,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/port) "aDU" = ( /obj/structure/surface/rack, @@ -5759,10 +4706,7 @@ pixel_y = -2 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/living/grunt_rnr) "aDX" = ( /obj/structure/surface/table/almayer, @@ -5773,18 +4717,14 @@ /obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "aEe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "aEf" = ( /obj/structure/sign/safety/hazard{ @@ -5801,83 +4741,59 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "aEg" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/lifeboat) "aEi" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/morgue) "aEj" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "aEm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/working_joe{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "aEo" = ( /obj/structure/closet/emcloset{ pixel_x = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "aEr" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "aEA" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "aEB" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "aEC" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aED" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cic) "aEG" = ( /obj/structure/bed/chair{ @@ -5886,10 +4802,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cic) "aEM" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5901,9 +4814,7 @@ dir = 4; layer = 3.25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/morgue) "aEO" = ( /obj/structure/surface/table/almayer, @@ -5913,16 +4824,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/morgue) "aEQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "aES" = ( /turf/closed/wall/almayer, @@ -5951,17 +4857,13 @@ pixel_x = -6; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "aFa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/containment) "aFe" = ( /obj/effect/decal/warning_stripes{ @@ -5976,9 +4878,7 @@ "aFf" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "aFg" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5994,27 +4894,21 @@ "aFh" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aFi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) "aFl" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aFm" = ( /obj/structure/surface/table/almayer, /obj/item/shard, /obj/item/tool/extinguisher, /obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFn" = ( /obj/structure/machinery/disposal, @@ -6028,31 +4922,22 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFr" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) "aFu" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFv" = ( /obj/structure/surface/table/almayer, @@ -6063,72 +4948,51 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, /obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFy" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFz" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/yellow, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFA" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering) "aFB" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering) "aFD" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) "aFG" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "vehicle1door"; name = "Vehicle Bay One" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "aFI" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aFJ" = ( /obj/structure/platform{ @@ -6141,17 +5005,12 @@ dir = 5; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north1) "aGa" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "aGb" = ( /obj/structure/ladder{ @@ -6162,18 +5021,13 @@ pixel_x = 23; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "aGg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_four) "aGj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -6181,9 +5035,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "aGk" = ( /obj/structure/machinery/door_control{ @@ -6193,22 +5045,15 @@ pixel_y = -8; req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "aGm" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "aGn" = ( /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "aGp" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -6224,15 +5069,10 @@ }, /obj/item/device/flashlight/lamp, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aGq" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/command/cic) "aGr" = ( /turf/open/floor/almayer, @@ -6250,10 +5090,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "aGz" = ( /obj/structure/window/framed/almayer, @@ -6276,9 +5113,7 @@ /area/almayer/hallways/upper/starboard) "aGH" = ( /obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aGN" = ( /turf/open/floor/almayer, @@ -6288,70 +5123,48 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north1) "aGQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north1) "aGS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/basketball) "aGV" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aGW" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/morgue) "aGX" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/morgue) "aGY" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aGZ" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/numbertwobunks) "aHa" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/morgue) "aHe" = ( /turf/closed/wall/almayer, @@ -6376,9 +5189,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aHs" = ( /obj/structure/disposalpipe/segment{ @@ -6408,9 +5219,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ id = "engie_store" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aHv" = ( /obj/effect/decal/warning_stripes{ @@ -6432,9 +5241,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ id = "engie_store" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aHw" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -6445,23 +5252,17 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aHK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aHM" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/engineering/port_atmos) "aHR" = ( /obj/effect/decal/warning_stripes{ @@ -6471,10 +5272,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "aHS" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -6487,10 +5285,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "aHX" = ( /obj/effect/decal/warning_stripes{ @@ -6499,18 +5294,14 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/numbertwobunks) "aHY" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/starboard_missiles) "aHZ" = ( /obj/structure/disposalpipe/segment{ @@ -6528,9 +5319,7 @@ /turf/open/floor/almayer, /area/almayer/command/cic) "aIh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "aIl" = ( /obj/structure/disposalpipe/segment, @@ -6540,10 +5329,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "aIo" = ( /obj/structure/window/framed/almayer/white, @@ -6567,19 +5353,13 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "aIv" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "aIw" = ( /obj/structure/platform{ @@ -6592,10 +5372,7 @@ dir = 9; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north1) "aIx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -6603,10 +5380,7 @@ /area/almayer/living/starboard_garden) "aIy" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_umbilical) "aIB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -6630,17 +5404,13 @@ pixel_x = -6 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "aID" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aIP" = ( /obj/effect/decal/warning_stripes{ @@ -6651,10 +5421,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/containment) "aIQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -6664,9 +5431,7 @@ req_access = null; req_access_txt = "1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/numbertwobunks) "aIT" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -6675,32 +5440,24 @@ name = "Telecommunications"; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "aIU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aIV" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "aIX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/tankerbunks) "aIY" = ( /obj/structure/machinery/light{ @@ -6714,9 +5471,7 @@ }, /obj/item/storage/firstaid/regular, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/shipboard/brig/medical) "aJc" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -6734,16 +5489,11 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/captain_mess) "aJf" = ( /obj/structure/machinery/floodlight, -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aJg" = ( /obj/effect/decal/warning_stripes{ @@ -6752,28 +5502,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "aJh" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering) "aJi" = ( /obj/structure/surface/table/almayer, /obj/item/stack/cable_coil, /obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "aJj" = ( /obj/structure/surface/table/almayer, @@ -6782,28 +5523,19 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "aJk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "aJl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "aJn" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ @@ -6813,20 +5545,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/containment) "aJp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/command/cichallway) "aJq" = ( /obj/structure/machinery/vending/snack, @@ -6834,28 +5560,20 @@ pixel_x = 8; pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "aJw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "aJG" = ( /obj/structure/bed/chair/office/dark{ dir = 8; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/command/cic) "aJI" = ( /obj/effect/decal/warning_stripes{ @@ -6869,10 +5587,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "aJJ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -6880,9 +5595,7 @@ /turf/open/floor/grass, /area/almayer/living/starboard_garden) "aJU" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "aKa" = ( /turf/open/floor/almayer, @@ -6892,10 +5605,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "aKg" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -6908,10 +5618,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "aKk" = ( /obj/structure/disposalpipe/segment, @@ -6925,10 +5632,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "aKo" = ( /obj/structure/machinery/light{ @@ -6940,10 +5644,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "aKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7001,10 +5702,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/cichallway) "aKv" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7013,14 +5711,10 @@ /area/almayer/command/cichallway) "aKy" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "aKz" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "aKE" = ( /obj/structure/machinery/light, @@ -7030,10 +5724,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "aKG" = ( /obj/structure/sink{ @@ -7045,9 +5736,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/pilotbunks) "aKH" = ( /obj/structure/machinery/light{ @@ -7056,9 +5745,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/pilotbunks) "aKN" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7068,9 +5755,7 @@ pixel_y = 10 }, /obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aKO" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7080,9 +5765,7 @@ /obj/item/storage/fancy/cigarettes/lady_finger{ pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "aKQ" = ( /turf/closed/wall/almayer/outer, @@ -7091,28 +5774,19 @@ /turf/closed/wall/almayer/outer, /area/almayer/shipboard/starboard_point_defense) "aKS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "aKU" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "aKV" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "aLc" = ( /obj/effect/step_trigger/clone_cleaner, @@ -7123,9 +5797,7 @@ /obj/structure/sign/safety/stairs{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "aLp" = ( /obj/structure/sign/safety/cryo{ @@ -7137,9 +5809,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/numbertwobunks) "aLx" = ( /obj/effect/decal/warning_stripes{ @@ -7167,9 +5837,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/hallways/lower/repair_bay) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ @@ -7199,10 +5867,7 @@ pixel_y = 28 }, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "aLT" = ( /turf/closed/wall/almayer, @@ -7224,10 +5889,7 @@ /obj/structure/closet/secure_closet/professor_dummy{ pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/upper_medical) "aMd" = ( /obj/structure/filingcabinet/seeds{ @@ -7240,14 +5902,10 @@ pixel_x = -11; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aMf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "aMg" = ( /obj/structure/sign/safety/intercom{ @@ -7270,15 +5928,10 @@ pixel_y = 16; req_access_txt = "28" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aMl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/upper/midship_hallway) "aMm" = ( /obj/structure/surface/table/almayer, @@ -7290,9 +5943,7 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aMo" = ( /obj/structure/machinery/alarm/almayer{ @@ -7303,9 +5954,7 @@ "aMq" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aMt" = ( /obj/structure/machinery/light{ @@ -7315,9 +5964,7 @@ /area/almayer/living/briefing) "aMw" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aMx" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ @@ -7330,14 +5977,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "aMy" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/starboard) "aMz" = ( /turf/open/floor/almayer, @@ -7346,19 +5989,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/squads/alpha) "aMC" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/squads/alpha) "aMD" = ( /obj/structure/surface/table/almayer, @@ -7378,9 +6015,7 @@ pixel_y = 7 }, /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "aMH" = ( /obj/structure/disposalpipe/segment{ @@ -7405,15 +6040,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/alpha_bravo_shared) "aMP" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/squads/alpha) "aMQ" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ @@ -7423,29 +6053,20 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) "aMT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "aMU" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "aMY" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "aNc" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "aNi" = ( /turf/closed/wall/almayer, @@ -7471,31 +6092,22 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "aNx" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/alpha_bravo_shared) "aNE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/upper/midship_hallway) "aNI" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "aNO" = ( /obj/effect/decal/warning_stripes{ @@ -7505,9 +6117,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/port) "aNQ" = ( /obj/structure/disposalpipe/segment{ @@ -7533,9 +6143,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) "aNW" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/shipboard/brig/starboard_hallway) "aNY" = ( /obj/effect/decal/warning_stripes{ @@ -7545,15 +6153,10 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/containment) "aOd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/containment) "aOe" = ( /obj/structure/surface/table/reinforced/prison, @@ -7568,27 +6171,19 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/almayer/medical/containment/cell) "aOq" = ( /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aOr" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aOs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "aOt" = ( /obj/structure/closet/secure_closet/engineering_welding, @@ -7597,9 +6192,7 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/telecomms) "aOy" = ( /obj/structure/machinery/light{ @@ -7608,23 +6201,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/squads/alpha) "aOz" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/squads/alpha) "aOB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aOC" = ( /obj/item/device/radio/intercom{ @@ -7632,50 +6217,35 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "aOE" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/north2) "aOF" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering) "aOG" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aOH" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aOK" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/squads/alpha) "aOL" = ( /obj/structure/disposalpipe/segment{ @@ -7691,9 +6261,7 @@ /area/almayer/squads/alpha) "aOM" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "aON" = ( /obj/structure/sign/safety/hazard{ @@ -7703,9 +6271,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "aOQ" = ( /obj/structure/closet/crate, @@ -7714,36 +6280,27 @@ /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "aOR" = ( /turf/open/floor/almayer, /area/almayer/living/chapel) "aOS" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_a_s) "aOU" = ( /obj/structure/platform{ dir = 4 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north2) "aOV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/kpack, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "aOW" = ( /obj/structure/surface/table/almayer, @@ -7756,9 +6313,7 @@ /obj/item/reagent_container/food/drinks/cans/souto/peach{ pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "aPa" = ( /obj/structure/machinery/light{ @@ -7782,23 +6337,17 @@ /obj/structure/surface/table/almayer, /obj/item/frame/table, /obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "aPi" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "aPj" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "aPl" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ @@ -7806,18 +6355,14 @@ layer = 4.1; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "aPn" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "aPo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7826,14 +6371,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "aPr" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/living/cryo_cells) "aPw" = ( /turf/closed/wall/almayer/outer, @@ -7844,19 +6385,13 @@ linked_dock = "almayer-lifeboat1"; throw_dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "aPz" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "aPB" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/command/cic) "aPC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -7869,18 +6404,14 @@ /area/almayer/hallways/upper/aft_hallway) "aPD" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "aPE" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "aPH" = ( /obj/structure/pipes/vents/pump{ @@ -7893,14 +6424,10 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "aPI" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/command/cic) "aPJ" = ( /obj/effect/decal/warning_stripes{ @@ -7931,9 +6458,7 @@ /area/almayer/maint/hull/upper/u_a_p) "aPS" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "aPT" = ( /turf/open/floor/plating/plating_catwalk, @@ -7942,10 +6467,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "aPV" = ( /obj/structure/sign/safety/high_voltage{ @@ -7955,9 +6477,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "aQb" = ( /obj/structure/disposalpipe/segment{ @@ -7973,10 +6493,7 @@ dir = 8; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/almayer/command/cic) "aQp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7984,9 +6501,7 @@ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "aQq" = ( /obj/structure/disposalpipe/segment{ @@ -7996,18 +6511,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "aQr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "aQx" = ( /obj/structure/window/framed/almayer, @@ -8027,18 +6538,13 @@ phone_id = "RO Office"; pixel_x = 16 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "aQz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) "aQF" = ( /turf/closed/wall/almayer, @@ -8053,9 +6559,7 @@ dir = 2; name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "aQH" = ( /obj/structure/disposalpipe/segment, @@ -8066,9 +6570,7 @@ dir = 2; name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "aQL" = ( /turf/closed/wall/almayer, @@ -8094,18 +6596,14 @@ layer = 4.1; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha) "aQW" = ( /obj/structure/machinery/vending/cola{ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "aQZ" = ( /obj/structure/machinery/botany/editor{ @@ -8117,9 +6615,7 @@ pixel_x = 5; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aRd" = ( /obj/structure/surface/table/reinforced/prison, @@ -8136,9 +6632,7 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "aRi" = ( /obj/structure/bed/chair/office/dark{ @@ -8152,9 +6646,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8170,15 +6662,10 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aRt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/almayer/command/cic) "aRu" = ( /obj/structure/foamed_metal, @@ -8188,17 +6675,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aRx" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aRy" = ( /turf/open/floor/almayer, @@ -8217,17 +6700,13 @@ icon_state = "poster8"; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aRC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aRE" = ( /obj/structure/machinery/alarm/almayer{ @@ -8235,9 +6714,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aRF" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -8250,9 +6727,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/morgue) "aRJ" = ( /obj/structure/ladder{ @@ -8292,49 +6767,32 @@ id = "southcheckpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/lower/port_midship_hallway) "aRP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/squads/bravo) "aRS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/upper_medical) "aRT" = ( /turf/open/floor/almayer, /area/almayer/squads/bravo) "aRU" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "aRX" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "aRZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/squads/bravo) "aSa" = ( /obj/effect/decal/warning_stripes{ @@ -8342,27 +6800,20 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "aSb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/upper_medical) "aSk" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/lower/engine_core) "aSn" = ( /obj/item/stack/sheet/mineral/plastic{ @@ -8373,9 +6824,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "aSo" = ( /obj/effect/decal/warning_stripes{ @@ -8409,42 +6858,31 @@ pixel_x = -10; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "aSq" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aSt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aSx" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aSA" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "aSE" = ( /obj/structure/bed/chair{ @@ -8457,10 +6895,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/squads/bravo) "aSI" = ( /obj/structure/machinery/firealarm{ @@ -8472,9 +6907,7 @@ /turf/open/floor/almayer, /area/almayer/squads/bravo) "aSJ" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "aSO" = ( /obj/structure/surface/table/reinforced/prison, @@ -8489,10 +6922,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/operating_room_two) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8506,10 +6936,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/north1) "aTg" = ( /turf/open/floor/wood/ship, @@ -8524,10 +6951,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "aTk" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -8549,52 +6973,36 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/living/offices) "aTr" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/offices) "aTv" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/bravo) "aTw" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "aTx" = ( /obj/structure/machinery/power/apc/almayer, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/squads/bravo) "aTy" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "aTz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8604,9 +7012,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aTA" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -8620,32 +7026,24 @@ /obj/item/tool/kitchen/utensil/knife{ pixel_x = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aTB" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aTE" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aTG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aTT" = ( /obj/structure/desertdam/decals/road_edge{ @@ -8668,28 +7066,19 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/offices) "aTZ" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/offices) "aUa" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north1) "aUd" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8701,9 +7090,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/port_atmos) "aUe" = ( /obj/structure/disposalpipe/segment{ @@ -8712,18 +7099,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/cichallway) "aUi" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "aUj" = ( /obj/structure/machinery/cm_vending/clothing/tl/bravo{ @@ -8736,9 +7118,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aUl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8748,9 +7128,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aUm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8759,9 +7137,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aUo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8774,9 +7150,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aUp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8784,9 +7158,7 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/donut_box, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aUq" = ( /obj/structure/bed/chair/comfy{ @@ -8795,23 +7167,16 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aUw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "aUB" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "aUC" = ( /obj/structure/machinery/light{ @@ -8821,9 +7186,7 @@ /obj/item/reagent_container/food/snacks/tofukabob, /obj/item/reagent_container/food/snacks/tofubreadslice, /obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aUH" = ( /turf/closed/wall/almayer, @@ -8835,9 +7198,7 @@ /obj/structure/surface/table/almayer, /obj/item/trash/cigbutt, /obj/item/ashtray/glass, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "aUM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8846,39 +7207,25 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/living/offices) "aUY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/squads/bravo) "aUZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/squads/bravo) "aVd" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/squads/bravo) "aVf" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "aVg" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -8890,33 +7237,25 @@ dir = 1; name = "\improper Officer's Quarters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "aVi" = ( /obj/structure/disposalpipe/segment, /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aVk" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "aVm" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/starboard_hallway) "aVo" = ( /obj/structure/machinery/light{ @@ -8935,64 +7274,43 @@ /obj/item/reagent_container/food/snacks/carpmeat, /obj/item/reagent_container/food/snacks/carpmeat, /obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "aVC" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "aVF" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/telecomms) "aVG" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/command/cichallway) "aVH" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cichallway) "aVI" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "aVK" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "aVL" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "aVM" = ( /obj/structure/disposalpipe/segment{ @@ -9010,18 +7328,14 @@ pixel_x = 23; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "aVU" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aVV" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -9029,16 +7343,11 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aVW" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "aVX" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -9051,9 +7360,7 @@ name = "\improper Officer's Quarters" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "aWb" = ( /obj/structure/machinery/computer/working_joe{ @@ -9073,19 +7380,14 @@ pixel_x = -17; pixel_y = -6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/ce_room) "aWc" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/engineering/port_atmos) "aWg" = ( /obj/structure/machinery/door_control{ @@ -9100,18 +7402,13 @@ pixel_y = 24; req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/chief_mp_office) "aWk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aWm" = ( /obj/structure/machinery/light{ @@ -9121,10 +7418,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north1) "aWn" = ( /obj/structure/machinery/light{ @@ -9132,10 +7426,7 @@ unslashable = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "aWo" = ( /obj/structure/pipes/unary/outlet_injector, @@ -9149,9 +7440,7 @@ /area/almayer/engineering/airmix) "aWq" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aWt" = ( /obj/structure/machinery/vending/coffee, @@ -9159,19 +7448,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "aWu" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "aWw" = ( /obj/structure/window/framed/almayer, @@ -9187,9 +7471,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/south1) "aWD" = ( /obj/structure/window/framed/almayer, @@ -9205,23 +7487,16 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Conference and Office Area" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "aWF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "aWM" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/upper/fore_hallway) "aWT" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -9230,9 +7505,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "aWV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -9271,30 +7544,21 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "aXe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "aXh" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aXj" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aXx" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/port_atmos) "aXA" = ( /obj/structure/sign/safety/hvac_old{ @@ -9306,10 +7570,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/engineering/port_atmos) "aXD" = ( /obj/structure/disposalpipe/segment, @@ -9318,9 +7579,7 @@ /area/almayer/hallways/upper/port) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "aYt" = ( /turf/open/floor/almayer, @@ -9329,15 +7588,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aYz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "aYC" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -9348,9 +7603,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "aYE" = ( /obj/structure/platform, @@ -9361,10 +7614,7 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south2) "aYH" = ( /obj/structure/safe/cl_office, @@ -9374,18 +7624,13 @@ /obj/structure/machinery/bioprinter{ stored_metal = 125 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/operating_room_one) "aYR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_two) "aZe" = ( /obj/structure/machinery/alarm/almayer{ @@ -9402,9 +7647,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "aZr" = ( /obj/structure/machinery/status_display{ @@ -9422,9 +7665,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ @@ -9438,10 +7679,7 @@ /area/almayer/lifeboat_pumps/south1) "aZC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "aZF" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -9449,23 +7687,17 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/stair_clone/upper) "aZI" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "aZK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "aZL" = ( /obj/effect/decal/warning_stripes{ @@ -9475,57 +7707,39 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZO" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZP" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZQ" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZR" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZV" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZW" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZX" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZY" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "aZZ" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -9533,22 +7747,15 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "baf" = ( /obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "bag" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "baw" = ( /turf/open/floor/almayer, @@ -9561,32 +7768,24 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "baI" = ( /turf/open/floor/plating, /area/almayer/hallways/hangar) "baJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "baM" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "baN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "baR" = ( /obj/structure/surface/table/almayer, @@ -9596,9 +7795,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "baW" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -9612,9 +7809,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "baZ" = ( /turf/closed/wall/almayer/white, @@ -9626,18 +7821,13 @@ /obj/structure/reagent_dispensers/fueltank{ anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "bbd" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_one) "bbe" = ( /obj/structure/machinery/light{ @@ -9649,9 +7839,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bbi" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ @@ -9661,9 +7849,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/medical) "bbr" = ( /obj/structure/window/framed/almayer, @@ -9679,28 +7865,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "bbz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "bbA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "bbS" = ( /turf/open/floor/plating/plating_catwalk, @@ -9713,9 +7890,7 @@ /area/almayer/shipboard/starboard_missiles) "bbY" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bbZ" = ( /obj/structure/bed/chair{ @@ -9732,9 +7907,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bcb" = ( /obj/effect/decal/warning_stripes{ @@ -9746,17 +7919,13 @@ /obj/structure/prop/almayer/hangar_stencil{ icon_state = "dropship2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bcc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bcd" = ( /obj/effect/decal/warning_stripes{ @@ -9765,9 +7934,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bcg" = ( /obj/effect/decal/warning_stripes{ @@ -9777,19 +7944,14 @@ /obj/structure/bed/sofa/south/white/left{ pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/maint/upper/u_m_p) "bcm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/hangar) "bco" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bcp" = ( /obj/effect/decal/warning_stripes{ @@ -9799,15 +7961,10 @@ icon_state = "S" }, /obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bct" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/maint/upper/u_a_p) "bcw" = ( /obj/effect/decal/warning_stripes{ @@ -9817,9 +7974,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bcx" = ( /obj/structure/machinery/light{ @@ -9832,23 +7987,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bcz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/chemistry) "bcA" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/chemistry) "bcC" = ( /obj/item/reagent_container/glass/beaker/bluespace, @@ -9857,30 +8004,20 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/chemistry) "bcD" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/chemistry) "bcE" = ( /obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bcK" = ( /obj/structure/machinery/smartfridge/chemistry, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/chemistry) "bcL" = ( /obj/structure/machinery/door_control{ @@ -9889,37 +8026,26 @@ normaldoorcontrol = 1; pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_one) "bcM" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "bcP" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "bcR" = ( /obj/structure/sink{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_one) "bcS" = ( /obj/structure/machinery/door_control{ @@ -9928,26 +8054,18 @@ pixel_y = 25 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_one) "bcV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "bcZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bda" = ( /obj/structure/machinery/door_control{ @@ -9956,10 +8074,7 @@ normaldoorcontrol = 1; pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_two) "bdd" = ( /turf/closed/wall/almayer, @@ -9978,9 +8093,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "bdl" = ( /turf/closed/wall/almayer, @@ -9993,31 +8106,22 @@ pixel_y = -1 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bdr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) "bds" = ( /obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdv" = ( /obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdw" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/living/cryo_cells) "bdy" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -10025,32 +8129,22 @@ name = "\improper Exterior Airlock"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/starboard_point_defense) "bdz" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "bdA" = ( /obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdD" = ( /obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdH" = ( /turf/open/space/basic, @@ -10074,9 +8168,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bdK" = ( /obj/structure/largecrate/random/case/small, @@ -10092,25 +8184,19 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bdO" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bdU" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bdV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -10124,35 +8210,25 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "bea" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "beg" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bei" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "bej" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "ben" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10162,9 +8238,7 @@ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "bep" = ( /obj/structure/surface/table/almayer, @@ -10189,10 +8263,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "ber" = ( /obj/effect/decal/warning_stripes{ @@ -10204,38 +8275,26 @@ name = "North Checkpoint Shutters"; req_one_access_txt = "3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bet" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/chemistry) "bev" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "bew" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "bez" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/operating_room_one) "beE" = ( /obj/structure/platform{ @@ -10258,9 +8317,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "beN" = ( /obj/structure/pipes/standard/cap/hidden{ @@ -10270,9 +8327,7 @@ pixel_x = 8; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "beP" = ( /obj/item/stack/catwalk, @@ -10288,30 +8343,21 @@ /area/almayer/living/briefing) "beR" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "beS" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "beT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "beU" = ( /obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "beV" = ( /obj/structure/disposalpipe/segment, @@ -10323,10 +8369,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "beZ" = ( /obj/structure/platform_decoration{ @@ -10338,34 +8381,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "bfl" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/living/cryo_cells) "bfm" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/living/cryo_cells) "bfn" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "bfo" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/cryo_cells) "bfs" = ( /turf/closed/wall/almayer/reinforced, @@ -10380,10 +8409,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/squads/alpha) "bfw" = ( /obj/structure/disposalpipe/segment{ @@ -10394,19 +8420,13 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bfx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bfy" = ( /obj/structure/disposalpipe/segment{ @@ -10421,10 +8441,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bfC" = ( /obj/structure/machinery/alarm/almayer{ @@ -10433,10 +8450,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bfD" = ( /obj/structure/disposalpipe/segment{ @@ -10445,10 +8459,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "bfE" = ( /obj/structure/pipes/vents/scrubber{ @@ -10457,10 +8468,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/squads/alpha) "bfJ" = ( /obj/structure/surface/table/almayer, @@ -10476,9 +8484,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bfO" = ( /obj/structure/pipes/vents/pump/on, @@ -10488,9 +8494,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bfY" = ( /obj/structure/surface/table/almayer, @@ -10501,17 +8505,13 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bgj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bgk" = ( /obj/structure/surface/table/almayer, @@ -10526,25 +8526,18 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/chemistry) "bgl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "bgm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "bgn" = ( /obj/structure/machinery/disposal, @@ -10555,10 +8548,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/operating_room_two) "bgr" = ( /obj/structure/disposalpipe/segment{ @@ -10566,28 +8556,18 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "bgs" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_two) "bgt" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/operating_room_two) "bgu" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/chemistry) "bgv" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -10602,9 +8582,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/operating_room_one) "bgw" = ( /obj/structure/window/framed/almayer/white, @@ -10628,25 +8606,19 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/operating_room_two) "bgz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "bgA" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "bgC" = ( /obj/structure/surface/table/reinforced/prison, @@ -10654,37 +8626,26 @@ /obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_one) "bgK" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/chapel) "bgM" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/hallways/upper/midship_hallway) "bgN" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "bgO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10693,10 +8654,7 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "bgP" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) "bgR" = ( /obj/structure/barricade/handrail{ @@ -10706,15 +8664,11 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "bgU" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "bgW" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ @@ -10722,17 +8676,13 @@ layer = 4.1; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "bgY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "bhf" = ( /obj/structure/machinery/light{ @@ -10742,24 +8692,17 @@ /obj/structure/sign/safety/laser{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "bhg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/cryo_cells) "bho" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) "bhq" = ( /obj/structure/machinery/light{ @@ -10774,54 +8717,40 @@ /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/chapel) "bhy" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "bhG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bhI" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "bhJ" = ( /obj/structure/machinery/cm_vending/clothing/staff_officer{ density = 0; pixel_x = -30 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "bhR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "bhT" = ( /obj/structure/cargo_container/lockmart/mid{ @@ -10846,9 +8775,7 @@ pixel_x = 8; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "biq" = ( /obj/structure/surface/table/almayer, @@ -10861,10 +8788,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/chemistry) "biu" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -10879,9 +8803,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/chemistry) "biy" = ( /obj/structure/pipes/unary/freezer, @@ -10892,10 +8814,7 @@ pixel_x = 20; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/cryo_tubes) "biA" = ( /turf/closed/wall/almayer/white, @@ -10903,9 +8822,7 @@ "biC" = ( /obj/structure/largecrate/random/case, /obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "biF" = ( /obj/structure/surface/table/reinforced/prison, @@ -10920,10 +8837,7 @@ pixel_x = -8; pixel_y = 14 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_medbay) "biJ" = ( /obj/structure/flora/pottedplant{ @@ -10937,18 +8851,13 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "biL" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north2) "biV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -10979,23 +8888,16 @@ "bjs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bjt" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "bju" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "bjv" = ( /obj/structure/disposalpipe/junction, @@ -11005,10 +8907,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) "bjA" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/squads/alpha) "bjD" = ( /obj/structure/disposalpipe/segment{ @@ -11018,9 +8917,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "bjQ" = ( /obj/structure/machinery/shower{ @@ -11037,68 +8934,48 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bjZ" = ( /obj/structure/machinery/cm_vending/clothing/marine/snowflake, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/gym) "bkb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/aft_hallway) "bkd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bkg" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "bkh" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bko" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bks" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bky" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/cryo_tubes) "bkz" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -11112,9 +8989,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lockerroom) "bkA" = ( /turf/closed/wall/almayer/white, @@ -11135,10 +9010,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/maint/upper/u_m_p) "bkN" = ( /obj/item/storage/firstaid/toxin{ @@ -11163,9 +9035,7 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "bkS" = ( /obj/effect/decal/warning_stripes{ @@ -11185,9 +9055,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "bkU" = ( /obj/effect/decal/warning_stripes{ @@ -11196,10 +9064,7 @@ /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/start/senior, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "blf" = ( /obj/structure/machinery/power/apc/almayer{ @@ -11208,9 +9073,7 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bli" = ( /obj/structure/machinery/door/window/brigdoor/southright{ @@ -11229,14 +9092,10 @@ pixel_y = 30 }, /obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bll" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bln" = ( /obj/structure/sign/safety/cryo{ @@ -11244,9 +9103,7 @@ pixel_y = 27 }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "blp" = ( /obj/structure/surface/table/almayer, @@ -11260,9 +9117,7 @@ pixel_x = 10; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "blq" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -11276,9 +9131,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, @@ -11291,40 +9144,25 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "blA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "blB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "blJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "blZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lockerroom) "bmb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "bmc" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -11337,9 +9175,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/operating_room_three) "bmd" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -11352,9 +9188,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/operating_room_four) "bmh" = ( /obj/structure/machinery/vending/cigarette{ @@ -11377,26 +9211,18 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "bmi" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/operating_room_three) "bmj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_three) "bmk" = ( /obj/structure/machinery/disposal, @@ -11407,10 +9233,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/operating_room_four) "bml" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11421,24 +9244,18 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "bmn" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_lobby) "bmp" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/clothing/glasses/welding, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "bmr" = ( /obj/structure/pipes/vents/pump{ @@ -11456,9 +9273,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "bmz" = ( /obj/structure/surface/table/almayer, @@ -11466,10 +9281,7 @@ pixel_x = 10 }, /obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "bmB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11478,9 +9290,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/squads/req) "bmC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -11490,15 +9300,10 @@ dir = 8; icon_state = "pipe-y" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bmD" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "bmF" = ( /obj/structure/machinery/light{ @@ -11514,23 +9319,16 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "bmW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bmX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/offices) "bng" = ( /obj/structure/machinery/vending/cigarette{ @@ -11543,18 +9341,13 @@ pixel_x = 17; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/living/offices) "bni" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bnj" = ( /obj/item/storage/box/pillbottles, @@ -11564,10 +9357,7 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/chemistry) "bno" = ( /obj/structure/disposalpipe/junction{ @@ -11580,9 +9370,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/squads/bravo) "bnr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11595,9 +9383,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "bnt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11615,15 +9401,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "bny" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "bnA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11635,9 +9417,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "bnB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11646,10 +9426,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11663,10 +9440,7 @@ pixel_x = -28 }, /obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_lobby) "bnR" = ( /obj/structure/disposalpipe/segment{ @@ -11674,17 +9448,13 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "bnS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/megaphone, /obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "bnT" = ( /obj/structure/machinery/door_control{ @@ -11693,10 +9463,7 @@ normaldoorcontrol = 1; pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_three) "bnX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11709,9 +9476,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bnZ" = ( /obj/structure/surface/table/almayer, @@ -11719,18 +9484,13 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) "bof" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "boh" = ( /obj/structure/machinery/door_control{ @@ -11739,32 +9499,21 @@ normaldoorcontrol = 1; pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_four) "bom" = ( /obj/structure/sign/safety/south{ pixel_x = -17; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/lower/port_midship_hallway) "bop" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering/port) "boq" = ( /obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "bos" = ( /turf/closed/wall/almayer, @@ -11776,9 +9525,7 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) "boz" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -11792,10 +9539,7 @@ dir = 2; id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/req) "boB" = ( /obj/effect/decal/warning_stripes{ @@ -11804,9 +9548,7 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) "boV" = ( /obj/structure/cargo_container/wy/left, @@ -11820,23 +9562,17 @@ /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "boY" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "bpa" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "bpd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11853,32 +9589,24 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/port_missiles) "bpe" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "bpj" = ( /obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "bpo" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/regular, /obj/item/clothing/glasses/regular, /obj/item/clothing/glasses/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bpv" = ( /obj/effect/decal/warning_stripes{ @@ -11890,25 +9618,19 @@ name = "South Checkpoint Shutters"; req_one_access_txt = "3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bpw" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "bpz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "bpA" = ( /obj/structure/surface/table/almayer, @@ -11918,36 +9640,26 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "bpC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) "bpG" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "bpH" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "bpI" = ( /obj/structure/closet/secure_closet/fridge/dry/stock, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "bpK" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "bpL" = ( /obj/structure/sign/poster{ @@ -11956,10 +9668,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/squads/alpha) "bpQ" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -11980,16 +9689,11 @@ /area/almayer/squads/req) "bpT" = ( /obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "bpV" = ( /obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "bqc" = ( /turf/open/floor/almayer, @@ -12005,15 +9709,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "bqF" = ( /obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "bqH" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -12033,30 +9733,20 @@ id = "medicalemergency"; name = "\improper Medical Bay Lockdown" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "bqL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "bqN" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lockerroom) "bqR" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "bqT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12093,15 +9783,10 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "bqZ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bra" = ( /obj/structure/machinery/light{ @@ -12111,9 +9796,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/chief_mp_office) "brb" = ( /obj/structure/pipes/vents/scrubber, @@ -12124,56 +9807,39 @@ /obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) "bri" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/req) "brj" = ( /obj/structure/machinery/line_nexter{ id = "line1"; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "brn" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "brp" = ( /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) "brq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "brr" = ( /obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "brs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "brt" = ( /obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "brv" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -12185,10 +9851,7 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/squads/alpha) "brA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12210,22 +9873,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "brS" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "brW" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "brY" = ( /obj/structure/pipes/vents/pump, @@ -12235,19 +9892,14 @@ /obj/structure/machinery/line_nexter/med{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "bsp" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "bst" = ( /turf/closed/wall/almayer/white, @@ -12270,9 +9922,7 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "bsz" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "bsD" = ( /obj/structure/closet{ @@ -12288,18 +9938,14 @@ /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/grey, /obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "bsF" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "bsG" = ( /obj/structure/machinery/disposal{ @@ -12310,20 +9956,14 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/cryo_cells) "bsJ" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 4; id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/req) "bsK" = ( /obj/effect/landmark/supply_elevator, @@ -12334,10 +9974,7 @@ dir = 8; id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/almayer/squads/req) "bsN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12345,15 +9982,11 @@ }, /obj/structure/surface/table/almayer, /obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "bsP" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "bsQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -12361,10 +9994,7 @@ /obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_three) "bsR" = ( /obj/structure/surface/table/almayer, @@ -12374,31 +10004,22 @@ /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "bsS" = ( /obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bsU" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/squads/alpha) "bsW" = ( /obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "btb" = ( /obj/structure/window/framed/almayer, @@ -12416,26 +10037,19 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/alpha) "bti" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/intel{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/command/computerlab) "btr" = ( /obj/structure/closet/boxinggloves, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "btv" = ( /obj/structure/machinery/light, @@ -12449,18 +10063,14 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "btC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "btD" = ( /turf/open/floor/almayer, @@ -12495,18 +10105,13 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "btX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_three) "btY" = ( /obj/structure/machinery/door_control{ @@ -12521,17 +10126,11 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) "buc" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "bui" = ( /obj/structure/surface/table/reinforced/prison, @@ -12546,29 +10145,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/operating_room_one) "buj" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_one) "bur" = ( /obj/structure/prop/almayer/missile_tube, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_missiles) "buu" = ( /obj/structure/disposalpipe/segment{ @@ -12577,17 +10167,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "buv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "buz" = ( /obj/structure/supply_drop/charlie, @@ -12597,15 +10183,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/offices) "buM" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "buN" = ( /obj/structure/machinery/cm_vending/gear/smartgun, @@ -12616,21 +10198,15 @@ /obj/structure/sign/safety/ammunition{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "buO" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "buS" = ( /obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "buY" = ( /obj/structure/stairs{ @@ -12644,9 +10220,7 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "bvb" = ( /obj/structure/machinery/light{ @@ -12659,9 +10233,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bvf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -12673,19 +10245,14 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bvz" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_one) "bvD" = ( /obj/structure/disposalpipe/segment, @@ -12695,16 +10262,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/lower/port_fore_hallway) "bvF" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/cryo_cells) "bvH" = ( /obj/structure/surface/table/almayer, @@ -12713,9 +10274,7 @@ pixel_x = -8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "bvX" = ( /obj/structure/window/framed/almayer, @@ -12732,15 +10291,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "bwe" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "bwf" = ( /obj/structure/disposalpipe/segment{ @@ -12762,10 +10317,7 @@ /obj/item/trash/USCMtray{ pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/squads/alpha) "bwh" = ( /obj/structure/disposalpipe/segment{ @@ -12782,10 +10334,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/alpha) "bwl" = ( /obj/effect/decal/warning_stripes{ @@ -12799,18 +10348,14 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bwm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bwn" = ( /obj/structure/disposalpipe/segment, @@ -12835,9 +10380,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "bwG" = ( /turf/closed/wall/almayer, @@ -12847,16 +10390,11 @@ /obj/structure/machinery/computer/crew/alt{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_medbay) "bwP" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "bwR" = ( /obj/structure/surface/table/reinforced/prison, @@ -12864,10 +10402,7 @@ dir = 1; pixel_y = -4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lockerroom) "bwT" = ( /obj/effect/decal/medical_decals{ @@ -12878,10 +10413,7 @@ name = "General Listening Channel"; pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "bxf" = ( /obj/effect/decal/warning_stripes{ @@ -12890,9 +10422,7 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) "bxg" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -12904,9 +10434,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/req) "bxi" = ( /obj/effect/decal/warning_stripes{ @@ -12915,21 +10443,14 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) "bxm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "bxn" = ( /obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/cryo_cells) "bxA" = ( /obj/structure/machinery/power/apc/almayer/hardened, @@ -12937,9 +10458,7 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "bxB" = ( /obj/structure/disposalpipe/segment{ @@ -12965,9 +10484,7 @@ icon_state = "SW-out"; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "bxE" = ( /obj/structure/disposalpipe/segment{ @@ -12975,9 +10492,7 @@ }, /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "bxN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13000,19 +10515,13 @@ /area/almayer/maint/hull/upper/u_f_p) "byb" = ( /obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_lobby) "byc" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/operating_room_three) "byd" = ( /obj/structure/surface/table/reinforced/prison, @@ -13025,10 +10534,7 @@ name = "ship-grade camera" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/operating_room_four) "bye" = ( /obj/structure/machinery/door_control{ @@ -13038,9 +10544,7 @@ pixel_y = -25 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_four) "bym" = ( /obj/structure/disposalpipe/segment{ @@ -13050,9 +10554,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "byn" = ( /obj/effect/landmark/start/marine/leader/bravo, @@ -13061,25 +10563,18 @@ /area/almayer/squads/bravo) "byr" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "byt" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, /obj/item/tool/weldingtool, /obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "byu" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "byv" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -13096,25 +10591,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "bzg" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "bzo" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_four) "bzz" = ( /obj/structure/disposalpipe/trunk{ @@ -13127,9 +10615,7 @@ /obj/structure/machinery/door/poddoor/almayer{ id = "tcomms" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) "bzI" = ( /obj/effect/decal/warning_stripes{ @@ -13137,10 +10623,7 @@ }, /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "bzQ" = ( /obj/structure/largecrate/random/case, @@ -13150,15 +10633,10 @@ /obj/structure/sign/safety/ladder{ pixel_x = -18 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "bzS" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/chemistry) "bAd" = ( /obj/structure/disposalpipe/segment{ @@ -13167,15 +10645,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/squads/alpha) "bAe" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/north, /area/almayer/command/lifeboat) "bAh" = ( /obj/structure/disposalpipe/segment, @@ -13194,9 +10667,7 @@ dir = 1; name = "\improper High Security Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/securestorage) "bAy" = ( /obj/structure/closet/fireaxecabinet{ @@ -13207,37 +10678,25 @@ /area/almayer/maint/hull/upper/u_f_s) "bAH" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/south1) "bAJ" = ( /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/briefing) "bAK" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/weapon_room) "bAN" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bAO" = ( /obj/structure/reagent_dispensers/fueltank, @@ -13245,28 +10704,20 @@ pixel_x = 7; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bAP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bAQ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bAS" = ( /obj/structure/largecrate/random/barrel/blue, @@ -13277,27 +10728,20 @@ /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bAY" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "bAZ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "bBd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -13306,24 +10750,18 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cryo_cells) "bBe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cryo_cells) "bBg" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "bBl" = ( /obj/structure/machinery/light{ @@ -13333,10 +10771,7 @@ /area/almayer/lifeboat_pumps/north1) "bBu" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bBv" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -13344,36 +10779,24 @@ pixel_x = 7; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bBx" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bBy" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bBz" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bBA" = ( /turf/closed/wall/almayer/reinforced, @@ -13406,14 +10829,10 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "bBH" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) "bBN" = ( /obj/structure/machinery/light, @@ -13426,9 +10845,7 @@ name = "South Checkpoint Shutters"; req_one_access_txt = "3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bBR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13447,9 +10864,7 @@ /obj/structure/machinery/computer/cameras/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bCd" = ( /obj/structure/window/framed/almayer/white, @@ -13459,18 +10874,13 @@ /turf/open/floor/plating, /area/almayer/medical/lower_medical_lobby) "bCe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "bCg" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bCh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -13487,24 +10897,18 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "bCm" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "bCn" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "bCs" = ( /obj/docking_port/stationary/escape_pod/cl, @@ -13514,9 +10918,7 @@ /obj/structure/bed/chair/comfy/alpha{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "bCv" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -13537,18 +10939,14 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Briefing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "bCy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "bCz" = ( /obj/structure/flora/pottedplant{ @@ -13560,19 +10958,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) "bCB" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "bCD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/cryo_cells) "bCG" = ( /obj/structure/disposalpipe/segment{ @@ -13583,84 +10975,61 @@ /area/almayer/living/cryo_cells) "bCM" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "bCN" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "bCP" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/squads/alpha) "bCR" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "bCY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bCZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) "bDs" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "bDv" = ( /obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "bDF" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room/notunnel) "bDH" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bDI" = ( /obj/structure/largecrate/random/case/double, @@ -13673,39 +11042,29 @@ name = "\improper Auxiliary Combat Support Secondary Preparations"; req_one_access_txt = "19;27;22" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cryo_cells) "bDO" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "bDP" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "bDQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bDS" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bDT" = ( /obj/structure/machinery/light{ @@ -13714,9 +11073,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bDU" = ( /obj/structure/machinery/disposal, @@ -13726,26 +11083,20 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "bDV" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bDW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bDX" = ( /obj/structure/closet/crate, @@ -13753,9 +11104,7 @@ /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/marine, /obj/item/storage/backpack/marine, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bDY" = ( /obj/structure/closet/crate, @@ -13770,16 +11119,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bDZ" = ( /obj/structure/closet/crate/internals, /obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bEa" = ( /obj/effect/decal/warning_stripes{ @@ -13787,35 +11132,22 @@ }, /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/living/cryo_cells) "bEb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/living/cryo_cells) "bEc" = ( /obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bEd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/cryo_cells) "bEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bEh" = ( /obj/structure/surface/rack, @@ -13824,10 +11156,7 @@ /obj/item/storage/backpack/marine, /obj/item/storage/backpack/marine, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "bEi" = ( /obj/structure/supply_drop/alpha, @@ -13841,10 +11170,7 @@ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/hallways/lower/starboard_aft_hallway) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, @@ -13863,32 +11189,22 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/squads/req) "bEr" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bEs" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bEv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/shipboard/brig/general_equipment) "bEw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -13910,9 +11226,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bED" = ( /obj/effect/decal/warning_stripes{ @@ -13925,9 +11239,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bEE" = ( /obj/effect/decal/warning_stripes{ @@ -13942,23 +11254,16 @@ dir = 4 }, /obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bEF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/shipboard/weapon_room) "bEG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/squads/alpha) "bEK" = ( /obj/effect/decal/warning_stripes{ @@ -13971,9 +11276,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bEN" = ( /obj/effect/decal/warning_stripes{ @@ -13983,9 +11286,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bEO" = ( /obj/structure/machinery/light{ @@ -13999,9 +11300,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bEP" = ( /obj/item/device/radio/marine{ @@ -14022,9 +11321,7 @@ /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "bER" = ( /obj/item/storage/box/gloves{ @@ -14060,41 +11357,31 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "bES" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bFg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 3.3 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "bFj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bFk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -14113,23 +11400,17 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "bFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/living/cryo_cells) "bFq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/living/cryo_cells) "bFr" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14137,28 +11418,19 @@ /area/almayer/living/auxiliary_officer_office) "bFs" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/living/cryo_cells) "bFt" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "bFA" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "bFB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14173,9 +11445,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "bFJ" = ( /obj/docking_port/stationary/marine_dropship/almayer_hangar_2, @@ -14195,9 +11465,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "bGa" = ( /obj/effect/step_trigger/clone_cleaner, @@ -14208,24 +11476,17 @@ /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/starboard) "bGc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/command/lifeboat) "bGn" = ( /obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "bGo" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -14242,9 +11503,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGu" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14257,57 +11516,41 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bGy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "bGz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) "bGF" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGG" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGH" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGI" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGJ" = ( /obj/effect/decal/warning_stripes{ @@ -14318,18 +11561,14 @@ }, /obj/structure/prop/almayer/hangar_stencil, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGK" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGL" = ( /obj/effect/decal/warning_stripes{ @@ -14339,57 +11578,43 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGM" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGN" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGO" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGP" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGQ" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bGU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14397,15 +11622,10 @@ /area/almayer/squads/req) "bHg" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "bHk" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell/cl) "bHp" = ( /obj/structure/disposalpipe/trunk{ @@ -14420,9 +11640,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bHq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -14436,9 +11654,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/navigation) "bHu" = ( /obj/structure/machinery/light{ @@ -14455,17 +11671,13 @@ /area/almayer/hallways/hangar) "bHD" = ( /obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "bHG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "bHI" = ( /obj/structure/anti_air_cannon, @@ -14484,10 +11696,7 @@ /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/navigation) "bIe" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -14496,9 +11705,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) "bIj" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner, /area/almayer/hallways/lower/port_midship_hallway) "bIn" = ( /obj/structure/machinery/computer/cameras/almayer_network, @@ -14507,19 +11714,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/navigation) "bIo" = ( /obj/structure/cargo_container/lockmart/left{ layer = 3.1; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bIp" = ( /obj/effect/step_trigger/ares_alert/mainframe, @@ -14529,18 +11731,14 @@ plane = -7 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "bIs" = ( /obj/structure/largecrate/supply/supplies/mre, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bIw" = ( /obj/structure/surface/table/almayer, @@ -14548,10 +11746,7 @@ dir = 1 }, /obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/navigation) "bIx" = ( /obj/structure/machinery/status_display{ @@ -14559,10 +11754,7 @@ }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/navigation) "bIy" = ( /obj/item/device/radio/intercom{ @@ -14585,9 +11777,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "bIM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14603,10 +11793,7 @@ icon_state = "W"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/hallways/lower/port_fore_hallway) "bIU" = ( /obj/structure/disposalpipe/segment, @@ -14619,10 +11806,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/squads/bravo) "bIW" = ( /obj/effect/decal/warning_stripes{ @@ -14642,9 +11826,7 @@ pixel_x = 9; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cryo_cells) "bJf" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, @@ -14670,9 +11852,7 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/auxiliary_officer_office) "bJt" = ( /turf/closed/wall/almayer, @@ -14685,10 +11865,7 @@ dir = 4 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "bJC" = ( /turf/closed/wall/almayer, @@ -14700,10 +11877,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/squads/bravo) "bJH" = ( /obj/structure/surface/table/almayer, @@ -14726,10 +11900,7 @@ dir = 8 }, /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "bJX" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14743,10 +11914,7 @@ /area/almayer/shipboard/navigation) "bJZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "bKb" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14757,24 +11925,16 @@ req_access = null; req_one_access_txt = "7;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/weapon_room) "bKd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, /obj/item/storage/firstaid/fire, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) "bKf" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/navigation) "bKk" = ( /obj/item/tool/wrench{ @@ -14792,9 +11952,7 @@ /obj/item/storage/beer_pack, /obj/item/reagent_container/food/drinks/cans/beer, /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "bKn" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -14804,24 +11962,15 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/weapon_room) "bKp" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bKq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "bKs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14831,9 +11980,7 @@ /area/almayer/shipboard/navigation) "bKt" = ( /obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bKu" = ( /obj/structure/cargo_container/arious/mid, @@ -14843,14 +11990,10 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bKA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bKC" = ( /obj/structure/surface/table/almayer, @@ -14865,9 +12008,7 @@ /obj/structure/window{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "bKI" = ( /obj/structure/disposalpipe/segment{ @@ -14880,9 +12021,7 @@ /area/almayer/shipboard/brig/starboard_hallway) "bKJ" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/cryo_cells) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, @@ -14904,10 +12043,7 @@ "bKX" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "bLc" = ( /obj/structure/surface/rack, @@ -14920,15 +12056,11 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "bLf" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14950,10 +12082,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "bLk" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -14963,18 +12092,12 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/weapon_room) "bLl" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bLm" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -14987,26 +12110,17 @@ /obj/structure/machinery/keycard_auth{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/navigation) "bLo" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/navigation) "bLp" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/navigation) "bLq" = ( /obj/structure/disposalpipe/segment{ @@ -15016,10 +12130,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/navigation) "bLr" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -15029,10 +12140,7 @@ dir = 4 }, /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) "bLs" = ( /obj/structure/disposalpipe/segment{ @@ -15050,9 +12158,7 @@ }, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bLx" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -15086,9 +12192,7 @@ /area/almayer/engineering/airmix) "bLD" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bLF" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -15101,15 +12205,10 @@ closeOtherId = "brigmaint_n"; name = "\improper Brig" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "bLH" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/weapon_room) "bLJ" = ( /obj/structure/machinery/light{ @@ -15117,10 +12216,7 @@ }, /obj/structure/surface/rack, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bLO" = ( /obj/structure/bed/chair{ @@ -15136,19 +12232,14 @@ /area/almayer/living/offices/flight) "bLX" = ( /obj/vehicle/powerloader, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bMa" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/squads/req) "bMf" = ( /obj/item/device/radio/intercom{ @@ -15170,9 +12261,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "bMu" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ @@ -15185,52 +12274,35 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "bMx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/squads/charlie) "bMy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) "bMA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "bMC" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/almayer/squads/charlie) "bMD" = ( /obj/structure/machinery/vending/cigarette{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "bME" = ( /obj/structure/surface/rack, @@ -15238,9 +12310,7 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "bMJ" = ( /obj/structure/machinery/light, @@ -15260,10 +12330,7 @@ "bMO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "bMP" = ( /obj/structure/pipes/vents/pump{ @@ -15275,19 +12342,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "bMS" = ( /obj/structure/surface/table/almayer, /obj/item/folder/red, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bMT" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -15301,38 +12362,25 @@ pixel_x = 8; pixel_y = -24 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) "bMU" = ( /obj/structure/surface/table/almayer, /obj/item/folder/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) "bMZ" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "bNa" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/navigation) "bNb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/navigation) "bNe" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -15341,10 +12389,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bNf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15365,10 +12410,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/living/port_emb) "bNi" = ( /obj/structure/surface/table/almayer, @@ -15376,16 +12418,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/navigation) "bNk" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/navigation) "bNl" = ( /obj/structure/machinery/light{ @@ -15394,10 +12430,7 @@ /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) "bNm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/weapon_room) "bNn" = ( /obj/structure/surface/table/almayer, @@ -15406,10 +12439,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "bNo" = ( /obj/structure/bed/chair/office/dark, @@ -15419,18 +12449,13 @@ /obj/structure/surface/table/almayer, /obj/item/tool/wirecutters, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) "bNr" = ( /obj/structure/sign/safety/storage{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "bNs" = ( /obj/structure/bed/chair/office/light{ @@ -15447,9 +12472,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/navigation) "bNw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -15461,18 +12484,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "bNA" = ( /obj/structure/machinery/computer/ordercomp, /obj/structure/sign/safety/galley{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bNB" = ( /obj/structure/surface/table/almayer, @@ -15481,32 +12500,23 @@ /obj/item/tool/hand_labeler, /obj/item/clipboard, /obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bNC" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "bNE" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) "bNF" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner, /area/almayer/squads/charlie) "bNG" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ @@ -15518,34 +12528,20 @@ "bNL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) "bNM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "bNN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) "bNP" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bNQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "bNS" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -15553,48 +12549,35 @@ }, /obj/structure/surface/table/almayer, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/navigation) "bOq" = ( /obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "bOs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/weapon_room) "bOw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "bOx" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "bOC" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/hangar) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15615,9 +12598,7 @@ name = "\improper Briefing Room" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "bOK" = ( /obj/structure/machinery/door_control{ @@ -15634,9 +12615,7 @@ req_one_access_txt = "1;21" }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bOM" = ( /obj/structure/machinery/alarm/almayer{ @@ -15645,10 +12624,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bON" = ( /obj/structure/machinery/light{ @@ -15657,10 +12633,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bOO" = ( /obj/structure/machinery/firealarm{ @@ -15669,10 +12642,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bOQ" = ( /obj/structure/surface/table/almayer, @@ -15686,10 +12656,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "bOT" = ( /obj/structure/machinery/firealarm{ @@ -15703,10 +12670,7 @@ dir = 1 }, /obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/sea_office) "bOZ" = ( /obj/structure/machinery/light{ @@ -15715,26 +12679,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/north, /area/almayer/squads/charlie) "bPa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/almayer/squads/charlie) "bPg" = ( /obj/vehicle/powerloader, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/shipboard/weapon_room) "bPh" = ( /obj/item/device/radio/intercom{ @@ -15746,10 +12701,7 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "bPi" = ( /obj/structure/disposalpipe/segment, @@ -15768,23 +12720,16 @@ /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_lobby) "bPn" = ( /obj/structure/machinery/computer/orbital_cannon_console, /obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "bPo" = ( /obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "bPq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -15815,25 +12760,19 @@ dir = 8 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "bPC" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/shipboard/weapon_room) "bPD" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bPF" = ( /turf/closed/wall/almayer/white/outer_tile, @@ -15843,9 +12782,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bPH" = ( /obj/structure/machinery/light/small{ @@ -15855,19 +12792,14 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/processing) "bPJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "bPL" = ( /obj/structure/machinery/firealarm{ @@ -15883,20 +12815,14 @@ /turf/open/floor/almayer, /area/almayer/living/cryo_cells) "bPM" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/living/cryo_cells) "bPO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, +/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/almayer/living/briefing) "bQc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -15913,29 +12839,21 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "bQt" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bQz" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bQA" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "bQD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15948,9 +12866,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "bQE" = ( /obj/structure/surface/rack, @@ -15958,9 +12874,7 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bQG" = ( /obj/structure/surface/table/almayer, @@ -15970,9 +12884,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bQI" = ( /obj/structure/surface/table/almayer, @@ -15983,9 +12895,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "bQM" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -15995,10 +12905,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) "bQQ" = ( /obj/structure/sign/ROsign{ @@ -16008,9 +12915,7 @@ /area/almayer/squads/req) "bQS" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "bQU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -16029,9 +12934,7 @@ /turf/closed/wall/almayer, /area/almayer/squads/charlie) "bRa" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/living/cryo_cells) "bRc" = ( /obj/structure/machinery/light{ @@ -16050,9 +12953,7 @@ /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16062,9 +12963,7 @@ dir = 4 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "bRo" = ( /obj/structure/disposalpipe/segment, @@ -16076,18 +12975,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/starboard_umbilical) "bRO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "bRP" = ( /obj/structure/machinery/body_scanconsole, @@ -16097,10 +12991,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "bRV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16113,32 +13004,20 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/squads/bravo) "bSa" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/living/cryo_cells) "bSb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "bSe" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/squads/bravo) "bSf" = ( /turf/closed/wall/almayer, @@ -16149,10 +13028,7 @@ pixel_x = -32; vend_x_offset = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/squads/bravo) "bSv" = ( /turf/closed/wall/almayer, @@ -16172,18 +13048,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "bSH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "bSJ" = ( /turf/closed/wall/almayer, @@ -16205,17 +13076,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "bSR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bST" = ( /obj/structure/closet/secure_closet/hydroresearch, @@ -16225,27 +13092,21 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "bSZ" = ( /obj/structure/machinery/vending/coffee{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "bTa" = ( /obj/structure/machinery/vending/cola{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "bTb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -16272,9 +13133,7 @@ pixel_x = 8; pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/tankerbunks) "bTq" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -16299,27 +13158,19 @@ /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) "bTx" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) "bTy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/squads/delta) "bTz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "bTA" = ( /turf/open/floor/almayer, @@ -16328,16 +13179,10 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "bTE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/squads/delta) "bTG" = ( /obj/structure/surface/table/almayer, @@ -16345,10 +13190,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "bTH" = ( /turf/open/floor/almayer, @@ -16358,28 +13200,20 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "bTM" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "bTN" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "bTO" = ( /turf/open/floor/almayer, @@ -16388,14 +13222,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "bTS" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "bTT" = ( /obj/structure/window/framed/almayer/hull, @@ -16408,9 +13238,7 @@ desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." }, /obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "bTV" = ( /obj/item/bedsheet/brown{ @@ -16437,15 +13265,11 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/tankerbunks) "bTW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "bTY" = ( /obj/structure/disposalpipe/segment, @@ -16453,10 +13277,7 @@ /area/almayer/hallways/upper/port) "bUa" = ( /obj/structure/closet, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/computerlab) "bUb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -16465,27 +13286,20 @@ /obj/structure/bed/chair/comfy/bravo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "bUf" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) "bUi" = ( /obj/structure/sign/poster{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/charlie_delta_shared) "bUo" = ( /obj/structure/sign/safety/ammunition{ @@ -16496,9 +13310,7 @@ pixel_y = -32 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/req) "bUp" = ( /obj/structure/surface/table/almayer, @@ -16538,10 +13350,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "bUy" = ( /obj/structure/closet/crate/ammo, @@ -16554,9 +13363,7 @@ pixel_x = -26 }, /obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "bUH" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -16566,9 +13373,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "bUN" = ( /obj/structure/surface/table/almayer, @@ -16580,22 +13385,16 @@ /area/almayer/squads/delta) "bUO" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "bUQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "bUT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "bUU" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ @@ -16605,14 +13404,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) "bVb" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "bVd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "bVe" = ( /obj/structure/closet/l3closet/general, @@ -16626,33 +13421,23 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/squads/delta) "bVo" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/squads/delta) "bVq" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "bVr" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16665,17 +13450,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) "bVw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/living/briefing) "bVy" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "bVE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -16685,9 +13465,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "bVM" = ( /obj/structure/disposalpipe/segment, @@ -16695,9 +13473,7 @@ /area/almayer/hallways/hangar) "bVN" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "bVR" = ( /obj/effect/decal/cleanable/dirt, @@ -16712,9 +13488,7 @@ name = "\improper Exterior Airlock"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/port_point_defense) "bWd" = ( /obj/structure/machinery/light{ @@ -16723,30 +13497,21 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "bWe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "bWf" = ( /obj/structure/machinery/light, /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "bWg" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "bWh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -16754,48 +13519,33 @@ name = "\improper Evacuation Airlock SU-4"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "bWn" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "bWo" = ( /obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "bWp" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "bWq" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "bWr" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/chapel) "bWJ" = ( /obj/structure/machinery/shower{ @@ -16808,9 +13558,7 @@ "bWL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bWQ" = ( /obj/structure/pipes/vents/pump, @@ -16825,9 +13573,7 @@ pixel_x = 8; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "bXc" = ( /obj/structure/disposalpipe/segment{ @@ -16836,10 +13582,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "bXe" = ( /turf/open/floor/plating/plating_catwalk, @@ -16848,9 +13591,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "bXh" = ( /obj/structure/disposalpipe/segment{ @@ -16869,26 +13610,20 @@ pixel_x = 24; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/navigation) "bXw" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/operating_room_two) "bXy" = ( /obj/structure/machinery/cm_vending/clothing/maintenance_technician, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "bXz" = ( /obj/effect/decal/cleanable/blood/oil, @@ -16899,9 +13634,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "bXY" = ( /obj/structure/ladder{ @@ -16912,34 +13645,25 @@ pixel_x = 24; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/navigation) "bYa" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) "bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) "bYq" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bYu" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "bYv" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -16948,9 +13672,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "bYw" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16966,10 +13688,7 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cichallway) "bYF" = ( /obj/effect/decal/warning_stripes{ @@ -16983,9 +13702,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "bYW" = ( /turf/closed/wall/almayer/reinforced, @@ -17005,9 +13722,7 @@ dir = 1; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "bZa" = ( /obj/structure/disposalpipe/segment, @@ -17015,9 +13730,7 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "bZc" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -17026,10 +13739,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) "bZe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "bZf" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -17039,15 +13749,11 @@ pixel_y = 17 }, /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "bZi" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bZj" = ( /obj/structure/disposalpipe/segment, @@ -17058,10 +13764,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "bZo" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -17083,10 +13786,7 @@ /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) "bZr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/almayer/squads/req) "bZw" = ( /turf/open/floor/plating/plating_catwalk, @@ -17102,9 +13802,7 @@ dir = 8 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "bZR" = ( /obj/structure/machinery/status_display{ @@ -17114,16 +13812,11 @@ /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "bZS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/lower/repair_bay) "bZU" = ( /obj/effect/decal/warning_stripes{ @@ -17134,76 +13827,55 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "cab" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cac" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cad" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cae" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "caf" = ( /obj/structure/machinery/computer/cryopod{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "cag" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "cah" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "cai" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "cak" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/evidence_storage) "cal" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/squads/req) "caq" = ( /obj/structure/machinery/light/small, @@ -17217,9 +13889,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cau" = ( /obj/structure/disposalpipe/segment, @@ -17233,15 +13903,11 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/cryo_cells) "caM" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "caN" = ( /obj/effect/decal/warning_stripes{ @@ -17254,16 +13920,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "caO" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/briefing) "caS" = ( /obj/structure/surface/table/reinforced/prison, @@ -17276,19 +13937,14 @@ name = "ship-grade camera" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/operating_room_three) "caT" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_three) "cbc" = ( /obj/structure/platform_decoration, @@ -17297,27 +13953,21 @@ pixel_x = -14; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; name = "\improper Command Ladder" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "cbh" = ( /obj/structure/machinery/cm_vending/clothing/pilot_officer{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "cbm" = ( /obj/structure/machinery/firealarm{ @@ -17326,18 +13976,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "cbn" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/command/computerlab) "cbu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -17349,9 +13994,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "cbF" = ( /obj/structure/closet/secure_closet/personal/cabinet{ @@ -17376,17 +14019,11 @@ /area/almayer/lifeboat_pumps/north1) "ccb" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/living/cryo_cells) "ccd" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/living/cryo_cells) "ccg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17398,10 +14035,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "cck" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -17419,28 +14053,21 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "ccx" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "ccG" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ccL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17449,10 +14076,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) "ccN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/living/cryo_cells) "ccQ" = ( /obj/effect/landmark/ert_spawns/distress_cryo, @@ -17476,18 +14100,13 @@ "cdn" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "cdo" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/cryo_cells) "cdp" = ( /obj/structure/window/framed/almayer, @@ -17522,15 +14141,11 @@ layer = 4.1; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie) "cdT" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cdU" = ( /obj/structure/machinery/cm_vending/gear/smartgun, @@ -17541,21 +14156,15 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cdV" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cdX" = ( /obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cdZ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -17564,9 +14173,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_s) "cea" = ( /obj/structure/machinery/fuelpump, @@ -17576,10 +14183,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/alpha) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, @@ -17591,17 +14195,13 @@ name = "\improper Evacuation Airlock PU-3"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) "ceK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "ceV" = ( /obj/structure/disposalpipe/segment{ @@ -17610,10 +14210,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/upper/midship_hallway) "ceY" = ( /obj/structure/machinery/light/small{ @@ -17623,20 +14220,14 @@ /area/almayer/maint/hull/lower/l_a_p) "ceZ" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/shipboard/brig/cic_hallway) "cfk" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "cfm" = ( /obj/structure/flora/pottedplant{ @@ -17652,9 +14243,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "cfo" = ( /turf/open/floor/plating/plating_catwalk, @@ -17668,15 +14257,11 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cfq" = ( /obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cft" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17685,63 +14270,43 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "cfE" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/starboard_missiles) "cfT" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/medical_science) "cgl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie_delta_shared) "cgo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) "cgq" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "cgr" = ( /obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgt" = ( /obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgu" = ( /obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgv" = ( /obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgy" = ( /obj/structure/bed/chair{ @@ -17756,9 +14321,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cgE" = ( /turf/open/floor/almayer, @@ -17769,10 +14332,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) "cgT" = ( /obj/structure/disposalpipe/junction, @@ -17787,9 +14347,7 @@ /obj/effect/spawner/random/tool, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "chb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -17805,9 +14363,7 @@ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/starboard) "chc" = ( /obj/effect/decal/warning_stripes{ @@ -17817,44 +14373,30 @@ /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "chf" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) "chk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "chl" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "chm" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "chn" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "chp" = ( /obj/structure/bed/chair{ @@ -17865,9 +14407,7 @@ /area/almayer/squads/bravo) "chq" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "chv" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, @@ -17880,9 +14420,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/squads/bravo) "chM" = ( /obj/structure/disposalpipe/junction{ @@ -17894,10 +14432,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/almayer/squads/charlie) "chO" = ( /obj/item/device/radio/intercom{ @@ -17908,29 +14443,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "chP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "chQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/north, /area/almayer/squads/charlie) "chR" = ( /obj/structure/disposalpipe/segment{ @@ -17945,10 +14471,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "chV" = ( /obj/structure/machinery/alarm/almayer{ @@ -17957,10 +14480,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/almayer/squads/charlie) "chW" = ( /obj/structure/pipes/vents/scrubber{ @@ -17972,28 +14492,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "cib" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "cic" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/alpha) "cif" = ( /obj/structure/surface/table/almayer, @@ -18001,9 +14513,7 @@ dir = 4 }, /obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "cil" = ( /obj/structure/machinery/light, @@ -18011,15 +14521,11 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "cir" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "ciu" = ( /obj/structure/platform{ @@ -18030,21 +14536,14 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north2) "civ" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering) "ciw" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north2) "cix" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -18052,9 +14551,7 @@ name = "\improper Evacuation Airlock PU-4"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "ciB" = ( /obj/structure/disposalpipe/segment{ @@ -18075,15 +14572,10 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north2) "ciN" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ @@ -18099,17 +14591,13 @@ /area/almayer/squads/alpha) "cjd" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "cjf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "cjg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18118,15 +14606,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "cji" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north2) "cjk" = ( /obj/structure/bed, @@ -18134,41 +14618,30 @@ id = "Cell 6"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/cells) "cjm" = ( /obj/structure/surface/rack, /obj/item/tool/wet_sign, /obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "cjt" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "cjA" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cjC" = ( /obj/structure/machinery/vending/cola{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "cjE" = ( /obj/structure/bed/chair{ @@ -18186,10 +14659,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) "cjW" = ( /obj/structure/disposalpipe/segment{ @@ -18202,10 +14672,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "ckd" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -18228,19 +14695,14 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/engineering/port_atmos) "cke" = ( /obj/structure/machinery/vending/cola{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "ckh" = ( /obj/structure/disposalpipe/junction{ @@ -18257,73 +14719,50 @@ pixel_x = -3; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "ckr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ckK" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/engineering/port_atmos) "ckP" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/shipboard/brig/cic_hallway) "ckQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "ckR" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ckW" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/lower) "ckX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "ckZ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "cle" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_lobby) "clg" = ( /turf/open/floor/plating/plating_catwalk, @@ -18339,17 +14778,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/squads/delta) "clj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "clk" = ( /obj/structure/pipes/vents/pump{ @@ -18363,10 +14798,7 @@ name = "General Listening Channel"; pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) "cll" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18384,9 +14816,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/squads/delta) "cln" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18399,9 +14829,7 @@ dir = 1; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "clo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18410,10 +14838,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) "clp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18425,9 +14850,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18437,77 +14860,52 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/squads/delta) "cls" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) "clw" = ( -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "clE" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clF" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clG" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clH" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clI" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "clJ" = ( /obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clL" = ( /obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clM" = ( /obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clN" = ( /obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clS" = ( /obj/structure/machinery/cm_vending/gear/spec, @@ -18518,28 +14916,19 @@ /obj/structure/sign/safety/ammunition{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clT" = ( /obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clV" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) "clW" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clX" = ( /obj/structure/machinery/cm_vending/gear/smartgun, @@ -18550,21 +14939,15 @@ /obj/structure/sign/safety/ammunition{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clY" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "clZ" = ( /obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "cme" = ( /obj/structure/largecrate/random/barrel/red, @@ -18582,40 +14965,28 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "cmm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "cmn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "cmo" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/tool, /obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "cmr" = ( /turf/open/floor/almayer, @@ -18628,10 +14999,7 @@ /obj/structure/disposalpipe/trunk{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/processing) "cmC" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -18639,9 +15007,7 @@ name = "\improper Evacuation Airlock SL-1"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "cmF" = ( /obj/structure/platform, @@ -18652,17 +15018,11 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north2) "cmK" = ( /obj/structure/window/reinforced, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/securestorage) "cmL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18671,18 +15031,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "cmM" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/medical) "cmN" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "cmS" = ( /obj/effect/decal/warning_stripes{ @@ -18691,16 +15047,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/fore_hallway) "cmV" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "cnd" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -18708,9 +15059,7 @@ name = "\improper Evacuation Airlock PL-1"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "cnm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18727,20 +15076,14 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "cnq" = ( /obj/structure/machinery/line_nexter{ id = "line1"; pixel_x = -2 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/computerlab) "cnr" = ( /obj/structure/disposalpipe/junction{ @@ -18750,18 +15093,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "cnu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "cnE" = ( /obj/structure/machinery/prop/almayer/computer{ @@ -18771,10 +15110,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/computerlab) "cnH" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -18783,18 +15119,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/computerlab) "cnI" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_umbilical) "cnM" = ( /obj/structure/window/reinforced{ @@ -18821,17 +15152,13 @@ /obj/item/bedsheet/yellow{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "cnP" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -18849,9 +15176,7 @@ pixel_x = 4; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/computerlab) "cnS" = ( /obj/structure/window/framed/almayer, @@ -18871,68 +15196,48 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/computerlab) "cnV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/morgue) "cnW" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/morgue) "cnZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/surgery/scalpel, /obj/item/tool/surgery/hemostat, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/morgue) "coa" = ( /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/cautery, /obj/item/tool/surgery/retractor, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/morgue) "cod" = ( /obj/structure/machinery/cm_vending/clothing/dress{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/cic) "cog" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) "coj" = ( /obj/structure/machinery/power/apc/almayer, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/squads/delta) "coo" = ( /obj/structure/disposalpipe/segment{ @@ -18961,17 +15266,13 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "coB" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "coD" = ( /obj/structure/surface/table/woodentable/fancy, @@ -18985,18 +15286,13 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "coJ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "coT" = ( /obj/structure/machinery/status_display{ @@ -19005,14 +15301,10 @@ /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "coZ" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell) "cpj" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -19022,9 +15314,7 @@ pixel_y = 4 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "cpk" = ( /obj/structure/disposalpipe/segment{ @@ -19043,9 +15333,7 @@ /area/almayer/living/offices) "cpz" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, @@ -19070,18 +15358,13 @@ /area/almayer/squads/req) "cpP" = ( /obj/structure/blocker/fuelpump, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "cqd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/hallways/lower/starboard_umbilical) "cqm" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -19096,9 +15379,7 @@ /area/almayer/command/airoom) "cqp" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "cqz" = ( /obj/structure/surface/table/almayer, @@ -19123,9 +15404,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "cqQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -19151,33 +15430,23 @@ id = "laddersoutheast"; name = "\improper South East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_midship_hallway) "crh" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "cri" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "crD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/squads/req) "csd" = ( /obj/structure/closet/firecloset, @@ -19190,10 +15459,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/warden_office) "csI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/south1) "csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19215,16 +15481,11 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "cth" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "ctp" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -19239,9 +15500,7 @@ /area/almayer/lifeboat_pumps/south1) "ctw" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "ctx" = ( /obj/structure/bed{ @@ -19267,10 +15526,7 @@ layer = 3.3; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "ctJ" = ( /obj/structure/machinery/light{ @@ -19278,15 +15534,10 @@ }, /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "ctQ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "ctT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -19296,9 +15547,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cryo) "cuq" = ( /obj/structure/machinery/computer/arcade, @@ -19306,10 +15555,7 @@ /area/almayer/command/corporateliaison) "cus" = ( /obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space/almayer/lifeboat_dock) "cuy" = ( /obj/item/tool/warning_cone{ @@ -19318,9 +15564,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "cuC" = ( /turf/closed/wall/almayer/outer, @@ -19332,27 +15576,20 @@ /obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/starboard) "cuY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "cvb" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "cvg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -19383,10 +15620,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ @@ -19399,10 +15633,7 @@ /turf/open/floor/almayer, /area/almayer/squads/req) "cwC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/starboard_hallway) "cwS" = ( /obj/structure/blocker/invisible_wall, @@ -19431,72 +15662,51 @@ dir = 8 }, /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/port_midship_hallway) "cyc" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "cyh" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ name = "\improper Passenger Cryogenics Bay" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_p) "cyo" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) "cyp" = ( /obj/structure/machinery/conveyor{ id = "lower_garbage" }, /obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/maint/hull/lower/l_a_p) "cyv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "cyL" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, /obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/maint/upper/mess) "cyP" = ( /obj/structure/machinery/cm_vending/clothing/intelligence_officer{ density = 0; pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/securestorage) "cyR" = ( /obj/structure/bed/chair{ @@ -19508,9 +15718,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "cyZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19527,9 +15735,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "czR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19543,18 +15749,13 @@ }, /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "cAm" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "cAy" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, @@ -19569,9 +15770,7 @@ dir = 8 }, /obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ @@ -19581,9 +15780,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "cAR" = ( /turf/closed/wall/almayer/reinforced, @@ -19600,9 +15797,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "cBj" = ( /obj/structure/machinery/cryopod{ @@ -19616,9 +15811,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "cBs" = ( /obj/structure/bed/chair, @@ -19626,9 +15819,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha) "cBw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -19641,10 +15832,7 @@ icon_state = "E"; pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/hallways/lower/port_aft_hallway) "cBV" = ( /obj/structure/closet/firecloset, @@ -19652,10 +15840,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/port_fore_hallway) "cCa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19668,17 +15853,13 @@ dir = 8; layer = 2.7 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/northwest, /area/almayer/living/briefing) "cCE" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "cCL" = ( /obj/effect/landmark/crap_item, @@ -19692,9 +15873,7 @@ req_access = null }, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "cDn" = ( /obj/structure/surface/table/almayer, @@ -19709,28 +15888,21 @@ pixel_x = 4; pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "cDs" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "cDx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_p) "cDC" = ( /obj/structure/disposalpipe/segment{ @@ -19739,18 +15911,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "cDH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cDI" = ( /obj/structure/disposalpipe/junction{ @@ -19768,17 +15936,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) "cDP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/hallways/upper/midship_hallway) "cDZ" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/tankerbunks) "cEi" = ( /obj/structure/sign/poster, @@ -19795,10 +15958,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "cEA" = ( /obj/structure/disposalpipe/segment{ @@ -19811,9 +15971,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "cEC" = ( /obj/structure/disposalpipe/segment{ @@ -19832,16 +15990,11 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "cEG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) "cFg" = ( /obj/structure/stairs{ @@ -19868,35 +16021,26 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "cFn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "cFC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/processing) "cFP" = ( /obj/structure/sign/safety/outpatient{ pixel_x = -17; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "cGd" = ( /turf/closed/wall/almayer, @@ -19909,24 +16053,16 @@ /area/almayer/maint/hull/upper/u_f_s) "cGB" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/hull/lower/l_m_s) "cGO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/midship_hallway) "cGR" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_s) "cGV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "cGY" = ( /obj/structure/largecrate/random/barrel/blue, @@ -19937,10 +16073,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "cHk" = ( /turf/closed/wall/almayer/reinforced, @@ -19953,32 +16086,23 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) "cHB" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "cHC" = ( /obj/structure/machinery/cm_vending/clothing/combat_correspondent, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "cHE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/command/cichallway) "cHG" = ( /obj/structure/machinery/light{ @@ -19996,10 +16120,7 @@ "cIm" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/port_fore_hallway) "cIr" = ( /obj/structure/disposalpipe/segment{ @@ -20010,17 +16131,13 @@ "cIx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "cIG" = ( /obj/structure/closet/emcloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "cIO" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -20029,17 +16146,13 @@ /area/almayer/hallways/lower/port_fore_hallway) "cIS" = ( /obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "cIW" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Engine Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "cJm" = ( /obj/structure/machinery/light{ @@ -20048,9 +16161,7 @@ /obj/structure/bed/chair{ dir = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "cJs" = ( /turf/open/floor/plating/plating_catwalk, @@ -20063,9 +16174,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "cJv" = ( /obj/structure/stairs{ @@ -20103,9 +16212,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "cJM" = ( /obj/structure/machinery/door_display/research_cell{ @@ -20145,9 +16252,7 @@ req_one_access_txt = "19;28" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "cKm" = ( /obj/structure/surface/table/almayer, @@ -20171,24 +16276,16 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/interrogation) "cKL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering/port) "cLd" = ( /obj/structure/closet, /obj/item/clothing/glasses/mgoggles/prescription, /obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "cLl" = ( /obj/structure/surface/table/almayer, @@ -20204,9 +16301,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_arrow" - }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow, /area/almayer/command/airoom) "cLq" = ( /obj/structure/machinery/light/small{ @@ -20215,10 +16310,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "cLA" = ( /obj/structure/machinery/cryopod/right{ @@ -20227,9 +16319,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/medical/lower_medical_medbay) "cLC" = ( /obj/structure/bed/chair, @@ -20240,9 +16330,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "cMl" = ( /obj/structure/disposalpipe/segment{ @@ -20270,10 +16358,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) "cMV" = ( /obj/structure/sign/prop1{ @@ -20294,15 +16379,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) "cNf" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/living/briefing) "cNm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_aft_hallway) "cNC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20321,29 +16401,21 @@ locked = 1; name = "\improper Containment Cell 4" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell/cl) "cNI" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "cNJ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "cNK" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "cNM" = ( /obj/effect/step_trigger/clone_cleaner, @@ -20354,10 +16426,7 @@ /obj/structure/machinery/status_display{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "cNX" = ( /obj/structure/disposalpipe/segment{ @@ -20370,15 +16439,10 @@ /area/almayer/living/grunt_rnr) "cOd" = ( /obj/structure/blocker/fuelpump, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "cOe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/hallways/upper/midship_hallway) "cOh" = ( /obj/item/stool{ @@ -20392,9 +16456,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_p) "cOt" = ( /obj/structure/largecrate/random/case/small, @@ -20408,10 +16470,7 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/engineering/upper_engineering/starboard) "cOV" = ( /obj/effect/projector{ @@ -20494,10 +16553,7 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cichallway) "cPj" = ( /obj/structure/window/framed/almayer/hull, @@ -20510,10 +16566,7 @@ /obj/structure/sign/safety/stairs{ pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/starboard) "cPP" = ( /obj/structure/sign/poster/pinup{ @@ -20528,15 +16581,10 @@ icon_state = "lattice12"; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "cQc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/living/briefing) "cQg" = ( /obj/structure/surface/rack, @@ -20544,9 +16592,7 @@ icon_state = "W" }, /obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "cQo" = ( /obj/effect/decal/warning_stripes{ @@ -20555,10 +16601,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/containment) "cQv" = ( /turf/closed/wall/almayer/reinforced, @@ -20581,9 +16624,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) "cQG" = ( /turf/open/floor/almayer, @@ -20615,19 +16656,13 @@ /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "cRi" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/port) "cRv" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/port_missiles) "cRK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -20647,16 +16682,11 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "cSk" = ( /obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/securestorage) "cSm" = ( /obj/structure/sign/safety/ladder{ @@ -20669,15 +16699,10 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "cSC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/starboard_missiles) "cSH" = ( /obj/structure/disposalpipe/segment{ @@ -20692,92 +16717,65 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/hallways/lower/port_midship_hallway) "cSQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "cST" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "cTf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "cTy" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/shipboard/brig/medical) "cTC" = ( /obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/living/offices) "cTM" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/mess) "cTX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "cUl" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "cUo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/lifeboat_pumps/north1) "cVb" = ( /obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "cVf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/starboard_midship_hallway) "cVq" = ( /obj/structure/machinery/power/apc/almayer/hardened{ @@ -20790,18 +16788,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "cVw" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "cVK" = ( /obj/structure/surface/rack, @@ -20810,9 +16803,7 @@ pixel_y = 32 }, /obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "cVZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -20820,9 +16811,7 @@ /area/almayer/hallways/lower/port_midship_hallway) "cWb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "cWm" = ( /obj/structure/surface/rack, @@ -20836,9 +16825,7 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) "cWr" = ( /obj/structure/machinery/photocopier{ @@ -20873,29 +16860,21 @@ pixel_x = 2; pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/offices) "cWy" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/reagent_container/food/snacks/packaged_burger, /obj/item/reagent_container/food/snacks/packaged_burger, /obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "cWE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/port) "cXi" = ( /obj/structure/machinery/light{ @@ -20914,18 +16893,13 @@ /area/almayer/shipboard/brig/cells) "cXm" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "cXq" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/hallways/upper/fore_hallway) "cXz" = ( /obj/structure/surface/table/almayer, @@ -20943,18 +16917,14 @@ pixel_x = -2; pixel_y = -11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/containment) "cXD" = ( /obj/structure/surface/rack, @@ -20965,9 +16935,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "cXF" = ( /obj/structure/machinery/flasher{ @@ -20978,14 +16946,10 @@ pixel_x = -15; pixel_y = 30 }, -/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/almayer/medical/containment/cell/cl) "cXR" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/squads/req) "cXV" = ( /obj/structure/bed/chair{ @@ -20999,10 +16963,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "cXX" = ( /obj/structure/disposalpipe/segment, @@ -21013,33 +16974,25 @@ /area/almayer/maint/hull/lower/l_m_p) "cXY" = ( /obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "cYo" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "cYu" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "cYN" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "cYT" = ( /obj/structure/machinery/light{ @@ -21053,9 +17006,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/south1) "cZe" = ( /turf/closed/wall/almayer/outer, @@ -21081,9 +17032,7 @@ /area/almayer/maint/upper/u_f_s) "cZB" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "cZI" = ( /obj/effect/decal/warning_stripes{ @@ -21092,9 +17041,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "cZO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -21132,20 +17079,14 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "dan" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, /obj/item/storage/toolbox/mechanical, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/u_a_s) "daz" = ( /turf/closed/wall/almayer/aicore/hull, @@ -21161,9 +17102,7 @@ name = "\improper Armourer's Workshop"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_s) "dbc" = ( /obj/effect/decal/warning_stripes{ @@ -21173,10 +17112,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "dbe" = ( /obj/structure/largecrate/random/case/double, @@ -21184,9 +17120,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "dbn" = ( /obj/structure/surface/table/almayer, @@ -21205,10 +17139,7 @@ /turf/open/floor/plating, /area/almayer/living/port_emb) "dbq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/almayer/engineering/upper_engineering/port) "dbs" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -21224,9 +17155,7 @@ id = "perma_lockdown_2"; name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "dbv" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -21241,10 +17170,7 @@ pixel_x = -6; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/engineering/port_atmos) "dbw" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, @@ -21261,15 +17187,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "dbX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/mess) "dcd" = ( /obj/structure/bed/chair/comfy{ @@ -21279,10 +17200,7 @@ /area/almayer/living/briefing) "dck" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "dcp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -21295,10 +17213,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_umbilical) "dcy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/perma) "dcR" = ( /turf/open/floor/plating/plating_catwalk, @@ -21314,37 +17229,26 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "ddf" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "ddj" = ( /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/interrogation) "ddk" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "ddw" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "ddz" = ( /obj/structure/sign/safety/maint{ @@ -21368,22 +17272,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) "deg" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south2) "deq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ @@ -21406,10 +17304,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/living/port_emb) "dfa" = ( /obj/structure/disposalpipe/segment, @@ -21426,32 +17321,23 @@ pixel_x = -6; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "dfk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "dfA" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "dfC" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "dgg" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -21462,19 +17348,14 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "dgl" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "dgx" = ( /obj/structure/flora/pottedplant{ @@ -21482,23 +17363,16 @@ pixel_y = 13 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/chief_mp_office) "dgI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/cafeteria_officer) "dha" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "dhd" = ( /obj/structure/window/reinforced/ultra{ @@ -21508,9 +17382,7 @@ dir = 1 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/brig/execution) "dho" = ( /obj/structure/machinery/alarm/almayer{ @@ -21521,28 +17393,21 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "dhp" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "dhA" = ( /obj/structure/largecrate/supply/generator, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/maint/upper/u_a_p) "dhQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -21554,9 +17419,7 @@ id = "north_central_checkpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "div" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -21567,9 +17430,7 @@ id = "laddernortheast"; name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) "diw" = ( /obj/item/device/radio/intercom{ @@ -21577,10 +17438,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "diz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ @@ -21588,9 +17446,7 @@ linked_dock = "almayer-lifeboat1"; throw_dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "diJ" = ( /obj/structure/window/reinforced{ @@ -21601,9 +17457,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "djQ" = ( /obj/item/device/radio/intercom{ @@ -21620,24 +17474,18 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "dka" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "dkj" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/intercom/alamo{ layer = 2.9 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "dkq" = ( /obj/structure/machinery/door_control{ @@ -21651,19 +17499,13 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) "dkz" = ( /obj/structure/pipes/vents/scrubber/no_boom{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "dkO" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -21677,28 +17519,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "dkP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/starboard_midship_hallway) "dkX" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "dll" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "dlo" = ( /obj/effect/decal/warning_stripes{ @@ -21708,9 +17541,7 @@ /area/almayer/hallways/upper/starboard) "dlT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/aft_hallway) "dmg" = ( /obj/structure/machinery/vending/coffee, @@ -21718,10 +17549,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cichallway) "dmr" = ( /obj/structure/transmitter{ @@ -21730,16 +17558,10 @@ phone_id = "Brig Main Offices"; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "dmv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/command/cichallway) "dmA" = ( /turf/open/floor/almayer, @@ -21748,9 +17570,7 @@ /obj/structure/surface/rack, /obj/item/mortar_shell/incendiary, /obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "dmF" = ( /obj/structure/machinery/disposal, @@ -21758,10 +17578,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, @@ -21796,17 +17613,12 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "dnh" = ( /obj/structure/surface/rack, /obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/maint/upper/u_a_p) "dnC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -21816,21 +17628,15 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/hydroponics) "dnE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "dnH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "dnP" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -21841,10 +17647,7 @@ /area/almayer/hallways/lower/port_midship_hallway) "dnS" = ( /obj/structure/safe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/securestorage) "dnZ" = ( /obj/structure/machinery/light{ @@ -21854,10 +17657,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/maint/hull/lower/l_a_p) "dof" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ @@ -21866,19 +17666,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "doJ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "doP" = ( /obj/structure/disposaloutlet{ @@ -21893,9 +17688,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "doU" = ( /obj/structure/surface/rack, @@ -21903,10 +17696,7 @@ /area/almayer/engineering/upper_engineering/port) "doX" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/aft_hallway) "dpo" = ( /obj/structure/machinery/light{ @@ -21919,9 +17709,7 @@ pixel_x = 14; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "dpp" = ( /obj/effect/projector{ @@ -21942,19 +17730,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "dpO" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/delta) "dqb" = ( /obj/structure/sign/safety/security{ @@ -21964,16 +17747,10 @@ /area/almayer/lifeboat_pumps/south1) "dqg" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "dqj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/command/lifeboat) "dqw" = ( /turf/closed/wall/almayer/outer, @@ -21983,9 +17760,7 @@ /obj/structure/bed/chair/comfy/bravo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "dqE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -21996,9 +17771,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Conference and Office Area" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "drj" = ( /obj/structure/window/reinforced{ @@ -22008,17 +17781,11 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) "drk" = ( /obj/structure/closet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/engineering/port_atmos) "dro" = ( /obj/structure/surface/table/almayer, @@ -22026,9 +17793,7 @@ /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -22046,9 +17811,7 @@ /obj/item/storage/fancy/vials, /obj/item/storage/fancy/vials, /obj/item/storage/fancy/vials, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "drU" = ( /obj/structure/machinery/door_control{ @@ -22065,24 +17828,17 @@ /area/almayer/command/airoom) "dsA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/brig/execution) "dsY" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/starboard_midship_hallway) "dtu" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_a_s) "dtH" = ( /obj/structure/bed/chair/comfy{ @@ -22100,9 +17856,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "dut" = ( /obj/structure/machinery/door_control{ @@ -22113,9 +17867,7 @@ pixel_x = 28; pixel_y = 23 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "duv" = ( /obj/structure/pipes/vents/scrubber{ @@ -22128,9 +17880,7 @@ /obj/item/trash/USCMtray{ pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "duz" = ( /obj/structure/mirror{ @@ -22143,10 +17893,7 @@ /area/almayer/engineering/upper_engineering/port) "duF" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "duT" = ( /obj/structure/bed, @@ -22154,62 +17901,45 @@ id = "Cell 2"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/cells) "duV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "dvg" = ( /obj/structure/reagent_dispensers/fueltank/custom, /obj/structure/sign/safety/chem_lab{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/chemistry) "dvl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cichallway) "dvs" = ( /obj/structure/machinery/cm_vending/clothing/vehicle_crew{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "dvD" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "dvZ" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "dwj" = ( /obj/effect/step_trigger/clone_cleaner, @@ -22234,18 +17964,14 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_f_s) "dwA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "dwI" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -22256,24 +17982,17 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "dxu" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_four) "dxv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/command/computerlab) "dxF" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -22281,9 +18000,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/stair_clone/upper) "dxJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22292,18 +18009,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "dxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "dxT" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22323,9 +18035,7 @@ dir = 2; name = "\improper Isolation Cell" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "dyb" = ( /obj/structure/machinery/smartfridge/chemistry, @@ -22334,9 +18044,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "dyd" = ( /obj/structure/bed/chair/office/dark{ @@ -22345,9 +18053,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "dyj" = ( /obj/structure/closet/secure_closet/commander, @@ -22360,18 +18066,14 @@ /area/almayer/living/commandbunks) "dyp" = ( /obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "dyq" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "dyx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -22385,19 +18087,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "dyK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/ce_room) "dzp" = ( /turf/open/floor/almayer, @@ -22416,9 +18112,7 @@ autoname = 0; c_tag = "AI - Secondary Processors" }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "dzG" = ( /obj/structure/reagent_dispensers/peppertank{ @@ -22451,9 +18145,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "dAq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -22463,9 +18155,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "dAA" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -22479,9 +18169,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "dAX" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -22491,9 +18179,7 @@ /obj/structure/sign/safety/commline_connection{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "dBg" = ( /obj/structure/stairs{ @@ -22505,19 +18191,14 @@ vector_y = 104 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "dBj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/hydroponics) "dBp" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -22528,15 +18209,11 @@ /area/almayer/lifeboat_pumps/south1) "dBs" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/cic) "dBG" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/upper_engineering) "dBH" = ( /obj/structure/window/framed/almayer/white, @@ -22560,18 +18237,14 @@ layer = 3.3; pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "dBO" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "dBR" = ( /obj/effect/decal/warning_stripes{ @@ -22583,10 +18256,7 @@ req_one_access = null; req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/hallways/lower/repair_bay) "dBS" = ( /obj/effect/decal/warning_stripes{ @@ -22610,9 +18280,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cells) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22631,9 +18299,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "dCz" = ( /obj/structure/surface/table/almayer, @@ -22649,9 +18315,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/south1) "dCK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22662,9 +18326,7 @@ "dCM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "dDp" = ( /obj/effect/decal/warning_stripes{ @@ -22689,9 +18351,7 @@ /area/almayer/living/port_emb) "dDJ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "dDL" = ( /obj/structure/surface/table/almayer, @@ -22701,10 +18361,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "dDM" = ( /obj/effect/decal/cleanable/blood/oil, @@ -22714,16 +18371,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/workshop/hangar) "dDT" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "dEm" = ( /obj/structure/machinery/power/apc/almayer, @@ -22735,10 +18387,7 @@ pixel_x = 1 }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/containment/cell) "dEn" = ( /obj/structure/machinery/firealarm{ @@ -22748,10 +18397,7 @@ /area/almayer/command/lifeboat) "dEo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "dEp" = ( /turf/open/floor/plating/plating_catwalk, @@ -22765,9 +18411,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "dEG" = ( /obj/structure/machinery/light{ @@ -22775,15 +18419,11 @@ unslashable = 1 }, /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "dEJ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/north2) "dEK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22805,9 +18445,7 @@ "dEQ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "dEX" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, @@ -22820,10 +18458,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) "dFk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/command/lifeboat) "dFl" = ( /obj/structure/sign/safety/security{ @@ -22833,10 +18468,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "dFF" = ( /obj/structure/flora/pottedplant{ @@ -22849,17 +18481,13 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "dFM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "dFN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -22872,35 +18500,25 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) "dFR" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/cichallway) "dFW" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/cell_charger, /obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "dGg" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "dGr" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/pilotbunks) "dGC" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22908,10 +18526,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "dGP" = ( /obj/structure/disposalpipe/segment, @@ -22922,9 +18537,7 @@ req_one_access = null; req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "dGT" = ( /obj/structure/machinery/light{ @@ -22933,9 +18546,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "dGU" = ( /obj/structure/sign/poster/propaganda{ @@ -22944,9 +18555,7 @@ /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "dHd" = ( /obj/structure/disposalpipe/segment{ @@ -22962,9 +18571,7 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "dHu" = ( /obj/structure/desertdam/decals/road_edge{ @@ -22985,9 +18592,7 @@ /obj/structure/pipes/unary/freezer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "dHZ" = ( /obj/structure/window/framed/almayer, @@ -23013,19 +18618,14 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "dIH" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/lower/workshop) "dII" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, @@ -23035,9 +18635,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "dJe" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -23045,23 +18643,17 @@ /obj/item/stack/sheet/mineral/phoron/medium_stack{ pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "dJy" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "dJC" = ( /obj/structure/machinery/sentry_holder/almayer/mini/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "dJG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23077,9 +18669,7 @@ /obj/structure/sign/arcturianstopsign{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "dJJ" = ( /turf/open/floor/plating/plating_catwalk, @@ -23106,15 +18696,10 @@ unacidable = 0; unslashable = 0 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "dKp" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell/cl) "dKK" = ( /obj/effect/decal/warning_stripes{ @@ -23136,9 +18721,7 @@ pixel_x = 25; req_one_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "dKS" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -23153,9 +18736,7 @@ "dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "dLe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -23163,9 +18744,7 @@ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "dLt" = ( /obj/structure/sign/safety/hazard{ @@ -23176,30 +18755,21 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/sea_office) "dLz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/south1) "dMj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) "dMB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/living/cryo_cells) "dME" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) "dMK" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ @@ -23219,10 +18789,7 @@ /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/containment) "dNt" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, @@ -23241,9 +18808,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "dNM" = ( /obj/structure/surface/table/almayer, @@ -23251,9 +18816,7 @@ pixel_x = -5; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "dNW" = ( /obj/structure/machinery/firealarm{ @@ -23267,9 +18830,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "dOe" = ( /obj/structure/sign/safety/fire_haz{ @@ -23279,9 +18840,7 @@ /obj/structure/reagent_dispensers/ethanoltank{ anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "dOl" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -23289,9 +18848,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "dOG" = ( /obj/structure/disposalpipe/segment, @@ -23305,9 +18862,7 @@ }, /obj/item/trash/pistachios, /obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/hallways/lower/repair_bay) "dPd" = ( /obj/structure/surface/table/almayer, @@ -23315,9 +18870,7 @@ pixel_x = 5; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "dPk" = ( /obj/structure/surface/table/almayer, @@ -23325,17 +18878,13 @@ dir = 8 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "dPm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "dPq" = ( /obj/structure/surface/table/almayer, @@ -23356,9 +18905,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "dPO" = ( /obj/structure/bed/chair{ @@ -23370,18 +18917,14 @@ /obj/structure/surface/table/almayer, /obj/item/tool/pen, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "dPT" = ( /obj/structure/machinery/brig_cell/cell_2{ pixel_x = 32; pixel_y = -32 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "dQp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -23398,18 +18941,13 @@ dir = 1; name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "dQA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/lower) "dQV" = ( /obj/structure/machinery/light{ @@ -23438,24 +18976,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/mp_bunks) "dRs" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "dRv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/squads/alpha) "dRA" = ( /obj/structure/disposalpipe/segment{ @@ -23467,9 +18998,7 @@ /obj/structure/machinery/status_display{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "dRD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -23479,9 +19008,7 @@ req_access = null; req_one_access_txt = "3;22;2;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices/flight) "dRP" = ( /obj/structure/bed/chair/comfy/orange, @@ -23508,25 +19035,17 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "dSp" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "dSI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/hallways/upper/midship_hallway) "dSJ" = ( /obj/item/device/radio/intercom{ @@ -23540,15 +19059,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_two) "dSZ" = ( /obj/structure/bed/chair, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "dTd" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -23556,14 +19071,10 @@ id = "laddernortheast"; name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) "dTn" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "dTr" = ( /obj/structure/disposalpipe/segment{ @@ -23581,58 +19092,38 @@ /area/almayer/hallways/hangar) "dTS" = ( /obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "dTZ" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "dUE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) "dUR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/upper/midship_hallway) "dUS" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "dUZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/port_missiles) "dVd" = ( /obj/structure/machinery/seed_extractor{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "dVe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/briefing) "dVn" = ( /obj/effect/step_trigger/clone_cleaner, @@ -23643,10 +19134,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/starboard) "dVs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -23660,10 +19148,7 @@ /area/almayer/living/port_emb) "dVu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "dVH" = ( /obj/structure/platform{ @@ -23676,18 +19161,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "dVR" = ( /obj/structure/ladder{ @@ -23712,10 +19193,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) "dWw" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/basketball) "dWA" = ( /obj/structure/sign/poster{ @@ -23738,23 +19216,17 @@ pixel_y = -32 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "dWX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "dXb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "dXd" = ( /obj/item/storage/fancy/cigarettes/kpack, @@ -23762,43 +19234,32 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "dXo" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "dXr" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "dXG" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "dXI" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/stern_point_defense) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -23814,10 +19275,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/pilotbunks) "dYb" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -23840,9 +19298,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23856,10 +19312,7 @@ pixel_y = 25 }, /obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "dYR" = ( /obj/structure/surface/table/almayer, @@ -23887,10 +19340,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/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_medbay) "dYX" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ @@ -23900,9 +19350,7 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "dZu" = ( /obj/structure/machinery/light{ @@ -23914,9 +19362,7 @@ /obj/structure/surface/rack, /obj/item/tool/weldpack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "eaf" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ @@ -23930,9 +19376,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/general_equipment) "ean" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -23952,26 +19396,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_one) "eax" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "eaz" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "ebd" = ( /obj/effect/decal/cleanable/dirt, @@ -23987,27 +19425,21 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "ebn" = ( /obj/structure/sign/safety/airlock{ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "ebp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "ebI" = ( /obj/item/clothing/shoes/red, @@ -24028,19 +19460,14 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "eco" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "ecr" = ( /turf/closed/wall/almayer/reinforced, @@ -24050,51 +19477,37 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "ecZ" = ( /obj/structure/ladder{ height = 1; id = "bridge4" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/navigation) "edn" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) "edo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "edv" = ( /obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "edG" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "edV" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/almayer, /area/almayer/maint/upper/mess) "eed" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/command/computerlab) "eeh" = ( /obj/structure/surface/table/almayer, @@ -24102,9 +19515,7 @@ pixel_y = 9 }, /obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "eei" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -24116,26 +19527,19 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "eem" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/kitchen/tray, /obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "eet" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "eeu" = ( /obj/structure/disposalpipe/segment{ @@ -24148,24 +19552,18 @@ pixel_x = -25 }, /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "eeA" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "eeC" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "eeR" = ( /obj/structure/surface/rack, @@ -24175,10 +19573,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "efj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "efk" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -24186,18 +19581,14 @@ name = "\improper Umbillical Airlock"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "efC" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, /obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "efJ" = ( /obj/item/tool/wet_sign, @@ -24211,9 +19602,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "efP" = ( /obj/structure/surface/table/almayer, @@ -24225,18 +19614,13 @@ pixel_x = 5; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "efT" = ( /obj/structure/machinery/atm{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "efV" = ( /obj/structure/disposalpipe/junction{ @@ -24261,9 +19645,7 @@ pixel_x = -28; pixel_y = -23 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "ege" = ( /obj/structure/machinery/door_control{ @@ -24280,10 +19662,7 @@ c_tag = "AI - Main Staircase" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -24300,16 +19679,11 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/chapel) "egD" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/lower/port_midship_hallway) "ehc" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -24320,9 +19694,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "ehi" = ( /obj/effect/decal/warning_stripes{ @@ -24345,10 +19717,7 @@ /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south2) "ehx" = ( /obj/effect/landmark/start/marine/tl/alpha, @@ -24369,9 +19738,7 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/starboard) "ehM" = ( /obj/structure/surface/rack, @@ -24406,9 +19773,7 @@ /obj/item/bedsheet/red{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "ehX" = ( /obj/structure/disposalpipe/segment{ @@ -24418,10 +19783,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "eii" = ( /obj/structure/platform{ @@ -24441,9 +19803,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "eiq" = ( /obj/structure/surface/table/reinforced/prison, @@ -24454,10 +19814,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_two) "eiE" = ( /obj/structure/machinery/light{ @@ -24468,9 +19825,7 @@ /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/almayer/medical/containment/cell) "eiN" = ( /obj/structure/machinery/light{ @@ -24480,16 +19835,12 @@ pixel_y = 6 }, /obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "eiP" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "ejj" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -24501,9 +19852,7 @@ pixel_x = 2; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "ejo" = ( /obj/effect/decal/warning_stripes{ @@ -24514,21 +19863,14 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "ejt" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +/turf/open/floor/almayer/uscm/directional/east, /area/almayer/command/lifeboat) "ejx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/upper/midship_hallway) "ejV" = ( /obj/structure/closet, @@ -24537,24 +19879,18 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "ejY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "eky" = ( /turf/open/floor/almayer, /area/almayer/command/lifeboat) "ekz" = ( /obj/structure/girder/displaced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "ekM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24567,10 +19903,7 @@ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/starboard_umbilical) "ekY" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ @@ -24579,29 +19912,21 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/starboard_garden) "ekZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/warden_office) "elf" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "elv" = ( /obj/effect/step_trigger/clone_cleaner, @@ -24621,9 +19946,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_one) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ @@ -24641,9 +19964,7 @@ dir = 2; name = "\improper Execution Equipment" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/execution_storage) "elY" = ( /obj/structure/machinery/light/small{ @@ -24656,25 +19977,19 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "eme" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "eml" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "emn" = ( /obj/structure/surface/rack, @@ -24682,10 +19997,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "emp" = ( /turf/closed/wall/almayer/reinforced, @@ -24710,46 +20022,32 @@ /area/almayer/maint/hull/lower/l_f_p) "emK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/medical_science) "emL" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/upper/midship_hallway) "ene" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/securestorage) "eni" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "enK" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) "enQ" = ( /obj/structure/surface/rack, /obj/item/frame/table, /obj/item/frame/table, /obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "enY" = ( /obj/item/storage/firstaid, @@ -24760,9 +20058,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "eox" = ( /obj/structure/machinery/light/small, @@ -24772,15 +20068,11 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "eoE" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24791,16 +20083,12 @@ /area/almayer/engineering/upper_engineering/port) "eoK" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "epk" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "epu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -24809,9 +20097,7 @@ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/lobby) "epJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -24826,10 +20112,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "eqb" = ( /obj/structure/surface/table/almayer, @@ -24861,9 +20144,7 @@ /obj/item/stack/folding_barricade/three, /obj/item/stack/folding_barricade/three, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/panic) "eqm" = ( /obj/structure/prop/almayer/computers/sensor_computer2, @@ -24874,9 +20155,7 @@ name = "Shutters"; use_power = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "eqB" = ( /obj/item/bedsheet/brown{ @@ -24885,36 +20164,26 @@ /obj/structure/bed{ can_buckle = 0 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/engineering/port_atmos) "eqD" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 9 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "eqI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "eqL" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "eqN" = ( /turf/open/floor/plating/plating_catwalk, @@ -24927,24 +20196,18 @@ pixel_x = 32; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "erd" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell/cl) "ere" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "erh" = ( /obj/structure/disposalpipe/segment, @@ -24965,9 +20228,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "ern" = ( /obj/structure/pipes/vents/pump, @@ -24977,9 +20238,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "erF" = ( /obj/structure/surface/table/almayer, @@ -24988,9 +20247,7 @@ pixel_y = -2 }, /obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "erG" = ( /obj/structure/disposalpipe/junction{ @@ -25016,14 +20273,10 @@ pixel_x = 5; pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "erN" = ( -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_plates" - }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, /area/almayer/command/airoom) "esd" = ( /obj/structure/disposalpipe/segment{ @@ -25032,9 +20285,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_midship_hallway) "esm" = ( /obj/structure/sign/safety/storage{ @@ -25080,9 +20331,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cichallway) "esK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -25099,29 +20348,19 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) "esQ" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/hallways/upper/fore_hallway) "esT" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/northwest, /area/almayer/command/lifeboat) "etf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/almayer/command/lifeboat) "etn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "ets" = ( /obj/structure/machinery/power/apc/almayer{ @@ -25145,30 +20384,21 @@ icon_state = "S"; layer = 3.3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "ety" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "etE" = ( /obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "etF" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "etM" = ( /obj/effect/decal/warning_stripes{ @@ -25179,9 +20409,7 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "etN" = ( /obj/effect/landmark/yautja_teleport, @@ -25189,17 +20417,13 @@ /area/almayer/maint/hull/upper/s_bow) "eua" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "eup" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/officer_study) "euL" = ( /obj/structure/disposalpipe/segment, @@ -25209,9 +20433,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Starboard Railguns and Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "euN" = ( /obj/effect/decal/warning_stripes{ @@ -25227,37 +20449,27 @@ /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) "euV" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, +/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/almayer/command/cic) "euW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "eva" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "evg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) "evk" = ( /obj/structure/surface/rack, @@ -25268,9 +20480,7 @@ /obj/item/reagent_container/food/snacks/wrapped/barcardine{ pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "evC" = ( /obj/structure/bed/chair{ @@ -25289,10 +20499,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "evR" = ( /obj/structure/surface/table/almayer, @@ -25300,9 +20507,7 @@ pixel_y = 8 }, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "evX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -25333,9 +20538,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/execution) "ewO" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -25345,15 +20548,10 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "ewS" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/command/cichallway) "exb" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -25366,10 +20564,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/lower/port_midship_hallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -25386,47 +20581,34 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/upper_engineering/starboard) "exQ" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/hallways/lower/starboard_midship_hallway) "eyD" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/starboard_hallway) "eyG" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south2) "eyM" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "eyQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "eyR" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/hangar) "eyV" = ( /obj/structure/reagent_dispensers/watertank, @@ -25438,10 +20620,7 @@ pixel_x = -17; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/shipboard/brig/cells) "ezq" = ( /obj/effect/projector{ @@ -25459,18 +20638,14 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "ezQ" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ezX" = ( /obj/structure/bed/chair/wood/normal, @@ -25483,10 +20658,7 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/squads/alpha) "eAm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -25505,49 +20677,33 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/fore_hallway) "eAC" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "eAF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/shipboard/brig/cic_hallway) "eAG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, /obj/item/clipboard, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "eAI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/lower/engine_core) "eAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "eAN" = ( /turf/open/floor/wood/ship, @@ -25560,10 +20716,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/living/basketball) "eBd" = ( /obj/structure/closet/secure_closet/personal/cabinet{ @@ -25573,9 +20726,7 @@ icon_state = "poster14"; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "eBe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -25587,9 +20738,7 @@ /area/almayer/living/briefing) "eBx" = ( /obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/starboard_hallway) "eBE" = ( /obj/structure/machinery/photocopier{ @@ -25605,15 +20754,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "eBO" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "eBV" = ( /obj/structure/window/reinforced{ @@ -25624,9 +20769,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "eBZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -25639,9 +20782,7 @@ pixel_y = 3 }, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "eCo" = ( /obj/structure/platform{ @@ -25654,10 +20795,7 @@ dir = 5; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south2) "eCt" = ( /obj/structure/closet/crate, @@ -25679,51 +20817,36 @@ /obj/structure/sign/safety/fire_haz{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "eCI" = ( /obj/structure/window/reinforced/ultra{ pixel_y = -12 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/brig/execution) "eDe" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_s) "eDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "eDq" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "eDt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/processing) "eDu" = ( /obj/effect/decal/warning_stripes{ @@ -25735,19 +20858,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "eEc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "eEk" = ( /obj/structure/disposalpipe/segment, @@ -25755,10 +20873,7 @@ /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "eEo" = ( /obj/structure/filingcabinet, @@ -25789,9 +20904,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "eFG" = ( /obj/structure/machinery/light{ @@ -25799,10 +20912,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/chemistry) "eFK" = ( /obj/structure/bed{ @@ -25828,10 +20938,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/port) "eFM" = ( /obj/structure/surface/table/almayer, @@ -25839,19 +20946,14 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "eFP" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/secure_closet/fridge/organic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "eFT" = ( /obj/structure/bed/sofa/vert/grey, @@ -25882,10 +20984,7 @@ /area/almayer/command/corporateliaison) "eGq" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/lower/port_midship_hallway) "eGr" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, @@ -25904,9 +21003,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "eGZ" = ( /obj/structure/bed/chair{ @@ -25918,41 +21015,30 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "eHx" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "eHy" = ( /obj/structure/machinery/conveyor{ id = "lower_garbage" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/maint/hull/lower/l_a_p) "eHX" = ( /obj/structure/machinery/door/airlock/almayer/maint{ req_one_access = null; req_one_access_txt = "2;30;34" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_f_s) "eHY" = ( /obj/structure/surface/rack, /obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "eIf" = ( /obj/structure/prop/invuln/pipe_water, @@ -25966,15 +21052,11 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "eIN" = ( /obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "eIO" = ( /obj/effect/decal/warning_stripes{ @@ -25991,9 +21073,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "eIY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -26002,10 +21082,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) "eJg" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/aft_hallway) "eJQ" = ( /obj/structure/prop/invuln{ @@ -26015,16 +21092,11 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/command/lifeboat) "eJU" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/lifeboat_pumps/north1) "eJX" = ( /turf/open/floor/plating/plating_catwalk, @@ -26036,9 +21108,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "eKH" = ( /obj/structure/pipes/vents/pump, @@ -26052,17 +21122,13 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "eKJ" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "eKQ" = ( /obj/structure/pipes/vents/scrubber{ @@ -26073,19 +21139,14 @@ "eKT" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/offices) "eKZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "eLp" = ( /obj/effect/decal/warning_stripes{ @@ -26093,9 +21154,7 @@ pixel_y = 1 }, /obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "eLu" = ( /obj/structure/sign/safety/three{ @@ -26106,10 +21165,7 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/hallways/lower/port_midship_hallway) "eLC" = ( /obj/structure/surface/table/almayer, @@ -26123,9 +21179,7 @@ /obj/item/tool/kitchen/knife{ pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "eLH" = ( /obj/structure/surface/table/almayer, @@ -26143,10 +21197,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/mp_bunks) "eMr" = ( /obj/structure/machinery/status_display{ @@ -26161,10 +21212,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "eMI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/lower/port_midship_hallway) "eMJ" = ( /obj/structure/machinery/light{ @@ -26172,9 +21220,7 @@ unslashable = 1 }, /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/perma) "eMP" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -26188,9 +21234,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "eMZ" = ( /obj/effect/decal/warning_stripes{ @@ -26208,15 +21252,10 @@ id = "containmentlockdown_S"; name = "\improper Containment Lockdown" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment) "eNL" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/starboard_midship_hallway) "eNR" = ( /obj/structure/window/framed/almayer, @@ -26239,28 +21278,20 @@ name = "\improper Evacuation Airlock PU-6"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "eON" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/starboard) "ePq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/starboard_umbilical) "ePz" = ( /obj/structure/largecrate/supply/weapons/pistols, @@ -26303,9 +21334,7 @@ icon_state = "S" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "eQj" = ( /obj/structure/machinery/door_control{ @@ -26341,15 +21370,11 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "eQz" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "eQJ" = ( /obj/structure/bed/chair{ @@ -26361,9 +21386,7 @@ /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "eQR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, @@ -26390,9 +21413,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "eRy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -26401,9 +21422,7 @@ name = "\improper Treatment Center" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "eRI" = ( /obj/effect/decal/warning_stripes{ @@ -26416,10 +21435,7 @@ autoname = 0; c_tag = "AI - Reception Exterior" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/upper/midship_hallway) "eRR" = ( /obj/item/clothing/head/helmet/marine{ @@ -26428,14 +21444,10 @@ }, /obj/item/reagent_container/food/snacks/grown/poppy, /obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "eRS" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/engineering/lower/workshop/hangar) "eSk" = ( /obj/effect/decal/warning_stripes{ @@ -26449,17 +21461,11 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "eSo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) "eSp" = ( /obj/structure/sign/safety/ladder{ @@ -26471,9 +21477,7 @@ /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer1" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "eTb" = ( /turf/closed/wall/almayer, @@ -26493,34 +21497,24 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "eTx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_aft_hallway) "eTC" = ( /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lockerroom) "eTD" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "eUe" = ( /obj/structure/sign/safety/hvac_old{ @@ -26530,10 +21524,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) "eUf" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/starboard_midship_hallway) "eUh" = ( /obj/structure/window/reinforced{ @@ -26551,15 +21542,11 @@ }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "eUn" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/chemistry) "eUA" = ( /obj/effect/decal/warning_stripes{ @@ -26567,52 +21554,40 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "eUZ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "eVj" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "eVm" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "eVv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "eVE" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "eVQ" = ( /obj/structure/machinery/light{ @@ -26638,18 +21613,14 @@ pixel_x = -17; pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/evidence_storage) "eVT" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "eWf" = ( /obj/structure/disposalpipe/segment{ @@ -26659,27 +21630,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/upper/midship_hallway) "eWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "eWs" = ( /turf/closed/wall/almayer, /area/almayer/maint/hull/lower/l_f_s) "eWv" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) "eWx" = ( /obj/structure/machinery/light{ @@ -26691,9 +21655,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/basketball) "eXb" = ( /obj/structure/disposalpipe/segment{ @@ -26703,10 +21665,7 @@ dir = 4 }, /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "eXq" = ( /turf/closed/wall/almayer, @@ -26725,9 +21684,7 @@ dir = 1; icon_state = "ramptop" }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "eXD" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -26736,9 +21693,7 @@ pixel_x = 16; pixel_y = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "eYj" = ( /obj/structure/machinery/light{ @@ -26747,9 +21702,7 @@ /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "eYn" = ( /obj/structure/filingcabinet/security, @@ -26760,9 +21713,7 @@ dir = 1; name = "\improper Tool Closet" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "eYr" = ( /obj/effect/decal/warning_stripes{ @@ -26774,10 +21725,7 @@ }, /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "eYu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -26787,9 +21735,7 @@ /obj/structure/machinery/computer/card{ pixel_x = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "eYD" = ( /obj/effect/decal/warning_stripes{ @@ -26798,15 +21744,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "eYF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "eYM" = ( /obj/structure/desertdam/decals/road_edge{ @@ -26831,10 +21773,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/upper_engineering/port) "eZm" = ( /turf/closed/wall/almayer, @@ -26861,15 +21800,10 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "eZC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -26898,10 +21832,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/port_aft_hallway) "faE" = ( /obj/structure/bookcase{ @@ -26948,9 +21879,7 @@ dir = 1; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "fbb" = ( /obj/effect/decal/warning_stripes{ @@ -26966,18 +21895,14 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "fbe" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "fbo" = ( /obj/structure/machinery/door_control{ @@ -26985,9 +21910,7 @@ name = "Main Kitchen Shutters"; pixel_x = -28 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "fbr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ @@ -26996,19 +21919,14 @@ name = "\improper Brig Lobby" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "fbu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "fbw" = ( /obj/structure/disposalpipe/segment{ @@ -27018,23 +21936,15 @@ dir = 4 }, /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) "fbB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "fbC" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/maint/hull/lower/l_m_s) "fbR" = ( /obj/effect/decal/warning_stripes{ @@ -27044,10 +21954,7 @@ /obj/structure/machinery/status_display{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/starboard) "fbU" = ( /obj/item/stool, @@ -27055,16 +21962,11 @@ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "fbV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/lifeboat_pumps/north2) "fca" = ( /obj/structure/disposalpipe/segment{ @@ -27086,30 +21988,20 @@ pixel_y = 4 }, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "fcy" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "fcB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/squads/charlie) "fcE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/basketball) "fcM" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -27118,21 +22010,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/ce_room) "fcP" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "fcS" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "fdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27148,21 +22032,15 @@ /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "fdX" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "fdZ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "fea" = ( /obj/structure/sign/safety/hvac_old{ @@ -27174,9 +22052,7 @@ pixel_y = -32 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, @@ -27196,20 +22072,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "feD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cichallway) "feG" = ( /obj/effect/decal/cleanable/dirt, @@ -27225,19 +22095,14 @@ name = "PO2 Privacy Shutters"; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "feY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_two) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -27268,14 +22133,10 @@ }, /obj/item/clothing/head/helmet/marine/tech/tanker, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "ffE" = ( -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "ffN" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -27296,32 +22157,22 @@ /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "fgl" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "fgm" = ( /obj/structure/machinery/atm{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "fgt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/shipboard/brig/medical) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27365,9 +22216,7 @@ /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "fhf" = ( /obj/structure/surface/rack, @@ -27376,9 +22225,7 @@ /area/almayer/engineering/upper_engineering) "fhH" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "fhR" = ( /obj/structure/disposalpipe/segment{ @@ -27394,10 +22241,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) "fie" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop) "fix" = ( /obj/effect/decal/warning_stripes{ @@ -27420,28 +22264,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "fje" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "fjo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/north2) "fjz" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_p) "fjA" = ( /obj/structure/disposalpipe/segment{ @@ -27450,10 +22285,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/upper/midship_hallway) "fkK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -27462,9 +22294,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_s) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ @@ -27482,15 +22312,11 @@ /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "flD" = ( /obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/maint/upper/u_a_p) "flL" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ @@ -27521,10 +22347,7 @@ dir = 4; invisibility = 101 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/briefing) "fml" = ( /obj/effect/decal/warning_stripes{ @@ -27533,10 +22356,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/port_fore_hallway) "fmv" = ( /obj/effect/decal/warning_stripes{ @@ -27553,23 +22373,16 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/living/pilotbunks) "fmZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/starboard_umbilical) "fnc" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) "fnk" = ( /obj/structure/blocker/fuelpump, @@ -27592,9 +22405,7 @@ /obj/structure/machinery/door/window/eastleft{ req_access_txt = "19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "fnA" = ( /obj/structure/surface/rack, @@ -27604,9 +22415,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "fnH" = ( /obj/structure/pipes/vents/pump{ @@ -27615,9 +22424,7 @@ /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "fnI" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "foC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -27627,9 +22434,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "foL" = ( /obj/structure/disposalpipe/segment{ @@ -27638,10 +22443,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/almayer/squads/charlie) "foN" = ( /obj/structure/bed/chair, @@ -27675,15 +22477,11 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "fpi" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "fpA" = ( /obj/effect/decal/warning_stripes{ @@ -27692,18 +22490,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/port) "fpI" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "fpM" = ( /obj/effect/decal/warning_stripes{ @@ -27720,24 +22513,17 @@ pixel_x = 8; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/starboard_atmos) "fpT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "fpW" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/hallways/hangar) "fqb" = ( /obj/item/paper/prison_station/interrogation_log{ @@ -27750,16 +22536,12 @@ pixel_y = 14 }, /obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "fqc" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "fqw" = ( /obj/structure/disposalpipe/junction{ @@ -27771,15 +22553,11 @@ /area/almayer/hallways/lower/starboard_aft_hallway) "fqA" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "fqC" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "fqJ" = ( /obj/structure/machinery/door_control{ @@ -27788,10 +22566,7 @@ pixel_y = 24; req_access_txt = "4" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27805,10 +22580,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/starboard_hallway) "fqU" = ( /obj/structure/disposalpipe/segment, @@ -27822,9 +22594,7 @@ /area/almayer/hallways/lower/port_fore_hallway) "fqW" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "fqZ" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -27832,10 +22602,7 @@ name = "ship-grade camera"; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) "frb" = ( /obj/structure/surface/table/almayer, @@ -27850,15 +22617,10 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "frl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "frt" = ( /obj/structure/surface/table/almayer, @@ -27891,27 +22653,20 @@ /obj/structure/machinery/computer/working_joe{ pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/warden_office) "frz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/starboard_point_defense) "frF" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/starboard_missiles) "frM" = ( /obj/effect/decal/warning_stripes{ @@ -27930,9 +22685,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/port_umbilical) "fsh" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -27946,9 +22699,7 @@ pixel_y = 2 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "fsR" = ( /obj/structure/pipes/vents/pump{ @@ -27961,22 +22712,15 @@ /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "fsV" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/living/cryo_cells) "fuz" = ( /obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "fuS" = ( /obj/structure/disposalpipe/segment, @@ -27985,34 +22729,24 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "fuT" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "fuU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_umbilical) "fuY" = ( /obj/structure/bed/chair/bolted{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/interrogation) "fva" = ( /obj/structure/machinery/light{ @@ -28025,22 +22759,14 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "fvd" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/upper_medical) "fvf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/living/briefing) "fvo" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -28055,9 +22781,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "fvA" = ( /obj/structure/closet/secure_closet/brig, @@ -28065,9 +22789,7 @@ /area/almayer/shipboard/brig/perma) "fvB" = ( /obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "fvN" = ( /obj/structure/disposalpipe/segment{ @@ -28098,9 +22820,7 @@ pixel_y = 4 }, /obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "fwK" = ( /turf/closed/wall/almayer/outer, @@ -28112,9 +22832,7 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "fwY" = ( /obj/structure/disposalpipe/segment{ @@ -28131,10 +22849,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "fxJ" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, @@ -28149,9 +22864,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "fya" = ( /obj/effect/decal/warning_stripes{ @@ -28160,18 +22873,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "fyp" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "fyD" = ( /obj/structure/machinery/light, @@ -28201,14 +22910,10 @@ dir = 1; name = "\improper Command Power Substation" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "fzc" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "fzq" = ( /obj/effect/decal/warning_stripes{ @@ -28218,9 +22923,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "fzt" = ( /obj/structure/surface/table/almayer, @@ -28232,9 +22935,7 @@ pixel_x = 6; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "fzx" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -28244,9 +22945,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, @@ -28268,9 +22967,7 @@ /obj/structure/surface/rack, /obj/item/tool/wirecutters, /obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "fAa" = ( /obj/structure/surface/table/almayer, @@ -28283,28 +22980,20 @@ /obj/item/weapon/gun/pistol/m4a3{ current_mag = null }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/living/offices/flight) "fAr" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) "fBi" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/hallways/lower/starboard_midship_hallway) "fBo" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "fBO" = ( /obj/structure/machinery/chem_master{ @@ -28314,9 +23003,7 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "fCg" = ( /obj/effect/projector{ @@ -28329,9 +23016,7 @@ "fCi" = ( /obj/structure/surface/table/almayer, /obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28356,9 +23041,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28370,9 +23053,7 @@ /obj/structure/surface/table/almayer, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "fCW" = ( /obj/structure/disposalpipe/segment, @@ -28388,40 +23069,30 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "fDj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "fDG" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/upper_engineering) "fDJ" = ( /obj/effect/landmark/start/marine/engineer/charlie, /obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "fDS" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28430,9 +23101,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "fDV" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -28445,26 +23114,18 @@ pixel_x = 2; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "fEe" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "fEk" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "fEC" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "fEF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28474,24 +23135,18 @@ /area/almayer/hallways/lower/starboard_midship_hallway) "fER" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "fFe" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "fFh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/autopsy_scanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/morgue) "fFD" = ( /obj/structure/window/reinforced{ @@ -28501,9 +23156,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "fFL" = ( /obj/structure/disposalpipe/junction{ @@ -28513,9 +23166,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "fFO" = ( /obj/structure/machinery/light{ @@ -28524,9 +23175,7 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "fFQ" = ( /obj/structure/surface/table/almayer, @@ -28534,9 +23183,7 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "fFU" = ( /obj/structure/sign/safety/hvac_old{ @@ -28551,9 +23198,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/numbertwobunks) "fGd" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -28561,9 +23206,7 @@ id = "vehicle_elevator_railing" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/lower/vehiclehangar) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -28571,9 +23214,7 @@ /area/almayer/lifeboat_pumps/south1) "fGi" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "fGu" = ( /obj/structure/machinery/door_control{ @@ -28596,16 +23237,11 @@ dir = 2; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "fGB" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "fHb" = ( /obj/structure/largecrate/random/case/small, @@ -28616,22 +23252,16 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "fHz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "fHF" = ( -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "fIK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -28648,9 +23278,7 @@ name = "\improper Requisitions Auxiliary Storage Room"; req_one_access_txt = "19;21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "fIZ" = ( /obj/structure/surface/table/almayer, @@ -28658,9 +23286,7 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "fJm" = ( /obj/structure/flora/pottedplant{ @@ -28670,24 +23296,17 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "fJp" = ( /obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "fJt" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "fJu" = ( /obj/effect/landmark/yautja_teleport, @@ -28722,18 +23341,13 @@ }, /obj/item/seeds/wheatseed, /obj/item/seeds/wheatseed, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/shipboard/brig/cells) "fKe" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "fKh" = ( /obj/structure/window/framed/almayer, @@ -28747,10 +23361,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/chief_mp_office) "fKt" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -28764,9 +23375,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "fKw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -28783,9 +23392,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "fKT" = ( /obj/structure/machinery/vending/coffee, @@ -28793,10 +23400,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) "fKV" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -28812,9 +23416,7 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "fLf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -28829,17 +23431,13 @@ pixel_x = 3; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "fLi" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "fLl" = ( /turf/closed/wall/almayer, @@ -28863,18 +23461,13 @@ /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "fLv" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "fLF" = ( /obj/structure/machinery/brig_cell/perma_2{ @@ -28892,9 +23485,7 @@ pixel_x = -10; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "fMt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -28912,9 +23503,7 @@ pixel_y = 6 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "fME" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28940,9 +23529,7 @@ dir = 4 }, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28960,18 +23547,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) "fNH" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/hallways/lower/starboard_midship_hallway) "fNX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28992,28 +23574,20 @@ /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/sea_office) "fOK" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /obj/item/device/camera_film, /obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "fOL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/upper_medical) "fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -29023,9 +23597,7 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "fPp" = ( /obj/structure/bed{ @@ -29052,24 +23624,17 @@ /obj/item/bedsheet/yellow{ pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/living/port_emb) "fPu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "fPB" = ( /obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "fPF" = ( /obj/structure/closet/crate/trashcart, @@ -29080,19 +23645,14 @@ }, /obj/item/tool/crowbar/red, /obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "fQn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "fQu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -29106,9 +23666,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "fQD" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ @@ -29116,9 +23674,7 @@ autoname = 0; c_tag = "AI - Core Chamber" }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "fQS" = ( /obj/structure/bed/chair/comfy/orange, @@ -29136,18 +23692,13 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_s) "fRr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/command/cichallway) "fRC" = ( /obj/structure/bed/chair/comfy{ @@ -29175,17 +23726,13 @@ id = "line2"; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "fSm" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "fSx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -29201,10 +23748,7 @@ /obj/structure/surface/table/almayer, /obj/item/device/flashlight, /obj/item/storage/firstaid/rad, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/lower) "fTj" = ( /obj/effect/step_trigger/clone_cleaner, @@ -29212,10 +23756,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/starboard) "fTl" = ( /turf/closed/wall/almayer/outer, @@ -29239,9 +23780,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/laundry) "fUz" = ( /obj/structure/surface/rack, @@ -29250,33 +23789,25 @@ pixel_y = 9 }, /obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) "fUB" = ( /obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "fUC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "fUZ" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "fVa" = ( /obj/item/stack/catwalk, @@ -29290,22 +23821,14 @@ /area/almayer/maint/hull/upper/u_a_p) "fVk" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "fVo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/lower/workshop) "fVx" = ( -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3"; - light_range = 4 - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, /area/almayer/command/airoom) "fVz" = ( /obj/effect/decal/warning_stripes{ @@ -29315,9 +23838,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "fVF" = ( /obj/structure/machinery/light{ @@ -29332,17 +23853,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "fWg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "fWi" = ( /obj/structure/toilet{ @@ -29365,18 +23882,13 @@ /area/almayer/medical/morgue) "fXx" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/computerlab) "fXz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "fXE" = ( /obj/structure/surface/table/almayer, @@ -29387,9 +23899,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "fXN" = ( /obj/effect/landmark/start/marine/delta, @@ -29397,32 +23907,20 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) "fXO" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/north2) "fXP" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "fXZ" = ( /obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "fYb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/morgue) "fYf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29438,9 +23936,7 @@ pixel_y = 4 }, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "fYZ" = ( /obj/effect/decal/warning_stripes{ @@ -29449,9 +23945,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) "fZl" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/engine_core) "fZo" = ( /obj/effect/decal/warning_stripes{ @@ -29489,10 +23983,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/lower) "fZE" = ( /turf/open/floor/almayer, @@ -29501,9 +23992,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "fZI" = ( /obj/structure/platform_decoration{ @@ -29513,9 +24002,7 @@ pixel_x = 7; pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "fZR" = ( /obj/structure/machinery/light/small, @@ -29540,9 +24027,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "gaJ" = ( /turf/closed/wall/almayer, @@ -29556,10 +24041,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "gba" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -29599,15 +24081,10 @@ pixel_y = -8; req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "gbm" = ( -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "gbs" = ( /obj/structure/surface/table/reinforced/black, @@ -29616,26 +24093,17 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "gbw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/processing) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/port) "gcN" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -29644,38 +24112,27 @@ req_access = null; req_access_txt = "19;29" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/sea_office) "gde" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/shipboard/brig/cic_hallway) "gdp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/hangar) "gdG" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/mp_bunks) "gdJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29702,9 +24159,7 @@ pixel_y = -12; shuttleId = "dropship_normandy" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "gei" = ( /obj/structure/sign/safety/ref_bio_storage{ @@ -29717,16 +24172,12 @@ }, /obj/structure/medical_supply_link, /obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "gek" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, @@ -29741,9 +24192,7 @@ /obj/item/paper_bin/uscm, /obj/item/tool/pen, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "ger" = ( /obj/structure/surface/table/almayer, @@ -29760,9 +24209,7 @@ /obj/item/folder/white{ pixel_x = -8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "geu" = ( /obj/structure/machinery/light, @@ -29784,9 +24231,7 @@ /obj/structure/sign/safety/rewire{ pixel_y = -38 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -29797,9 +24242,7 @@ /area/almayer/squads/delta) "gfq" = ( /obj/structure/closet/secure_closet/fridge/groceries, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "gfu" = ( /obj/effect/decal/warning_stripes{ @@ -29815,19 +24258,14 @@ "gfG" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "gfN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/port) "gfW" = ( /turf/closed/wall/almayer/white, @@ -29843,29 +24281,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "ggo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "ggt" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) "ggz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "ggD" = ( /obj/structure/largecrate/random/case/double, @@ -29880,9 +24309,7 @@ pixel_x = 28; pixel_y = -23 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "ggQ" = ( /obj/structure/window/framed/almayer, @@ -29893,9 +24320,7 @@ dir = 8 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "ghA" = ( /obj/structure/disposalpipe/segment{ @@ -29908,9 +24333,7 @@ }, /obj/item/toy/deck/uno, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "ghF" = ( /turf/open/floor/almayer, @@ -29919,10 +24342,7 @@ /obj/structure/bed/chair/bolted{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/interrogation) "gio" = ( /obj/structure/closet/emcloset, @@ -29930,26 +24350,18 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "gip" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "giD" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "giR" = ( /obj/structure/machinery/status_display{ @@ -29959,16 +24371,10 @@ /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/shipboard/brig/cic_hallway) "giW" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/hallways/upper/midship_hallway) "gjg" = ( /obj/structure/sign/safety/escapepod{ @@ -29979,10 +24385,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/lower/port_midship_hallway) "gji" = ( /obj/structure/disposalpipe/segment{ @@ -29991,10 +24394,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "gjm" = ( /obj/effect/decal/warning_stripes{ @@ -30004,9 +24404,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "gjq" = ( /obj/structure/platform{ @@ -30017,17 +24415,11 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south1) "gjt" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "gjv" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -30044,32 +24436,23 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/command/computerlab) "gjK" = ( /obj/structure/bed/chair/wheelchair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_medbay) "gkr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "gkE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/mess) "gkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -30077,9 +24460,7 @@ /obj/structure/machinery/computer/card{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "gll" = ( /obj/structure/machinery/power/apc/almayer{ @@ -30094,10 +24475,7 @@ /obj/item/folder/black, /obj/item/folder/black, /obj/item/folder/white, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_medbay) "glB" = ( /obj/structure/sign/safety/chem_lab{ @@ -30105,9 +24483,7 @@ pixel_y = 29 }, /obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "glG" = ( /obj/structure/surface/rack, @@ -30116,9 +24492,7 @@ pixel_y = 3 }, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/shipboard/brig/medical) "glH" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -30129,16 +24503,12 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop) "glP" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "gmb" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -30147,22 +24517,15 @@ name = "Storage"; req_one_access_txt = "19;21" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "gmj" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "gms" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/port) "gnu" = ( /obj/structure/surface/table/almayer, @@ -30170,10 +24533,7 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie) "gnv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "gnB" = ( /obj/structure/platform_decoration{ @@ -30193,9 +24553,7 @@ /obj/item/frame/table, /obj/item/frame/table, /obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "gof" = ( /obj/structure/platform_decoration{ @@ -30209,9 +24567,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/north1) "gol" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ @@ -30220,9 +24576,7 @@ req_one_access = null; req_one_access_txt = "7;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/weapon_room) "goo" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -30233,9 +24587,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_midship_hallway) "goy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -30251,23 +24603,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "goL" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south1) "goM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "goY" = ( /turf/closed/wall/almayer, @@ -30281,15 +24626,11 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "gpi" = ( /obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "gpp" = ( /obj/item/device/radio/intercom{ @@ -30297,18 +24638,13 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "gpI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "gpO" = ( /turf/open/floor/plating/plating_catwalk, @@ -30318,10 +24654,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "gpW" = ( /obj/structure/surface/table/reinforced/almayer_B{ @@ -30353,9 +24686,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "gqz" = ( /obj/structure/disposalpipe/segment{ @@ -30367,16 +24698,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) "gqH" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/hallways/upper/midship_hallway) "gqI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/upper/midship_hallway) "gqP" = ( /obj/structure/largecrate/random/case, @@ -30384,9 +24709,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "gqQ" = ( /obj/structure/flora/pottedplant{ @@ -30404,15 +24727,10 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "gre" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/upper/fore_hallway) "grv" = ( /obj/effect/decal/warning_stripes{ @@ -30426,16 +24744,10 @@ /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) "grR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/living/briefing) "grT" = ( /obj/structure/surface/table/almayer, @@ -30461,10 +24773,7 @@ /obj/item/storage/firstaid/fire{ pixel_x = -6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "gsg" = ( /obj/structure/pipes/vents/pump, @@ -30487,19 +24796,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "gsi" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "gsm" = ( /obj/structure/machinery/status_display{ @@ -30513,9 +24817,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "gsy" = ( /obj/structure/surface/rack, @@ -30527,28 +24829,18 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "gsC" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "gsJ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/hallways/upper/midship_hallway) "gsM" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "gsZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -30567,10 +24859,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "gtp" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -30578,10 +24867,7 @@ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cichallway) "gtD" = ( /turf/open/floor/plating/plating_catwalk, @@ -30591,14 +24877,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) "gtI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "gtQ" = ( /obj/effect/decal/warning_stripes{ @@ -30615,19 +24897,14 @@ pixel_x = -17; pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/perma) "guo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/lifeboat_pumps/south2) "guK" = ( /obj/effect/projector{ @@ -30638,16 +24915,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "guP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/maint/upper/u_a_s) "guS" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "guW" = ( /obj/structure/surface/table/reinforced/prison, @@ -30673,15 +24945,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "gvu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "gvK" = ( /obj/structure/machinery/light, @@ -30692,48 +24959,33 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "gwh" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "gwj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "gwn" = ( /obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "gwo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/living/basketball) "gww" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "gwM" = ( /obj/structure/pipes/vents/pump, @@ -30758,9 +25010,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "gwR" = ( /obj/item/device/flashlight/lamp/green, @@ -30778,9 +25028,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "gxk" = ( /obj/effect/decal/cleanable/dirt, @@ -30789,52 +25037,37 @@ /obj/item/weapon/gun/rifle/l42a{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "gxm" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/stairs) "gxn" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/starboard) "gxt" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ name = "\improper Warden's Office" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/warden_office) "gxI" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/upper/s_bow) "gxO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/living/gym) "gxP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell) "gxU" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "gyh" = ( /obj/structure/machinery/cm_vending/gear/executive_officer{ @@ -30844,9 +25077,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "gym" = ( /turf/open/floor/almayer, @@ -30863,15 +25094,10 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "gyw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "gyE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_aft_hallway) "gyH" = ( /obj/item/tool/warning_cone{ @@ -30886,18 +25112,13 @@ icon_state = "comm_server"; name = "server box" }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "gyO" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/ce_room) "gyU" = ( /obj/effect/decal/warning_stripes{ @@ -30927,9 +25148,7 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "gzq" = ( /turf/open/floor/plating/plating_catwalk, @@ -30965,9 +25184,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "gzN" = ( /obj/structure/sign/safety/maint{ @@ -30981,22 +25198,16 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "gAj" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "gAk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "gAl" = ( /obj/structure/machinery/light{ @@ -31011,9 +25222,7 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "gAA" = ( /turf/open/floor/plating/plating_catwalk, @@ -31021,9 +25230,7 @@ "gAO" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "gAP" = ( /obj/item/device/radio/intercom{ @@ -31033,15 +25240,11 @@ }, /obj/structure/closet, /obj/item/clothing/head/bearpelt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "gAS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "gBc" = ( /obj/structure/disposalpipe/segment, @@ -31054,9 +25257,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "gBd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -31072,9 +25273,7 @@ /area/almayer/living/briefing) "gBs" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) "gBU" = ( /obj/structure/surface/table/almayer, @@ -31090,24 +25289,18 @@ /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "gCf" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "gCu" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ @@ -31124,17 +25317,13 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "gCP" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "gDh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -31147,18 +25336,13 @@ /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ plane = -6 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "gDk" = ( /obj/structure/sign/safety/stairs{ pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "gDp" = ( /obj/structure/machinery/light{ @@ -31178,10 +25362,7 @@ phone_id = "Brig Cells"; pixel_x = 16 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/processing) "gDH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -31196,10 +25377,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) "gDX" = ( /obj/structure/sign/safety/nonpress_ag{ @@ -31219,23 +25397,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "gEv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "gEC" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -31248,9 +25420,7 @@ /obj/item/book/manual/atmospipes{ pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "gFP" = ( /turf/closed/wall/almayer/outer, @@ -31258,32 +25428,23 @@ "gFR" = ( /obj/structure/machinery/light, /obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/commandbunks) "gGb" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "gGr" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "gGs" = ( /obj/item/tool/crowbar/red{ @@ -31311,9 +25472,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/vehiclehangar) "gGx" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -31321,18 +25480,14 @@ pixel_x = -16 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "gGI" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "gGJ" = ( /obj/structure/disposalpipe/segment{ @@ -31341,9 +25496,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "gHh" = ( /obj/effect/decal/warning_stripes{ @@ -31354,16 +25507,12 @@ /area/almayer/hallways/upper/port) "gHi" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_m_s) "gHj" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/fridge/groceries/stock, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "gHl" = ( /obj/structure/machinery/light{ @@ -31373,21 +25522,14 @@ /area/almayer/engineering/lower/workshop/hangar) "gHo" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "gHt" = ( /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/processing) "gHZ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "gIh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -31397,9 +25539,7 @@ req_access = list(); req_one_access_txt = "1;6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/ce_room) "gIm" = ( /obj/structure/machinery/power/apc/almayer{ @@ -31418,9 +25558,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -31429,9 +25567,7 @@ /turf/open/floor/almayer, /area/almayer/command/cichallway) "gIJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "gIO" = ( /obj/structure/bed/chair/bolted{ @@ -31453,9 +25589,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/evidence_storage) "gJf" = ( /obj/structure/bed/sofa/south/grey/left{ @@ -31465,27 +25599,20 @@ /area/almayer/maint/hull/upper/u_f_s) "gJg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "gJp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "gJC" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "gJE" = ( /obj/structure/machinery/door_control{ @@ -31499,10 +25626,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/interrogation) "gJF" = ( /turf/closed/wall/almayer/outer, @@ -31522,19 +25646,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/offices) "gKd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/starboard) "gKo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -31544,9 +25663,7 @@ /area/almayer/hallways/lower/port_umbilical) "gKv" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "gKw" = ( /obj/structure/disposalpipe/junction{ @@ -31560,43 +25677,31 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "gKF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "gKK" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/hallways/lower/repair_bay) "gKR" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "gKZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wet_sign, /obj/item/tool/wet_sign, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "gLc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -31617,9 +25722,7 @@ /area/almayer/maint/upper/u_f_s) "gLm" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "gLz" = ( /obj/structure/machinery/cryopod{ @@ -31633,9 +25736,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "gLD" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -31652,19 +25753,13 @@ dir = 9; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "gLG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/lower/engine_core) "gLN" = ( /obj/structure/machinery/light, @@ -31682,18 +25777,14 @@ id = "Delta_2"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "gMd" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/lighter, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "gMk" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -31741,17 +25832,13 @@ dir = 1 }, /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "gMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +/turf/open/floor/almayer/uscm/directional/east, /area/almayer/living/briefing) "gNg" = ( /obj/structure/sign/safety/maint{ @@ -31761,15 +25848,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) "gNo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "gNp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/medical_science) "gNq" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ @@ -31778,9 +25860,7 @@ req_one_access_txt = "17;18;21"; vend_x_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "gNy" = ( /obj/effect/decal/warning_stripes{ @@ -31789,15 +25869,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "gNI" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/maint/upper/u_a_s) "gNN" = ( /obj/structure/bed/chair/office/dark, @@ -31807,10 +25882,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "gNZ" = ( /obj/structure/machinery/light/small{ @@ -31826,10 +25898,7 @@ /obj/structure/sign/safety/stairs{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "gOk" = ( /obj/structure/largecrate/guns/merc{ @@ -31839,10 +25908,7 @@ /area/almayer/maint/lower/constr) "gOC" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower) "gOR" = ( /obj/structure/machinery/disposal, @@ -31852,38 +25918,27 @@ /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) "gOS" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/hallways/lower/port_midship_hallway) "gPc" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/starboard) "gPA" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/upper/midship_hallway) "gPS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "gPU" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -31891,9 +25946,7 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "gQk" = ( /obj/structure/surface/table/almayer, @@ -31909,9 +25962,7 @@ }, /obj/item/storage/firstaid/rad, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ @@ -31925,17 +25976,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "gQQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "gRc" = ( /obj/item/tool/wet_sign, @@ -31955,18 +26002,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/hallways/lower/port_umbilical) "gRP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "gSa" = ( /obj/effect/decal/warning_stripes{ @@ -31974,20 +26016,14 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "gSj" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/engineering/port_atmos) "gSk" = ( /obj/structure/disposalpipe/segment{ @@ -31996,9 +26032,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "gSy" = ( /obj/item/frame/rack{ @@ -32022,9 +26056,7 @@ /area/almayer/shipboard/brig/mp_bunks) "gSH" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "gTk" = ( /obj/structure/surface/table/almayer, @@ -32032,9 +26064,7 @@ dir = 4 }, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "gTH" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -32049,32 +26079,24 @@ dir = 4; pixel_y = -18 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "gTK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "gUf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "gUg" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "gUi" = ( /obj/structure/machinery/power/apc/almayer, @@ -32097,9 +26119,7 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32124,15 +26144,10 @@ /obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/port) "gUV" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/command/lifeboat) "gUX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -32143,10 +26158,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/containment) "gVu" = ( /obj/structure/pipes/vents/scrubber{ @@ -32160,9 +26172,7 @@ pixel_x = 18; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "gVA" = ( /obj/structure/disposalpipe/down/almayer{ @@ -32186,10 +26196,7 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "gWm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -32210,10 +26217,7 @@ /obj/item/tool/crowbar/red{ pixel_x = 17 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/hallways/lower/repair_bay) "gWu" = ( /obj/structure/disposalpipe/segment, @@ -32237,9 +26241,7 @@ /obj/structure/closet/secure_closet/personal/cabinet{ req_access_txt = "5" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "gXs" = ( /obj/effect/step_trigger/ares_alert/terminals, @@ -32251,34 +26253,24 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "gXx" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/shipboard/brig/cic_hallway) "gXB" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/chair/comfy/delta{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "gYe" = ( /obj/structure/machinery/vending/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/sea_office) "gYg" = ( /obj/structure/surface/table/almayer, @@ -32289,9 +26281,7 @@ pixel_x = -7; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "gYj" = ( /obj/effect/decal/warning_stripes{ @@ -32315,10 +26305,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_medbay) "gYp" = ( /obj/structure/machinery/light, @@ -32326,43 +26313,31 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/maint/upper/u_m_p) "gYt" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "gYx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "gYI" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "gYU" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -32377,45 +26352,32 @@ linked_dock = "almayer-lifeboat2"; throw_dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "gZW" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/lower/port_fore_hallway) "had" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "hal" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "ham" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lower_medical_lobby) "haz" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "haB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32425,10 +26387,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "haD" = ( /obj/structure/machinery/light{ @@ -32437,15 +26396,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/lower) "haO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "haQ" = ( /obj/structure/machinery/firealarm{ @@ -32456,17 +26410,13 @@ pixel_y = 3 }, /obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "haR" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "haY" = ( /obj/structure/disposalpipe/segment{ @@ -32474,42 +26424,30 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/shipboard/brig/starboard_hallway) "hbl" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_s) "hbp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/p_stern) "hbs" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower) "hbu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/auxiliary_officer_office) "hbA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32527,9 +26465,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "hbI" = ( /obj/structure/sign/safety/ammunition{ @@ -32537,9 +26473,7 @@ pixel_y = 7 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "hcf" = ( /obj/item/bedsheet/brown{ @@ -32567,10 +26501,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/engineering/port_atmos) "hcw" = ( /obj/structure/surface/table/reinforced/black, @@ -32583,63 +26514,44 @@ pixel_x = 9; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cryo_cells) "hcI" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "hcX" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "hdd" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/starboard_missiles) "hds" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/living/offices) "hdy" = ( /obj/item/storage/firstaid/fire, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "hdE" = ( /obj/structure/filingcabinet, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "hdP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/aft_hallway) "hdQ" = ( /obj/structure/closet/secure_closet{ @@ -32649,25 +26561,17 @@ /obj/item/weapon/gun/rifle/m4ra, /obj/item/weapon/gun/rifle/m4ra, /obj/item/ammo_box/magazine/m4ra, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "hdV" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/hallways/lower/port_midship_hallway) "hec" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "heo" = ( /obj/structure/machinery/power/apc/almayer{ @@ -32686,18 +26590,14 @@ icon_state = "W"; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/armory) "heK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; name = "\improper Tool Closet" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "heO" = ( /obj/structure/largecrate/random/barrel/green, @@ -32705,9 +26605,7 @@ /area/almayer/maint/hull/lower/l_a_s) "heS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "hfa" = ( /obj/structure/window/reinforced{ @@ -32725,9 +26623,7 @@ }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "hfb" = ( /obj/structure/disposalpipe/segment{ @@ -32749,9 +26645,7 @@ /area/almayer/hallways/upper/aft_hallway) "hfv" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "hfO" = ( /obj/structure/machinery/light/small{ @@ -32764,66 +26658,46 @@ /obj/item/storage/belt/utility/full, /obj/item/clothing/suit/storage/hazardvest/black, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "hfQ" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "hgg" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "hgk" = ( /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "hgo" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/lower) "hgp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "hgs" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) "hgB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/intel, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/command/computerlab) "hgD" = ( /obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ @@ -32836,19 +26710,14 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "hgL" = ( /obj/item/tool/warning_cone{ pixel_x = 4; pixel_y = 14 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "hgZ" = ( /obj/structure/machinery/door_control{ @@ -32858,9 +26727,7 @@ pixel_y = -25 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_three) "hhd" = ( /obj/structure/surface/table/almayer, @@ -32883,9 +26750,7 @@ /area/almayer/maint/lower/constr) "hhg" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -32893,9 +26758,7 @@ icon_state = "SE-out"; pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "hhA" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -32903,17 +26766,12 @@ /area/almayer/lifeboat_pumps/north1) "hif" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "hip" = ( /obj/item/device/multitool, /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "hiu" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -32921,17 +26779,13 @@ pixel_x = 16; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "hiy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/north1) "hiM" = ( /obj/structure/disposalpipe/segment, @@ -32945,25 +26799,17 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/starboard_midship_hallway) "hji" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/squads/delta) "hjk" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "hjs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32972,16 +26818,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/delta) "hjA" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/port_missiles) "hjB" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -32989,18 +26829,13 @@ name = "Kitchen"; req_one_access_txt = "30;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "hjM" = ( /obj/structure/bed/chair/bolted{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/brig/processing) "hjQ" = ( /obj/structure/machinery/status_display{ @@ -33014,23 +26849,17 @@ pixel_y = 20 }, /obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "hki" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "hkz" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "hkB" = ( /obj/structure/sign/safety/rewire{ @@ -33057,9 +26886,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "hkH" = ( /obj/structure/surface/table/almayer, @@ -33077,9 +26904,7 @@ pixel_y = 8; req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, @@ -33109,9 +26934,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/midship_hallway) "hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -33119,9 +26942,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "hlI" = ( /obj/structure/surface/table/almayer, @@ -33139,10 +26960,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/warden_office) "hlT" = ( /obj/effect/decal/warning_stripes{ @@ -33152,10 +26970,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/port) "hlU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -33168,9 +26983,7 @@ dir = 1; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "hlX" = ( /obj/structure/stairs/perspective{ @@ -33188,10 +27001,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/hydroponics) "hmj" = ( /obj/effect/decal/warning_stripes{ @@ -33206,9 +27016,7 @@ /area/almayer/hallways/upper/starboard) "hmv" = ( /obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "hmw" = ( /obj/structure/platform{ @@ -33218,18 +27026,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "hmy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "hmA" = ( /turf/closed/wall/almayer/reinforced, @@ -33242,9 +27045,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "hmF" = ( /obj/structure/window/reinforced{ @@ -33254,15 +27055,11 @@ /obj/structure/sign/poster{ pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "hmS" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/command/cichallway) "hmV" = ( /obj/structure/bookcase{ @@ -33299,9 +27096,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "hnt" = ( /obj/item/toy/deck{ @@ -33311,9 +27106,7 @@ pixel_x = 32 }, /obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "hnE" = ( /obj/structure/surface/table/almayer, @@ -33326,10 +27119,7 @@ dir = 8; invisibility = 101 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/starboard_hallway) "hnI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -33340,9 +27130,7 @@ name = "\improper Flight Crew Quarters"; req_one_access_txt = "19;22" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "hnP" = ( /obj/structure/barricade/handrail{ @@ -33366,20 +27154,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/lower/vehiclehangar) "hoK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/starboard_hallway) "hoT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "hoW" = ( /obj/structure/surface/table/reinforced/prison, @@ -33389,26 +27170,19 @@ }, /obj/item/storage/firstaid/adv, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) "hpk" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "hpN" = ( /obj/structure/machinery/light, /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -33434,9 +27208,7 @@ /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/u_m_s) "hqc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "hqh" = ( /obj/effect/decal/warning_stripes{ @@ -33455,9 +27227,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "hqp" = ( /obj/structure/disposalpipe/segment, @@ -33466,9 +27236,7 @@ /area/almayer/hallways/lower/port_fore_hallway) "hqu" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "hqW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -33479,16 +27247,12 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "hrm" = ( /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "hrn" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ @@ -33503,27 +27267,21 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "hro" = ( /obj/structure/machinery/vending/coffee{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "hrF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/starboard_point_defense) "hrI" = ( /turf/open/floor/almayer, @@ -33536,9 +27294,7 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "hsg" = ( /obj/structure/pipes/vents/pump{ @@ -33561,26 +27317,20 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "hsj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/chief_mp_office) "hsr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) "hss" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "hsu" = ( /obj/structure/bed/sofa/south/grey{ @@ -33600,10 +27350,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/squads/bravo) "hte" = ( /obj/structure/sign/safety/security{ @@ -33618,17 +27365,13 @@ pixel_y = 32 }, /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "htk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "htl" = ( /obj/structure/disposalpipe/segment, @@ -33640,18 +27383,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "htq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "htG" = ( /obj/item/tool/soap, @@ -33661,9 +27400,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "htI" = ( /obj/structure/platform_decoration{ @@ -33677,9 +27414,7 @@ pixel_x = -5; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "huD" = ( /obj/structure/machinery/light{ @@ -33688,19 +27423,14 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) "huK" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/living/cryo_cells) "huO" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/computerlab) "huP" = ( /obj/structure/machinery/alarm/almayer{ @@ -33719,9 +27449,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "hvd" = ( /turf/closed/wall/almayer/reinforced, @@ -33762,15 +27490,11 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_p) "hvz" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "hvH" = ( /turf/open/floor/wood/ship, @@ -33779,19 +27503,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "hwC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "hwH" = ( /obj/structure/stairs{ @@ -33802,9 +27521,7 @@ vector_x = -1; vector_y = 100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) "hxe" = ( /obj/structure/disposalpipe/segment{ @@ -33847,21 +27564,14 @@ }, /obj/item/reagent_container/glass/bucket, /obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "hyb" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "hyk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "hyw" = ( /obj/effect/decal/warning_stripes{ @@ -33872,9 +27582,7 @@ icon_state = "NE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "hyE" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -33883,9 +27591,7 @@ name = "ARES Exterior Lockdown" }, /obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "hyQ" = ( /turf/closed/wall/almayer, @@ -33908,18 +27614,13 @@ pixel_x = 32; pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/interrogation) "hza" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "hzb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -33938,19 +27639,14 @@ "hzs" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "hzu" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "hzG" = ( /obj/structure/disposalpipe/segment{ @@ -33969,16 +27665,11 @@ /obj/structure/surface/rack, /obj/item/mortar_shell/flare, /obj/item/mortar_shell/flare, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "hAf" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) "hAh" = ( /turf/closed/wall/almayer/outer, @@ -33987,9 +27678,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "hAA" = ( /obj/structure/machinery/status_display{ @@ -34000,9 +27689,7 @@ id = "laddersoutheast"; name = "\improper South East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_midship_hallway) "hAG" = ( /obj/structure/closet/crate/internals, @@ -34010,9 +27697,7 @@ /obj/item/restraint/adjustable/cable/blue, /obj/item/restraint/adjustable/cable/cyan, /obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "hAU" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -34022,9 +27707,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "hAZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34034,17 +27717,13 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "hBc" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "hBr" = ( /obj/effect/decal/warning_stripes{ @@ -34056,17 +27735,11 @@ pixel_x = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "hBz" = ( /obj/item/mortar_kit, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "hBF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -34077,20 +27750,14 @@ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "hBL" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/lifeboat) "hBW" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "hCf" = ( /obj/structure/sign/safety/manualopenclose{ @@ -34104,17 +27771,13 @@ /area/almayer/hallways/lower/port_midship_hallway) "hCk" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "hCq" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "hCt" = ( /obj/structure/sign/safety/terminal{ @@ -34124,9 +27787,7 @@ /obj/structure/sign/safety/intercom{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "hCS" = ( /obj/structure/surface/table/reinforced/prison, @@ -34143,17 +27804,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) "hCV" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "hDw" = ( /obj/structure/surface/table/almayer, @@ -34173,41 +27830,30 @@ pixel_x = -3; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "hDU" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/lower/port_fore_hallway) "hDV" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "hDX" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "hEb" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "hEg" = ( /obj/structure/machinery/door_control{ @@ -34218,10 +27864,7 @@ throw_range = 15 }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/port_fore_hallway) "hEl" = ( /obj/structure/machinery/alarm/almayer{ @@ -34247,18 +27890,14 @@ pixel_x = 8; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "hEw" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 }, /obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "hEV" = ( /obj/structure/pipes/vents/pump, @@ -34266,16 +27905,11 @@ /area/almayer/lifeboat_pumps/south1) "hFw" = ( /obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "hFC" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "hFF" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -34285,18 +27919,13 @@ req_one_access = null }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/morgue) "hGb" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "hGh" = ( /obj/structure/window/framed/almayer/white, @@ -34320,10 +27949,7 @@ }, /obj/item/clothing/suit/storage/marine/light/vest, /obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "hGO" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -34331,29 +27957,20 @@ dir = 8; invisibility = 101 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/briefing) "hGV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "hHe" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/starboard) "hHl" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -34369,19 +27986,14 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) "hIp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "hIs" = ( /obj/effect/decal/warning_stripes{ @@ -34389,9 +28001,7 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/command/corporateliaison) "hIF" = ( /obj/structure/machinery/light{ @@ -34412,25 +28022,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/squads/delta) "hIX" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "hJg" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; name = "Gas mixer N2/O2" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "hJk" = ( /obj/structure/stairs/perspective{ @@ -34473,9 +28076,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "hKO" = ( /obj/structure/largecrate/random/barrel/green, @@ -34483,9 +28084,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "hLr" = ( /obj/effect/decal/warning_stripes{ @@ -34504,9 +28103,7 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment) "hLu" = ( /obj/structure/sign/safety/hvac_old{ @@ -34517,14 +28114,10 @@ /area/almayer/maint/hull/lower/p_bow) "hLC" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "hLI" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/cryo_cells) "hLS" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta{ @@ -34534,9 +28127,7 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "hMi" = ( /obj/structure/pipes/vents/scrubber, @@ -34549,9 +28140,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "hMG" = ( /obj/structure/pipes/vents/pump, @@ -34559,30 +28148,22 @@ /area/almayer/engineering/lower) "hMM" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "hMN" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_three) "hNh" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "hNv" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -34598,9 +28179,7 @@ req_one_access = null; req_one_access_txt = "7;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/vehiclehangar) "hNM" = ( /obj/structure/surface/table/reinforced/prison, @@ -34615,30 +28194,19 @@ /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Core Hatch" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "hNY" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/chief_mp_office) "hOd" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "hOn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/hallways/upper/midship_hallway) "hOu" = ( /obj/effect/decal/warning_stripes{ @@ -34652,9 +28220,7 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "hOV" = ( /turf/closed/wall/almayer, @@ -34667,32 +28233,22 @@ name = "\improper Research Doorway Shutter" }, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "hPh" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/living/auxiliary_officer_office) "hPu" = ( /obj/structure/largecrate/supply, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_p) "hPD" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_umbilical) "hPI" = ( /turf/closed/wall/almayer/outer, @@ -34710,10 +28266,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/hydroponics) "hPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34733,9 +28286,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "hQf" = ( /obj/structure/disposalpipe/segment, @@ -34743,10 +28294,7 @@ /area/almayer/hallways/lower/port_midship_hallway) "hQw" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/lower/engine_core) "hQK" = ( /obj/effect/step_trigger/clone_cleaner, @@ -34754,9 +28302,7 @@ /area/almayer/maint/hull/upper/u_m_p) "hQP" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "hQU" = ( /obj/structure/machinery/disposal, @@ -34766,9 +28312,7 @@ /obj/structure/sign/safety/intercom{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "hQW" = ( /obj/structure/disposalpipe/segment{ @@ -34778,19 +28322,13 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "hQY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "hRa" = ( /obj/structure/machinery/vending/snack{ @@ -34799,24 +28337,18 @@ /obj/structure/machinery/vending/coffee{ pixel_x = 14 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "hRd" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "hRk" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ density = 0; pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "hRu" = ( /turf/closed/wall/almayer/outer, @@ -34828,9 +28360,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ @@ -34859,9 +28389,7 @@ /area/almayer/command/airoom) "hSb" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "hSk" = ( /turf/open/floor/plating/plating_catwalk, @@ -34870,10 +28398,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "hSv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34883,9 +28408,7 @@ dir = 1; name = "\improper Starboard Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, @@ -34907,24 +28430,17 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/morgue) "hTc" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "hTf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -34941,9 +28457,7 @@ pixel_x = 32; pixel_y = -32 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "hTF" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ @@ -34953,9 +28467,7 @@ starting_suit_type = null; starting_tank_type = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "hTP" = ( /obj/structure/machinery/door_control{ @@ -34974,9 +28486,7 @@ /obj/item/frame/light_fixture/small{ pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "hTT" = ( /obj/structure/surface/table/almayer, @@ -34984,9 +28494,7 @@ pixel_y = 3 }, /obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "hTU" = ( /obj/structure/disposalpipe/segment{ @@ -35000,29 +28508,20 @@ pixel_y = 12 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "hUb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "hUh" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "hUk" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/lower/engine_core) "hUu" = ( /obj/item/device/radio/intercom{ @@ -35030,10 +28529,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "hUz" = ( /obj/structure/largecrate/supply/supplies/mre{ @@ -35048,9 +28544,7 @@ pixel_x = 3; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "hUU" = ( /obj/structure/surface/table/almayer, @@ -35070,9 +28564,7 @@ pixel_x = 32; pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "hUW" = ( /obj/structure/disposalpipe/segment{ @@ -35088,25 +28580,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/medical_science) "hVz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "hVL" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "hWa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -35160,10 +28644,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "hWD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -35182,16 +28663,11 @@ dir = 4; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "hWJ" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "hWM" = ( /obj/structure/surface/rack, @@ -35199,26 +28675,17 @@ /area/almayer/command/airoom) "hWO" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/command/cichallway) "hWP" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "hXb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) "hXd" = ( /obj/structure/surface/table/reinforced/prison, @@ -35265,9 +28732,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "hXX" = ( /obj/effect/projector{ @@ -35275,28 +28740,18 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/upper/port) "hXY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/squads/delta) "hYf" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "hYj" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "hYn" = ( /obj/structure/disposalpipe/segment{ @@ -35306,9 +28761,7 @@ dir = 4 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "hYE" = ( /obj/structure/surface/table/almayer, @@ -35355,9 +28808,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "hZJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -35365,9 +28816,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "hZN" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -35377,10 +28826,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_medbay) "hZZ" = ( /obj/structure/closet/firecloset, @@ -35388,16 +28834,12 @@ /area/almayer/maint/hull/lower/l_f_p) "iaa" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "iag" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/chemistry) "iah" = ( /obj/structure/disposalpipe/segment, @@ -35408,9 +28850,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "ial" = ( /obj/structure/disposalpipe/segment{ @@ -35419,16 +28859,11 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "iaq" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "iat" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -35444,50 +28879,35 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering) "iaF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "iaO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "iaR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/command/lifeboat) "ibc" = ( /obj/structure/machinery/conveyor_switch{ id = "req_belt" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) "ibf" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "ibP" = ( /obj/structure/sign/safety/maint{ @@ -35502,20 +28922,14 @@ /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) "icp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/hangar) "icw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) "icM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35534,17 +28948,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/upper/fore_hallway) "icZ" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/brig/processing) "idx" = ( /obj/structure/disposalpipe/segment{ @@ -35554,9 +28962,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "idL" = ( /obj/structure/disposalpipe/segment{ @@ -35566,15 +28972,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "idX" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "ied" = ( /obj/structure/machinery/power/apc/almayer{ @@ -35627,9 +29029,7 @@ /obj/item/bedsheet/red{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "iey" = ( /obj/structure/surface/table/almayer, @@ -35643,10 +29043,7 @@ /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_lobby) "ieX" = ( /obj/structure/surface/table/almayer, @@ -35667,19 +29064,13 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "ifz" = ( /obj/structure/machinery/keycard_auth{ pixel_x = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/warden_office) "igb" = ( /obj/structure/disposalpipe/segment{ @@ -35692,9 +29083,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "igs" = ( /obj/structure/surface/table/almayer, @@ -35704,9 +29093,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "igw" = ( /obj/structure/sign/poster/ad{ @@ -35714,9 +29101,7 @@ }, /obj/structure/closet, /obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "igS" = ( /obj/effect/decal/warning_stripes{ @@ -35737,16 +29122,11 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/constr) "ihw" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_medbay) "ihI" = ( /obj/structure/disposalpipe/segment{ @@ -35763,32 +29143,24 @@ /obj/structure/sign/safety/cryo{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ihW" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/hallways/lower/starboard_fore_hallway) "ihX" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "ihY" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "iit" = ( /obj/effect/decal/warning_stripes{ @@ -35804,9 +29176,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "iiU" = ( /obj/effect/decal/warning_stripes{ @@ -35822,40 +29192,29 @@ /obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/fore_hallway) "iiZ" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "ijd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/midship_hallway) "ijf" = ( /obj/structure/surface/table/almayer, /obj/item/cell/crap, /obj/item/tool/crowbar, /obj/structure/machinery/cell_charger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "ijr" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "ijQ" = ( /obj/structure/surface/table/almayer, @@ -35877,17 +29236,13 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) "ikl" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/hallways/lower/vehiclehangar) "iks" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "ikv" = ( /obj/structure/pipes/standard/simple/visible{ @@ -35896,16 +29251,11 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "ikA" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -35932,10 +29282,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) "ilq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "ily" = ( /obj/structure/machinery/light, @@ -35951,9 +29298,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ilJ" = ( /obj/structure/bed/chair, @@ -35964,22 +29309,15 @@ /area/almayer/lifeboat_pumps/south1) "iml" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "imo" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "imp" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/morgue) "imt" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -36005,9 +29343,7 @@ dir = 2 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "inh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -36037,10 +29373,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "ios" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -36048,9 +29381,7 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "iow" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ @@ -36059,18 +29390,13 @@ req_one_access_txt = "15;16;21"; vend_y_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "ioH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/starboard) "ioM" = ( /turf/open/floor/plating/plating_catwalk, @@ -36083,10 +29409,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "ioU" = ( /turf/closed/wall/almayer, @@ -36124,31 +29447,23 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "ipB" = ( /obj/structure/surface/rack, /obj/item/tool/kitchen/rollingpin, /obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "ipE" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/squads/alpha_bravo_shared) "ipK" = ( /obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "ipQ" = ( /obj/structure/surface/rack, @@ -36166,9 +29481,7 @@ name = "General Listening Channel"; pixel_x = -29 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "iqd" = ( /obj/structure/bed/chair/office/dark{ @@ -36180,10 +29493,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) "iqp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -36191,9 +29501,7 @@ req_one_access = null; req_one_access_txt = "37" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/auxiliary_officer_office) "iqH" = ( /obj/item/trash/chips{ @@ -36201,19 +29509,14 @@ pixel_y = 6 }, /obj/item/trash/cheesie, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "iqR" = ( /obj/structure/sign/safety/cryo{ pixel_x = -16 }, /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "irr" = ( /obj/structure/stairs{ @@ -36231,10 +29534,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/south2) "irJ" = ( /obj/item/tool/wirecutters{ @@ -36269,30 +29569,20 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "ish" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop) "iso" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/hallways/upper/midship_hallway) "isq" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "isI" = ( /obj/structure/sign/nosmoking_2{ @@ -36301,9 +29591,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/north1) "isN" = ( /obj/structure/sink{ @@ -36311,10 +29599,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/morgue) "itg" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ @@ -36329,10 +29614,7 @@ /obj/structure/machinery/status_display{ pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -36342,18 +29624,13 @@ /area/almayer/lifeboat_pumps/south2) "itX" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "iub" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/command/lifeboat) "iuf" = ( /obj/effect/decal/warning_stripes{ @@ -36362,9 +29639,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, @@ -36379,27 +29654,19 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cichallway) "iuz" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/warhead, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "iuE" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "iuG" = ( /obj/structure/surface/table/almayer, @@ -36415,16 +29682,11 @@ "ivf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/camera, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "ivg" = ( /obj/structure/janitorialcart, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/hallways/hangar) "ivs" = ( /obj/structure/disposalpipe/segment{ @@ -36438,9 +29700,7 @@ /area/almayer/maint/hull/upper/u_f_s) "ivz" = ( /obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "ivL" = ( /obj/structure/platform{ @@ -36452,16 +29712,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ivS" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "iwf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36478,9 +29734,7 @@ /obj/structure/sign/safety/waterhazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "iwI" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -36488,9 +29742,7 @@ name = "Storage"; req_one_access_txt = "19;21" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "iwJ" = ( /obj/effect/decal/warning_stripes{ @@ -36504,9 +29756,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/entrance/west, /area/almayer/medical/containment/cell) "iwV" = ( /obj/structure/window/framed/almayer, @@ -36528,42 +29778,31 @@ /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/squads/req) "ixj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "ixu" = ( /obj/structure/largecrate/random/case{ layer = 2.98 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "ixv" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "ixD" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ixN" = ( /obj/structure/largecrate, @@ -36571,9 +29810,7 @@ pixel_x = -3; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "ixQ" = ( /obj/effect/decal/warning_stripes{ @@ -36586,9 +29823,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "iyC" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -36599,18 +29834,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "iyF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "iyS" = ( /obj/structure/disposalpipe/segment{ @@ -36620,9 +29850,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "izf" = ( /obj/structure/disposalpipe/up/almayer{ @@ -36637,22 +29865,14 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "izY" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "iAg" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/brig/mp_bunks) "iAw" = ( /obj/item/tool/warning_cone{ @@ -36670,24 +29890,17 @@ icon_state = "SW-out" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/containment) "iAE" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "iAI" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "iBl" = ( /obj/structure/machinery/power/apc/almayer{ @@ -36706,22 +29919,14 @@ /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "iBY" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cichallway) "iCg" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/hallways/upper/midship_hallway) "iCu" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -36739,17 +29944,13 @@ dir = 1; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "iCD" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36758,10 +29959,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/living/offices) "iCT" = ( /obj/structure/disposalpipe/segment{ @@ -36774,40 +29972,26 @@ /area/almayer/hallways/upper/midship_hallway) "iDa" = ( /obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/maint/upper/u_a_p) "iDk" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "iDs" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "iDK" = ( /obj/structure/blocker/fuelpump, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "iEa" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "iEg" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/living/auxiliary_officer_office) "iEr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36825,18 +30009,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "iEx" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "iEz" = ( /obj/structure/machinery/light, @@ -36853,18 +30032,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "iFn" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) "iFp" = ( /obj/effect/projector{ @@ -36872,10 +30047,7 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "iFA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36885,17 +30057,13 @@ name = "\improper Port Railguns and Viewing Room" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/ce_room) "iFD" = ( /obj/structure/bed/chair/office/light{ @@ -36920,10 +30088,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "iFM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36933,42 +30098,31 @@ id = "Delta_1"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "iFY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/cryo{ pixel_x = 36 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "iGc" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "iGi" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "iGn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_four) "iGQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -36977,9 +30131,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "iHc" = ( /turf/open/floor/plating/plating_catwalk, @@ -36988,17 +30140,13 @@ /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cells) "iIb" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_m_p) "iIj" = ( /obj/structure/stairs/perspective{ @@ -37006,10 +30154,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "iIl" = ( /obj/structure/sink{ @@ -37017,9 +30162,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "iIP" = ( /obj/structure/toilet{ @@ -37049,9 +30192,7 @@ "iIU" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "iJs" = ( /obj/structure/disposalpipe/segment, @@ -37063,9 +30204,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "iJS" = ( /obj/structure/machinery/cm_vending/gear/tl{ @@ -37073,10 +30212,7 @@ pixel_x = -32; vend_x_offset = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/squads/delta) "iJT" = ( /obj/structure/sign/safety/storage{ @@ -37087,17 +30223,13 @@ /area/almayer/maint/hull/upper/u_m_p) "iKb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/hangar) "iKc" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "iKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37110,15 +30242,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "iKy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "iKD" = ( /obj/structure/surface/table/almayer, @@ -37128,42 +30255,30 @@ /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) "iKI" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/starboard_missiles) "iKK" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "iKM" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/port_atmos) "iKV" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "iLd" = ( /obj/structure/stairs/perspective{ @@ -37184,9 +30299,7 @@ /obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "iLm" = ( /obj/structure/disposalpipe/segment{ @@ -37216,10 +30329,7 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_lobby) "iLG" = ( /obj/structure/disposalpipe/junction{ @@ -37230,34 +30340,23 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "iLL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/upper/midship_hallway) "iLO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/computerlab) "iMm" = ( /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) "iMr" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "iMx" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south2) "iMD" = ( /obj/effect/decal/warning_stripes{ @@ -37271,10 +30370,7 @@ }, /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "iNh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -37283,9 +30379,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ name = "\improper Brig Cells" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "iNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37304,10 +30398,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/hallways/lower/port_fore_hallway) "iNR" = ( /obj/effect/decal/warning_stripes{ @@ -37342,9 +30433,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "iPf" = ( /obj/structure/largecrate/random/case/double, @@ -37357,10 +30446,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) "iPt" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/hallways/lower/starboard_midship_hallway) "iPv" = ( /obj/structure/bed/chair/comfy, @@ -37368,10 +30454,7 @@ /obj/structure/window/reinforced/ultra{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/living/briefing) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -37384,10 +30467,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south1) "iPN" = ( /obj/structure/surface/table/almayer, @@ -37399,16 +30479,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/maint/upper/mess) "iPS" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "iQd" = ( /obj/structure/disposalpipe/segment{ @@ -37441,18 +30516,14 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "iQj" = ( /obj/structure/ladder{ height = 2; id = "bridge4" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "iQt" = ( /obj/structure/largecrate/random/case/small, @@ -37468,10 +30539,7 @@ pixel_y = 6; serial_number = 12 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/almayer/living/port_emb) "iQB" = ( /obj/structure/surface/table/almayer, @@ -37488,10 +30556,7 @@ pixel_y = 23; layer = 2.99 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "iQJ" = ( /obj/structure/disposalpipe/segment{ @@ -37528,9 +30593,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) "iSd" = ( /obj/structure/machinery/light/small{ @@ -37629,26 +30692,20 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "iSx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/hallways/upper/midship_hallway) "iSB" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "iSV" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -37657,9 +30714,7 @@ req_one_access = null; req_one_access_txt = "2;7" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_p) "iSZ" = ( /obj/structure/disposalpipe/segment{ @@ -37674,9 +30729,7 @@ /area/almayer/squads/alpha) "iTd" = ( /obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "iTe" = ( /obj/structure/machinery/light{ @@ -37686,16 +30739,10 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "iTl" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/processing) "iTq" = ( /obj/structure/curtain/red, @@ -37710,18 +30757,13 @@ pixel_x = 3; pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "iTw" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "iTD" = ( /obj/effect/landmark/start/auxiliary_officer, @@ -37737,9 +30779,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "iTW" = ( /obj/structure/disposalpipe/segment{ @@ -37756,9 +30796,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/navigation) "iUh" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -37774,17 +30812,13 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "iUm" = ( /obj/structure/closet/emcloset{ pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "iUo" = ( /obj/structure/sign/safety/terminal{ @@ -37803,9 +30837,7 @@ /obj/item/storage/box/sprays{ pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "iUG" = ( /obj/structure/closet/secure_closet/surgical{ @@ -37815,20 +30847,14 @@ /obj/structure/sign/safety/rewire{ pixel_y = -38 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/shipboard/brig/medical) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/item/tool/crowbar/red, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) "iUX" = ( /obj/structure/filingcabinet{ @@ -37842,24 +30868,17 @@ pixel_y = 18 }, /obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/interrogation) "iVy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/cichallway) "iVz" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "iVD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ @@ -37871,9 +30890,7 @@ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/s_bow) "iVE" = ( /obj/structure/sign/safety/bathunisex{ @@ -37886,9 +30903,7 @@ dir = 4 }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "iVP" = ( /obj/structure/sign/safety/restrictedarea{ @@ -37896,10 +30911,7 @@ pixel_y = 7 }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/processing) "iWa" = ( /obj/structure/sign/safety/water{ @@ -37949,15 +30961,11 @@ pixel_y = 14 }, /obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "iWJ" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "iWQ" = ( /obj/effect/landmark/start/researcher, @@ -37966,17 +30974,13 @@ /area/almayer/living/offices) "iWR" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "iXm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, @@ -37984,9 +30988,7 @@ id = "InnerShutter"; name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ @@ -38019,18 +31021,13 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_lobby) "iYe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/auxiliary_officer_office) "iYf" = ( /obj/structure/machinery/cm_vending/clothing/medical_crew{ @@ -38041,38 +31038,26 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/medical/hydroponics) "iYm" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "iYt" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "iYx" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "iZd" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "iZg" = ( /obj/structure/bed/chair/comfy{ @@ -38092,9 +31077,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "iZP" = ( /obj/structure/platform{ @@ -38105,10 +31088,7 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "iZU" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -38125,9 +31105,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "jaf" = ( /obj/structure/bed/chair/comfy/bravo{ @@ -38141,9 +31119,7 @@ pixel_x = -27; serial_number = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jak" = ( /obj/structure/disposalpipe/segment{ @@ -38179,16 +31155,12 @@ }, /obj/item/tool/shovel/etool, /obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "jaz" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "jaI" = ( /obj/structure/sign/safety/storage{ @@ -38219,9 +31191,7 @@ /obj/item/trash/crushed_cup{ pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "jbq" = ( /obj/structure/window/framed/almayer/hull, @@ -38230,9 +31200,7 @@ "jbt" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "jbH" = ( /obj/structure/machinery/light{ @@ -38241,18 +31209,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "jbK" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "jbN" = ( /obj/structure/surface/table/woodentable/fancy, @@ -38297,32 +31260,22 @@ vector_x = 1; vector_y = -102 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/upper/fore_hallway) "jcE" = ( /obj/structure/machinery/vending/coffee{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "jcP" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/engineering/upper_engineering/starboard) "jdl" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/platform_decoration, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "jdm" = ( /obj/structure/surface/table/almayer, @@ -38333,17 +31286,12 @@ dir = 4 }, /obj/item/trash/USCMtray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "jdn" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "jdu" = ( /obj/structure/largecrate/random/case/small, @@ -38359,9 +31307,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_three) "jdZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38373,9 +31319,7 @@ /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) "jei" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "jeq" = ( /obj/structure/surface/rack, @@ -38388,9 +31332,7 @@ pixel_y = 6 }, /obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "jer" = ( /obj/structure/disposalpipe/segment{ @@ -38409,15 +31351,11 @@ pixel_x = -9; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "jew" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/cryo_cells) "jez" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -38429,45 +31367,31 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "jeO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "jeQ" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/living/cryo_cells) "jeR" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "jfK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) "jfS" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -38492,9 +31416,7 @@ /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "jge" = ( /obj/structure/disposalpipe/segment{ @@ -38503,9 +31425,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "jgg" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ @@ -38515,9 +31435,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell) "jgk" = ( /obj/structure/machinery/shower{ @@ -38537,9 +31455,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/auxiliary_officer_office) "jgr" = ( /obj/structure/surface/table/almayer, @@ -38559,9 +31475,7 @@ pixel_x = -8; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -38585,23 +31499,16 @@ /area/almayer/command/airoom) "jgF" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "jgJ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/command/cichallway) "jgK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "jgR" = ( /obj/structure/sign/safety/rewire{ @@ -38631,10 +31538,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/mp_bunks) "jhb" = ( /obj/structure/sign/safety/cryo{ @@ -38647,10 +31551,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) "jhn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_four) "jhs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38663,9 +31564,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "jhx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -38675,10 +31574,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/living/offices) "jhA" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -38699,9 +31595,7 @@ /area/almayer/shipboard/brig/chief_mp_office) "jhK" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "jhQ" = ( /obj/structure/closet, @@ -38731,9 +31625,7 @@ /area/almayer/hallways/lower/vehiclehangar) "jhW" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "jic" = ( /obj/structure/disposalpipe/segment{ @@ -38742,10 +31634,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/lobby) "jiM" = ( /obj/structure/disposalpipe/segment{ @@ -38773,9 +31662,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "jjl" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -38793,25 +31680,18 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/medical_science) "jkj" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/starboard_atmos) "jkl" = ( /obj/structure/morgue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "jkq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38845,9 +31725,7 @@ pixel_y = 6 }, /obj/item/storage/box/handcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jkB" = ( /obj/effect/decal/warning_stripes{ @@ -38856,10 +31734,7 @@ /obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "jkD" = ( /obj/structure/surface/table/almayer, @@ -38879,24 +31754,17 @@ dir = 8; pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jkN" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "jkT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "jkY" = ( /obj/effect/decal/warning_stripes{ @@ -38915,16 +31783,10 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/lower/repair_bay) "jlc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/starboard) "jlA" = ( /obj/effect/decal/warning_stripes{ @@ -38932,15 +31794,10 @@ pixel_x = 1 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/containment) "jlD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "jlE" = ( /obj/structure/machinery/light{ @@ -38951,10 +31808,7 @@ /obj/item/toy/deck{ pixel_x = -9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/mp_bunks) "jlG" = ( /obj/effect/decal/warning_stripes{ @@ -38997,9 +31851,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "jmn" = ( /obj/structure/surface/table/almayer, @@ -39010,32 +31862,24 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "jmz" = ( /obj/structure/largecrate/random/case/double, /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "jmK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/cryo_cells) "jmP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "jmQ" = ( /obj/effect/landmark/start/maint, @@ -39045,9 +31889,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) "jmY" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/command/cichallway) "jnc" = ( /obj/structure/disposalpipe/segment{ @@ -39056,23 +31898,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "jne" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_p) "jnh" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/mess) "jno" = ( /obj/structure/disposalpipe/segment, @@ -39098,15 +31934,10 @@ pixel_x = -6; pixel_y = -9 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/port) "jnD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/shipboard/brig/cic_hallway) "jnI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39136,9 +31967,7 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "jpl" = ( /obj/effect/decal/warning_stripes{ @@ -39159,9 +31988,7 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "jpn" = ( /obj/structure/stairs{ @@ -39175,9 +32002,7 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/port) "jpp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -39187,9 +32012,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "jpt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39214,9 +32037,7 @@ pixel_y = 10; anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "jpW" = ( /obj/structure/machinery/alarm/almayer{ @@ -39232,9 +32053,7 @@ }, /obj/effect/step_trigger/ares_alert/core, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "jqY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39245,10 +32064,7 @@ "jre" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "jri" = ( /obj/structure/largecrate/random/barrel/white, @@ -39260,9 +32076,7 @@ pixel_y = 1 }, /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "jru" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -39271,21 +32085,15 @@ /obj/structure/sign/safety/press_area_ag{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "jrB" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "jrC" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "jrH" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ @@ -39304,18 +32112,13 @@ pixel_x = -8; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "jrM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "jsa" = ( /obj/structure/machinery/light{ @@ -39336,26 +32139,19 @@ /obj/structure/sign/safety/stairs{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "jss" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/captain_mess) "jsu" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "jsx" = ( /obj/effect/decal/warning_stripes{ @@ -39363,15 +32159,10 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) "jsA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "jsE" = ( /obj/structure/sign/safety/nonpress_ag{ @@ -39383,10 +32174,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "jsR" = ( /obj/effect/decal/warning_stripes{ @@ -39398,18 +32186,14 @@ /area/almayer/hallways/lower/vehiclehangar) "jtj" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "jts" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_aft_hallway) "jtU" = ( /turf/open/floor/plating/plating_catwalk, @@ -39418,10 +32202,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/hallways/lower/port_midship_hallway) "juj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39431,9 +32212,7 @@ dir = 4 }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) "juo" = ( /turf/open/floor/plating/plating_catwalk, @@ -39452,17 +32231,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/lower/vehiclehangar) "juX" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "jva" = ( /obj/structure/closet, @@ -39472,9 +32247,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) "jvc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39503,9 +32276,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "jvt" = ( /obj/item/tool/warning_cone{ @@ -39520,9 +32291,7 @@ /area/almayer/maint/hull/lower/l_m_s) "jvB" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_plates" - }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, /area/almayer/command/airoom) "jvD" = ( /obj/structure/machinery/door_control{ @@ -39532,9 +32301,7 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/hallways/lower/port_fore_hallway) "jvM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39550,9 +32317,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/cryo) "jvX" = ( /obj/effect/decal/warning_stripes{ @@ -39570,10 +32335,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "jvY" = ( /turf/closed/wall/almayer/reinforced, @@ -39593,9 +32355,7 @@ /obj/structure/sign/safety/intercom{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "jwq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -39605,9 +32365,7 @@ /area/almayer/maint/hull/upper/u_f_p) "jwr" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "jwJ" = ( /obj/structure/platform_decoration, @@ -39615,10 +32373,7 @@ /area/almayer/maint/hull/upper/u_a_p) "jwK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha_bravo_shared) "jwP" = ( /obj/effect/decal/warning_stripes{ @@ -39629,17 +32384,11 @@ /area/almayer/hallways/lower/port_midship_hallway) "jxi" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "jxq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north2) "jxu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -39666,16 +32415,10 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_aft_hallway) "jyb" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/processing) "jyE" = ( /obj/structure/machinery/light, @@ -39699,9 +32442,7 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "jyY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -39720,27 +32461,21 @@ id = "perma_lockdown_2"; name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "s_engi" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/notunnel) "jzE" = ( /obj/structure/closet/secure_closet/bar{ name = "Success Cabinet"; req_access_txt = "1" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "jzT" = ( /obj/structure/disposalpipe/segment{ @@ -39751,16 +32486,12 @@ /area/almayer/hallways/lower/starboard_midship_hallway) "jzZ" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "jAe" = ( /obj/structure/surface/rack, /obj/item/storage/beer_pack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "jAj" = ( /obj/structure/machinery/light{ @@ -39770,9 +32501,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/starboard_aft_hallway) "jAz" = ( /obj/structure/platform, @@ -39783,36 +32512,25 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "jAB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "jAJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "jBy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/morgue) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -39849,32 +32567,21 @@ /obj/item/tool/weldingtool, /obj/item/tool/wrench, /obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/engine_core) "jCr" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "jCx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/hallways/lower/port_midship_hallway) "jCK" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; pixel_x = 20 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "jCX" = ( /obj/structure/pipes/vents/scrubber, @@ -39892,19 +32599,14 @@ pixel_x = 14 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop/hangar) "jDz" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/port_midship_hallway) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39941,9 +32643,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "jEM" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "jES" = ( /obj/structure/bed/chair/comfy/black{ @@ -39960,10 +32660,7 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/mp_bunks) "jFf" = ( /obj/structure/machinery/shower{ @@ -40009,34 +32706,25 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "jFy" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, /obj/item/clipboard, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "jFE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "jFI" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "jFM" = ( /obj/structure/surface/table/almayer, @@ -40045,32 +32733,23 @@ pixel_x = 10; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "jFY" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "jGn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "jGI" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "jGQ" = ( /obj/effect/decal/warning_stripes{ @@ -40080,18 +32759,14 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "jGR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "jHh" = ( /obj/structure/disposalpipe/segment{ @@ -40104,27 +32779,19 @@ /area/almayer/shipboard/brig/cic_hallway) "jHn" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "jHt" = ( /turf/closed/wall/almayer, /area/almayer/hallways/lower/repair_bay) "jHC" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/computerlab) "jHL" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "jHQ" = ( /obj/structure/machinery/crema_switch{ @@ -40145,16 +32812,11 @@ dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/maint/upper/mess) "jIJ" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "jIT" = ( /obj/structure/surface/table/almayer, @@ -40165,25 +32827,16 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "jJk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/living/port_emb) "jKn" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_missiles) "jKz" = ( /obj/effect/decal/warning_stripes{ @@ -40197,9 +32850,7 @@ /obj/item/cell/crap{ pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "jKF" = ( /obj/structure/window/framed/almayer, @@ -40222,43 +32873,30 @@ /obj/structure/sign/safety/cryo{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/port_atmos) "jLg" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/port_aft_hallway) "jLj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "jLs" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "jLH" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "jLS" = ( /obj/structure/bed/chair/comfy/charlie, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jMa" = ( /obj/effect/decal/warning_stripes{ @@ -40268,18 +32906,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "jMm" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, /obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "jMr" = ( /obj/structure/surface/table/almayer, @@ -40310,9 +32944,7 @@ /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "jMG" = ( /obj/structure/largecrate/random/case/small, @@ -40320,9 +32952,7 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "jML" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -40372,9 +33002,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell) "jNo" = ( /obj/structure/surface/rack, @@ -40383,9 +33011,7 @@ }, /obj/item/tool/shovel/etool, /obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "jNw" = ( /obj/effect/decal/warning_stripes{ @@ -40398,10 +33024,7 @@ /obj/structure/sign/safety/escapepod{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/port_fore_hallway) "jND" = ( /obj/structure/disposalpipe/segment, @@ -40435,10 +33058,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/squads/bravo) "jOk" = ( /obj/structure/surface/table/almayer, @@ -40455,9 +33075,7 @@ pixel_y = 10; req_one_access_txt = "1;21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "jOo" = ( /obj/structure/disposalpipe/segment{ @@ -40467,9 +33085,7 @@ /area/almayer/living/gym) "jOq" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "jOt" = ( /obj/item/trash/barcardine, @@ -40483,22 +33099,15 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "jOD" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "jOE" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "jOG" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -40506,26 +33115,18 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) "jPd" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/lower/engine_core) "jPq" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "jPu" = ( /obj/item/device/radio/intercom{ @@ -40533,17 +33134,13 @@ name = "Saferoom Channel"; pixel_x = 27 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "jPx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40561,23 +33158,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "jQt" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell) "jRc" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "jRp" = ( /obj/structure/largecrate/supply/supplies/water, @@ -40603,16 +33194,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "jRK" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "jRS" = ( /obj/effect/decal/warning_stripes{ @@ -40622,15 +33208,11 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "jSo" = ( /obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "jSp" = ( /obj/structure/machinery/cm_vending/gear/tl{ @@ -40638,19 +33220,14 @@ pixel_x = -32; vend_x_offset = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/almayer/squads/charlie) "jSw" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "jSy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40684,19 +33261,13 @@ pixel_x = 2; pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/offices) "jTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "jTt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40709,15 +33280,10 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "jTB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/lower) "jTH" = ( /obj/structure/disposalpipe/segment{ @@ -40735,10 +33301,7 @@ /area/almayer/hallways/lower/vehiclehangar) "jTI" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie_delta_shared) "jTU" = ( /obj/structure/bed, @@ -40758,9 +33321,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "jUh" = ( /obj/structure/largecrate/random/barrel/red, @@ -40770,9 +33331,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "jUq" = ( /obj/structure/machinery/firealarm{ @@ -40781,9 +33340,7 @@ /obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jUx" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -40791,26 +33348,20 @@ name = "\improper Evacuation Airlock SL-2"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "jUF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "jUM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "jUV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40823,9 +33374,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) "jUY" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "jVa" = ( /turf/open/floor/almayer, @@ -40848,9 +33397,7 @@ /obj/structure/sign/safety/cryo{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "jVt" = ( /obj/effect/decal/warning_stripes{ @@ -40862,18 +33409,14 @@ /turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) "jVE" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/command/computerlab) "jWb" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "jWh" = ( /turf/closed/wall/almayer, @@ -40889,9 +33432,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "jXc" = ( /obj/structure/sign/safety/maint{ @@ -40901,10 +33442,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/starboard_hallway) "jXd" = ( /obj/structure/disposalpipe/segment{ @@ -40919,9 +33457,7 @@ id_tag = "or03"; name = "Lobby" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "jXk" = ( /obj/effect/decal/cleanable/dirt, @@ -40933,9 +33469,7 @@ pixel_x = 6; pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "jXN" = ( /obj/docking_port/stationary/escape_pod/south, @@ -40948,15 +33482,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) "jYa" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "jYc" = ( /obj/item/bedsheet/blue{ @@ -40996,16 +33526,12 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/port_emb) "jYm" = ( /obj/item/reagent_container/food/snacks/wrapped/chunk, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "jYH" = ( /obj/structure/blocker/invisible_wall, @@ -41035,9 +33561,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "jZe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -41051,9 +33575,7 @@ "jZo" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) "jZs" = ( /obj/structure/machinery/light/containment{ @@ -41066,9 +33588,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/almayer/medical/containment/cell) "jZu" = ( /obj/structure/machinery/door_control{ @@ -41085,10 +33605,7 @@ /turf/open/floor/carpet, /area/almayer/command/cichallway) "jZv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "jZC" = ( /obj/effect/decal/warning_stripes{ @@ -41097,10 +33614,7 @@ /obj/structure/sign/safety/escapepod{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ @@ -41110,29 +33624,21 @@ /area/almayer/medical/containment/cell/cl) "jZY" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "kac" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "kaj" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "kak" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/upper/midship_hallway) "kam" = ( /obj/item/tool/screwdriver{ @@ -41140,9 +33646,7 @@ pixel_x = -21; pixel_y = -14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "kan" = ( /turf/closed/wall/almayer/white, @@ -41153,10 +33657,7 @@ vector_x = -1; vector_y = 100 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "kaB" = ( /obj/structure/machinery/cm_vending/gear/tl{ @@ -41164,55 +33665,39 @@ pixel_x = -32; vend_x_offset = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/squads/alpha) "kaE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/hallways/upper/midship_hallway) "kaI" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/squads/charlie_delta_shared) "kaO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/midship_hallway) "kaQ" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/starboard_hallway) "kaS" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "kbc" = ( /obj/effect/decal/warning_stripes{ @@ -41225,9 +33710,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "kbl" = ( /obj/structure/stairs{ @@ -41240,9 +33723,7 @@ vector_y = -102 }, /obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "kbv" = ( /turf/open/floor/plating/plating_catwalk, @@ -41255,9 +33736,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "kbx" = ( /obj/structure/machinery/disposal, @@ -41265,9 +33744,7 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "kbJ" = ( /obj/effect/decal/warning_stripes{ @@ -41275,10 +33752,7 @@ pixel_x = 1 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/containment) "kbV" = ( /obj/structure/platform{ @@ -41303,9 +33777,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -41333,24 +33805,17 @@ closeOtherId = "ciclobby_n"; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "kcA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "kcG" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, @@ -41366,9 +33831,7 @@ pixel_x = 4; pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "kdn" = ( /obj/effect/step_trigger/clone_cleaner, @@ -41377,31 +33840,22 @@ layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "kdo" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "kdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "kdB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "keG" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -41411,18 +33865,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/interrogation) "keO" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -41440,18 +33890,13 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "kfI" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "kfU" = ( /turf/open/floor/plating, @@ -41470,10 +33915,7 @@ pixel_x = 23; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "kgs" = ( /obj/structure/window/framed/almayer/white, @@ -41497,18 +33939,14 @@ /obj/structure/sign/safety/cryo{ pixel_x = 35 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "kgS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "kgV" = ( /obj/structure/machinery/power/apc/almayer{ @@ -41532,18 +33970,13 @@ icon_state = "S"; layer = 3.3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/upper/aft_hallway) "khd" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "khf" = ( /obj/structure/stairs/perspective{ @@ -41553,30 +33986,20 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "khD" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "khE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "khI" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "kil" = ( /obj/structure/stairs/perspective{ @@ -41589,10 +34012,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "kio" = ( /obj/structure/machinery/firealarm{ @@ -41602,18 +34022,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "kiy" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/lower/port_midship_hallway) "kiG" = ( /obj/structure/machinery/power/smes/buildable, @@ -41628,68 +34043,50 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/lower/engine_core) "kiM" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "kiR" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_s) "kiT" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/south1) "kiU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "kiV" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "kiX" = ( /obj/structure/bed/chair/comfy/delta{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "kjk" = ( /obj/structure/machinery/cryopod/right, /obj/structure/sign/safety/cryo{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "kjw" = ( /obj/effect/decal/warning_stripes{ @@ -41702,10 +34099,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "kjD" = ( /obj/structure/machinery/computer/demo_sim{ @@ -41721,22 +34115,15 @@ /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) "kjO" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/lower/engine_core) "kjW" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/port_midship_hallway) "kjY" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "kkk" = ( /obj/structure/machinery/power/monitor{ @@ -41745,17 +34132,12 @@ /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/engine_core) "kkt" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "kkv" = ( /obj/structure/toilet{ @@ -41767,39 +34149,28 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/chief_mp_office) "kkx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "kkN" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "kkW" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes, /obj/item/circuitboard/airalarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "klH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "klT" = ( /obj/structure/machinery/light/small, @@ -41823,9 +34194,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -41837,38 +34206,27 @@ /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/hallways/upper/fore_hallway) "knb" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "kng" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "knl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/starboard_aft_hallway) "knm" = ( /turf/open/floor/almayer, @@ -41878,10 +34236,7 @@ /obj/structure/sign/safety/coffee{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_lobby) "knK" = ( /obj/structure/kitchenspike, @@ -41891,23 +34246,16 @@ /area/almayer/living/grunt_rnr) "knL" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/south2) "knU" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/aft_hallway) "kon" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "kow" = ( /obj/structure/disposalpipe/segment{ @@ -41921,10 +34269,7 @@ dir = 4; id = "civ_uniforms" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/living/gym) "koB" = ( /obj/structure/disposalpipe/segment{ @@ -41942,18 +34287,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "kph" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "kpj" = ( /obj/structure/disposalpipe/segment, @@ -41964,18 +34305,14 @@ /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "kpL" = ( /obj/structure/sign/safety/life_support{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "kpQ" = ( /obj/structure/machinery/door_control{ @@ -41984,34 +34321,25 @@ pixel_y = 2 }, /obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "kqa" = ( /obj/structure/closet, /obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "kqb" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "kqd" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "kqm" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -42027,10 +34355,7 @@ }, /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link/green, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/medical_science) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -42039,9 +34364,7 @@ name = "\improper Combat Information Center Blast Door" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "kqv" = ( /obj/structure/machinery/light{ @@ -42064,10 +34387,7 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) "kqB" = ( /obj/structure/prop/holidays/string_lights{ @@ -42078,9 +34398,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "kqC" = ( /obj/structure/machinery/light/small{ @@ -42091,9 +34409,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "kqK" = ( /obj/structure/machinery/conveyor{ @@ -42104,17 +34420,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "kqN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/living/basketball) "krp" = ( /obj/structure/surface/table/almayer, @@ -42122,18 +34434,14 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "kry" = ( /obj/structure/machinery/flasher{ id = "Perma 1"; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "krA" = ( /obj/structure/window/framed/almayer, @@ -42146,9 +34454,7 @@ /area/almayer/living/cryo_cells) "krG" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "krJ" = ( /obj/item/tool/wet_sign, @@ -42159,27 +34465,18 @@ /obj/structure/machinery/conveyor{ id = "req_belt" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "krO" = ( /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) "krS" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "krU" = ( /obj/structure/surface/table/almayer, @@ -42196,9 +34493,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "krZ" = ( /obj/structure/closet/secure_closet/cargotech, @@ -42210,10 +34505,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "ksg" = ( /obj/structure/disposalpipe/segment{ @@ -42232,17 +34524,13 @@ /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "ksw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_stern) "ksN" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, +/turf/open/floor/almayer/uscm/directional/southeast, /area/almayer/living/briefing) "kti" = ( /obj/effect/decal/warning_stripes{ @@ -42257,9 +34545,7 @@ dir = 1; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "ktI" = ( /obj/effect/decal/warning_stripes{ @@ -42268,31 +34554,20 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/lower/repair_bay) "ktQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_arrow" - }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, /area/almayer/command/airoom) "ktR" = ( /obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "ktX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/living/grunt_rnr) "kui" = ( /obj/structure/sign/safety/hazard{ @@ -42319,25 +34594,17 @@ /turf/open/floor/almayer, /area/almayer/squads/req) "kuw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/almayer/living/briefing) "kuJ" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "kuK" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "kvf" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -42350,28 +34617,21 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop) "kvh" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "kvL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/warden_office) "kvU" = ( /obj/structure/surface/table/almayer, @@ -42385,26 +34645,20 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "kwd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "kwg" = ( /obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "kwi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -42420,9 +34674,7 @@ /obj/structure/machinery/line_nexter/med{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "kwQ" = ( /obj/item/tool/warning_cone{ @@ -42431,9 +34683,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "kxd" = ( /obj/effect/decal/warning_stripes{ @@ -42444,17 +34694,13 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "kxe" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "kxo" = ( /obj/structure/machinery/washing_machine, @@ -42462,9 +34708,7 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "kxL" = ( /obj/structure/closet/coffin/woodencrate, @@ -42474,15 +34718,10 @@ }, /obj/item/storage/box/uscm_mre, /obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "kxP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/mp_bunks) "kya" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -42520,9 +34759,7 @@ /area/almayer/engineering/lower/workshop/hangar) "kyr" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/starboard) "kyw" = ( /turf/closed/wall/almayer/outer, @@ -42532,10 +34769,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "kyP" = ( /turf/closed/wall/almayer/outer, @@ -42560,10 +34794,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north1) "kzb" = ( /obj/structure/machinery/vending/walkman, @@ -42575,9 +34806,7 @@ icon_state = "pottedplant_21"; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "kzk" = ( /obj/structure/window/framed/almayer, @@ -42592,9 +34821,7 @@ pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/execution) "kzs" = ( /obj/structure/disposalpipe/segment{ @@ -42605,18 +34832,13 @@ /area/almayer/maint/hull/lower/l_f_p) "kzy" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/shipboard/brig/cic_hallway) "kzC" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/lower/workshop) "kzK" = ( /obj/item/device/radio/intercom{ @@ -42648,41 +34870,29 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "kzO" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "kAh" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north1) "kAj" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "kAm" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "kAv" = ( /obj/structure/largecrate/supply/ammo/shotgun, @@ -42690,18 +34900,13 @@ /area/almayer/maint/hull/lower/l_a_s) "kAL" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "kAU" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south2) "kBo" = ( /obj/effect/decal/warning_stripes{ @@ -42709,49 +34914,35 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/medical_science) "kBy" = ( /obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "kBP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "kBY" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/tankerbunks) "kCd" = ( /obj/structure/machinery/gear{ id = "vehicle_elevator_gears" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/lower/vehiclehangar) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) "kCj" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "kCl" = ( /obj/structure/surface/rack, @@ -42779,9 +34970,7 @@ desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "kCm" = ( /obj/structure/sign/safety/fire_haz{ @@ -42791,15 +34980,11 @@ /obj/structure/sign/safety/high_voltage{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "kCu" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "kCE" = ( /obj/effect/decal/warning_stripes{ @@ -42812,17 +34997,13 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "kCY" = ( /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "kDd" = ( /obj/structure/sign/safety/water{ @@ -42845,9 +35026,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "kDH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -42871,10 +35050,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "kEc" = ( /obj/structure/machinery/light/small{ @@ -42900,16 +35076,11 @@ dir = 8; pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "kEp" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/morgue) "kEq" = ( /obj/structure/machinery/door/window/ultra{ @@ -42925,9 +35096,7 @@ pixel_x = 15 }, /obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "kEA" = ( /obj/effect/projector{ @@ -42935,9 +35104,7 @@ vector_x = 1; vector_y = -102 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "kEE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -42954,23 +35121,16 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "kFs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "kFv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_medbay) "kFO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -42978,10 +35138,7 @@ id = "crate_room2"; name = "\improper Storage Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "kFU" = ( /obj/structure/bed/chair{ @@ -43007,38 +35164,27 @@ /obj/structure/machinery/status_display{ pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "kGw" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "kGF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "kGQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/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/almayer/medical/containment/cell) "kGS" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/aft_hallway) "kHd" = ( /obj/structure/machinery/computer/arcade, @@ -43046,10 +35192,7 @@ pixel_x = 4; pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/living/grunt_rnr) "kHo" = ( /obj/item/device/camera{ @@ -43062,28 +35205,19 @@ pixel_y = -2 }, /obj/item/device/camera_film, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/starboard_hallway) "kHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "kHY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "kIf" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -43108,9 +35242,7 @@ /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "kJc" = ( /obj/structure/ladder{ @@ -43133,9 +35265,7 @@ /area/almayer/hallways/lower/starboard_fore_hallway) "kJi" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "kJm" = ( /obj/effect/decal/warning_stripes{ @@ -43152,9 +35282,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "kJW" = ( /obj/structure/machinery/door/window/westright, @@ -43171,9 +35299,7 @@ /area/almayer/living/commandbunks) "kJZ" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "kKk" = ( /obj/structure/disposalpipe/segment, @@ -43181,15 +35307,11 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "kKB" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_aft_hallway) "kKR" = ( /obj/structure/pipes/vents/pump{ @@ -43198,28 +35320,21 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "kKY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_aft_hallway) "kLc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ req_one_access = null; req_one_access_txt = "2;7" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "kLk" = ( /obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "kLm" = ( /obj/structure/disposalpipe/segment{ @@ -43238,9 +35353,7 @@ id = "hangarentrancenorth"; name = "\improper North Hangar Podlock" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "kLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43250,16 +35363,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/squads/req) "kMa" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "kMp" = ( /obj/effect/decal/warning_stripes{ @@ -43268,10 +35376,7 @@ /obj/structure/machinery/status_display{ pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "kMr" = ( /obj/item/trash/uscm_mre, @@ -43280,9 +35385,7 @@ pixel_x = 16; pixel_y = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ @@ -43302,17 +35405,12 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/almayer/engineering/upper_engineering/port) "kMR" = ( /obj/effect/spawner/random/toolbox, /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "kMV" = ( /obj/effect/decal/warning_stripes{ @@ -43327,9 +35425,7 @@ }, /obj/item/clothing/suit/chef/classic, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "kNf" = ( /obj/structure/bed/chair/office/dark, @@ -43340,10 +35436,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43387,18 +35480,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/starboard) "kNX" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "kNY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -43409,9 +35498,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/shipboard/port_missiles) "kOB" = ( /obj/effect/decal/warning_stripes{ @@ -43425,9 +35512,7 @@ /obj/item/tool/pen/blue{ pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) "kOH" = ( /obj/structure/machinery/light{ @@ -43437,9 +35522,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/command/corporateliaison) "kOJ" = ( /obj/item/storage/backpack/marine/satchel{ @@ -43459,9 +35542,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "kOW" = ( /obj/structure/disposalpipe/segment{ @@ -43471,15 +35552,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "kPa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/hallways/upper/fore_hallway) "kPx" = ( /obj/structure/surface/table/almayer, @@ -43491,10 +35567,7 @@ /obj/item/reagent_container/glass/beaker/cryoxadone, /obj/item/reagent_container/glass/beaker/cryoxadone, /obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/chemistry) "kPB" = ( /obj/structure/window/reinforced{ @@ -43507,16 +35580,10 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/living/basketball) "kPG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "kPH" = ( /obj/effect/decal/warning_stripes{ @@ -43528,9 +35595,7 @@ /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "kPR" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, @@ -43545,9 +35610,7 @@ pixel_x = -17 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "kPZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -43574,24 +35637,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "kRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_three) "kRg" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/lifeboat) "kRD" = ( /obj/item/reagent_container/glass/bucket/janibucket, @@ -43606,9 +35662,7 @@ icon_state = "W"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -43631,9 +35685,7 @@ pixel_x = 17; pixel_y = -6 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "kRU" = ( /obj/vehicle/powerloader, @@ -43644,35 +35696,25 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/repair_bay) "kSi" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer{ density = 0; pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "kSn" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "kSv" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/hallways/hangar) "kSy" = ( /obj/effect/decal/warning_stripes{ @@ -43694,16 +35736,12 @@ id = "hangarentrancesouth"; name = "\improper South Hangar Podlock" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "kSC" = ( /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link/green, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "kSH" = ( /obj/structure/sign/prop1{ @@ -43724,10 +35762,7 @@ phone_id = "Requisition"; pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "kTp" = ( /obj/structure/window/framed/almayer, @@ -43741,15 +35776,11 @@ dir = 4 }, /obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "kTN" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/ce_room) "kTY" = ( /obj/effect/decal/warning_stripes{ @@ -43766,10 +35797,7 @@ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/warden_office) "kUh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -43779,9 +35807,7 @@ name = "\improper Flight Crew Quarters"; req_one_access_txt = "19;22" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "kUA" = ( /obj/structure/disposalpipe/segment, @@ -43791,10 +35817,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/hallways/lower/starboard_midship_hallway) "kUJ" = ( /obj/item/trash/USCMtray{ @@ -43809,31 +35832,23 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "kUL" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "kUR" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "kUV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "kVV" = ( /obj/structure/disposalpipe/segment{ @@ -43864,27 +35879,20 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/squads/req) "kWq" = ( /obj/structure/sign/safety/synth_storage{ pixel_x = 8; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/cichallway) "kWI" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "kWN" = ( /obj/structure/sign/poster{ @@ -43897,9 +35905,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "kWR" = ( /obj/structure/surface/table/woodentable/fancy, @@ -43913,10 +35919,7 @@ /turf/open/floor/carpet, /area/almayer/living/commandbunks) "kWT" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/living/pilotbunks) "kXa" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ @@ -43926,19 +35929,14 @@ /obj/structure/sign/safety/cryo{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "kXf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/computerlab) "kXm" = ( /obj/effect/decal/warning_stripes{ @@ -43948,49 +35946,32 @@ pixel_x = -17; pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "kXt" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "kXu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "kXw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) "kXN" = ( /obj/item/clothing/glasses/sunglasses/aviator{ pixel_x = -1; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "kYb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "kYl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44018,17 +35999,13 @@ /area/almayer/living/commandbunks) "kYv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "kYF" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_f_s) "kYL" = ( /obj/effect/decal/warning_stripes{ @@ -44037,19 +36014,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "kYU" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "kYV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44059,25 +36030,18 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "kZc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "kZN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/living/auxiliary_officer_office) "kZV" = ( /obj/structure/machinery/light, @@ -44089,22 +36053,15 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "lab" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "lah" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/almayer/living/gym) "lat" = ( /obj/structure/toilet{ @@ -44120,10 +36077,7 @@ /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "laM" = ( /obj/effect/decal/warning_stripes{ @@ -44133,9 +36087,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "laO" = ( /obj/structure/disposalpipe/segment{ @@ -44152,9 +36104,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "laU" = ( /obj/structure/window/framed/almayer, @@ -44183,9 +36133,7 @@ /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "lbs" = ( /obj/structure/sign/safety/biolab{ @@ -44202,16 +36150,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "lbO" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "lbX" = ( /obj/structure/bed/chair{ @@ -44220,15 +36163,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "lcg" = ( /obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "lcy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44237,9 +36176,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "lcV" = ( /obj/structure/bed/chair{ @@ -44260,9 +36197,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "ldc" = ( /turf/closed/wall/almayer/reinforced, @@ -44277,9 +36212,7 @@ /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "ldt" = ( /obj/structure/machinery/conveyor{ @@ -44287,25 +36220,18 @@ id = "gym_1"; name = "treadmill" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "ldC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "ldF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) "ldW" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "lea" = ( /obj/structure/sink{ @@ -44329,19 +36255,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "leg" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/hallways/hangar) "let" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -44355,24 +36275,17 @@ /area/almayer/lifeboat_pumps/south1) "leM" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "leY" = ( /obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "lft" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "lfx" = ( /turf/open/floor/plating/plating_catwalk, @@ -44385,10 +36298,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "lfZ" = ( /obj/structure/surface/table/almayer, @@ -44402,9 +36312,7 @@ /area/almayer/maint/upper/u_f_s) "lgk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "lgt" = ( /obj/structure/sink{ @@ -44418,9 +36326,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/command/corporateliaison) "lgy" = ( /obj/structure/window/framed/almayer, @@ -44451,29 +36357,20 @@ pixel_x = -10; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "lhj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/bulkhead_door{ pixel_y = -34 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "lhs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "lht" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/starboard) "lhv" = ( /obj/structure/machinery/door_control{ @@ -44483,10 +36380,7 @@ req_access_txt = "5" }, /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/upper_medical) "lhB" = ( /obj/structure/window/framed/almayer, @@ -44505,10 +36399,7 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ @@ -44523,25 +36414,19 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "lib" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "lid" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44564,9 +36449,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/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/almayer/medical/containment/cell) "liZ" = ( /obj/structure/surface/table/almayer, @@ -44581,9 +36464,7 @@ "ljf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "ljm" = ( /obj/item/clothing/gloves/botanic_leather{ @@ -44597,9 +36478,7 @@ }, /obj/structure/closet/crate, /obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, @@ -44612,9 +36491,7 @@ "ljG" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "ljO" = ( /obj/structure/disposalpipe/segment, @@ -44626,10 +36503,7 @@ /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "ljS" = ( /obj/effect/decal/warning_stripes{ @@ -44648,9 +36522,7 @@ /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "lka" = ( /obj/structure/disposalpipe/segment, @@ -44658,9 +36530,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, @@ -44680,16 +36550,11 @@ pixel_y = -2; req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/living/offices/flight) "lkm" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "lkL" = ( /obj/structure/pipes/vents/pump{ @@ -44701,9 +36566,7 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "lkM" = ( /obj/effect/decal/warning_stripes{ @@ -44713,9 +36576,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "lkV" = ( /obj/structure/disposalpipe/segment{ @@ -44730,10 +36591,7 @@ /obj/item/device/radio/marine, /obj/item/clothing/accessory/storage/surg_vest, /obj/item/tool/portadialysis, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "lla" = ( /obj/structure/sign/safety/hvac_old{ @@ -44746,25 +36604,16 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) "llo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "llK" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "llO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/hangar) "lma" = ( /obj/structure/sign/safety/security{ @@ -44775,9 +36624,7 @@ "lmi" = ( /obj/structure/bed, /obj/item/bedsheet/green, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -44811,9 +36658,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/numbertwobunks) "lmG" = ( /obj/structure/stairs{ @@ -44825,15 +36670,11 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "lne" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "lnh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -44844,19 +36685,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/chief_mp_office) "lnm" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/living/briefing) "lnt" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/shipboard/brig/cic_hallway) "lnu" = ( /turf/closed/wall/almayer/reinforced/temphull, @@ -44864,9 +36699,7 @@ "lnP" = ( /obj/structure/machinery/vending/cola, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "lnS" = ( /obj/structure/sign/safety/rewire{ @@ -44890,9 +36723,7 @@ pixel_y = -8; req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "lok" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ @@ -44903,9 +36734,7 @@ /obj/structure/sign/safety/cryo{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "lol" = ( /obj/structure/machinery/status_display{ @@ -44915,9 +36744,7 @@ /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "lou" = ( /obj/effect/decal/warning_stripes{ @@ -44926,9 +36753,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "loy" = ( /obj/structure/sign/poster{ @@ -44950,9 +36775,7 @@ pixel_x = 9; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "loE" = ( /turf/open/floor/plating/plating_catwalk, @@ -44964,9 +36787,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "loP" = ( /turf/closed/wall/almayer, @@ -44984,9 +36805,7 @@ pixel_y = -29 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/squads/delta) "loV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -45003,51 +36822,35 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "loY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "lpg" = ( /obj/structure/machinery/cm_vending/clothing/dress{ req_access = list(1) }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/commandbunks) "lpl" = ( /obj/structure/machinery/door/airlock/almayer/security{ dir = 2; name = "\improper Security Checkpoint" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "lpt" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/charlie_delta_shared) "lpy" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered/agent) "lql" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "lqF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_lobby) "lqK" = ( /obj/effect/decal/cleanable/ash, @@ -45055,30 +36858,21 @@ pixel_x = -13; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/hallways/hangar) "lqL" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/aft_hallway) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/living/port_emb) "lrq" = ( /turf/closed/wall/almayer/reinforced, @@ -45094,9 +36888,7 @@ /area/almayer/lifeboat_pumps/south1) "lrH" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, @@ -45107,9 +36899,7 @@ /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "lrX" = ( /obj/effect/decal/warning_stripes{ @@ -45128,9 +36918,7 @@ pixel_y = 5 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "lso" = ( /obj/structure/machinery/light/small{ @@ -45152,18 +36940,13 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "lsD" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/living/offices/flight) "lsV" = ( /obj/structure/largecrate/random/barrel/red, @@ -45171,19 +36954,13 @@ pixel_x = 7; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/weapon_room) "ltb" = ( /obj/structure/sign/safety/rewire{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "ltc" = ( /obj/effect/landmark/late_join/working_joe, @@ -45192,15 +36969,11 @@ /area/almayer/command/airoom) "ltm" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "lto" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "ltv" = ( /obj/structure/disposalpipe/segment{ @@ -45209,9 +36982,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "ltw" = ( /obj/structure/largecrate/supply, @@ -45231,10 +37002,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northeast, /area/almayer/squads/charlie) "ltO" = ( /obj/structure/closet/secure_closet{ @@ -45245,17 +37013,13 @@ /obj/item/reagent_container/ld50_syringe/choral, /obj/item/reagent_container/ld50_syringe/choral, /obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "ltU" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "lul" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ @@ -45263,9 +37027,7 @@ req_access = null; req_access_txt = "31" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/commandbunks) "luE" = ( /obj/structure/sign/poster{ @@ -45283,16 +37045,11 @@ amount = 50; pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "luY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "luZ" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -45307,9 +37064,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "lvb" = ( /obj/structure/machinery/door_control/cl/office/door{ @@ -45326,15 +37081,10 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "lvA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/pilotbunks) "lwh" = ( /obj/structure/machinery/light{ @@ -45342,9 +37092,7 @@ }, /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "lwp" = ( /obj/item/device/radio/intercom{ @@ -45370,31 +37118,23 @@ /area/almayer/living/basketball) "lwG" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "lwJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/squads/charlie) "lwY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "lxd" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "lxo" = ( /obj/structure/sign/safety/hazard{ @@ -45405,23 +37145,17 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "lxE" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/commandbunks) "lxW" = ( /obj/structure/sign/prop2{ pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "lyh" = ( /obj/structure/surface/table/reinforced/prison, @@ -45444,22 +37178,14 @@ /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "lym" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "lyq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/hallways/lower/port_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ @@ -45476,22 +37202,15 @@ pixel_x = 12; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "lyE" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/computerlab) "lyP" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "lyW" = ( /turf/closed/wall/almayer/outer, @@ -45502,9 +37221,7 @@ req_access_txt = 37; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "lza" = ( /obj/structure/bed/sofa/vert/grey, @@ -45517,10 +37234,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "lzq" = ( /obj/structure/disposalpipe/segment{ @@ -45540,17 +37254,13 @@ pixel_x = 17; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "lzA" = ( /obj/structure/bed/chair/comfy{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "lAa" = ( /obj/structure/surface/table/almayer, @@ -45566,18 +37276,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) "lAl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/squads/bravo) "lAu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "lAy" = ( /obj/structure/bed/chair/comfy/beige{ @@ -45595,10 +37300,7 @@ vend_x_offset = 1 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/squads/charlie) "lAW" = ( /obj/docking_port/stationary/escape_pod/east, @@ -45606,9 +37308,7 @@ /area/almayer/maint/upper/u_m_p) "lBg" = ( /obj/structure/bedsheetbin, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "lBl" = ( /obj/structure/sink{ @@ -45623,57 +37323,39 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/squads/charlie) "lCg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "lCm" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "lCr" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "lCt" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/containment) "lCE" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "lCL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "lDa" = ( /obj/structure/flora/pottedplant{ @@ -45692,10 +37374,7 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "lDn" = ( /obj/effect/decal/warning_stripes{ @@ -45719,10 +37398,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "lDN" = ( /obj/effect/decal/warning_stripes{ @@ -45738,18 +37414,14 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "lDT" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, @@ -45772,19 +37444,13 @@ /area/almayer/medical/containment/cell/cl) "lEj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/upper_engineering) "lEv" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/lobby) "lEF" = ( /obj/structure/stairs{ @@ -45804,9 +37470,7 @@ /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) "lEV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "lFe" = ( /obj/structure/bed/chair/comfy{ @@ -45821,10 +37485,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/port_emb) "lFj" = ( /obj/structure/machinery/door_control{ @@ -45834,19 +37495,13 @@ pixel_y = -8; req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "lFn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/morgue) "lFp" = ( /turf/closed/wall/almayer, @@ -45856,10 +37511,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/maint/upper/mess) "lFt" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, @@ -45867,10 +37519,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/starboard_atmos) "lFw" = ( /obj/structure/machinery/light{ @@ -45890,9 +37539,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "lFK" = ( /obj/structure/machinery/light{ @@ -45908,17 +37555,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/lower/starboard_midship_hallway) "lGg" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "lGh" = ( /obj/structure/disposalpipe/segment{ @@ -45937,16 +37578,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) "lHu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/living/grunt_rnr) "lHB" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "lHG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -45958,9 +37594,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "lIj" = ( /turf/closed/wall/almayer, @@ -45984,17 +37618,13 @@ id = "hangarentrancenorth"; name = "\improper North Hangar Podlock" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "lII" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/port_atmos) "lIQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46004,9 +37634,7 @@ /area/almayer/maint/hull/upper/u_f_p) "lIU" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/port) "lIY" = ( /obj/effect/decal/warning_stripes{ @@ -46014,18 +37642,13 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/starboard) "lJu" = ( /obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "lJv" = ( /obj/structure/window/framed/almayer/white, @@ -46042,9 +37665,7 @@ layer = 3.3; pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "lJG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -46052,19 +37673,14 @@ dir = 4 }, /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) "lJK" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "lJL" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46075,15 +37691,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/cells) "lJM" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "lJO" = ( /obj/structure/disposalpipe/segment{ @@ -46093,9 +37705,7 @@ dir = 4 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "lJY" = ( /turf/open/floor/almayer, @@ -46107,18 +37717,14 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "lKb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha_bravo_shared) "lKM" = ( /obj/structure/surface/table/almayer, @@ -46140,24 +37746,17 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/hallways/lower/port_fore_hallway) "lLt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/midship_hallway) "lLA" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/midship_hallway) "lLC" = ( /obj/structure/surface/table/almayer, @@ -46173,21 +37772,13 @@ /obj/structure/sign/safety/galley{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "lMb" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "lMc" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "lMp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46197,10 +37788,7 @@ /area/almayer/lifeboat_pumps/south2) "lMv" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/medical_science) "lMw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46210,16 +37798,11 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "lMx" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) "lMy" = ( /obj/structure/machinery/fuelpump, @@ -46243,9 +37826,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "lMO" = ( /obj/structure/surface/rack, @@ -46260,9 +37841,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "lNk" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -46281,9 +37860,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "lNL" = ( /obj/item/tool/mop{ @@ -46291,9 +37868,7 @@ pixel_y = 24 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "lNR" = ( /obj/structure/window/framed/almayer, @@ -46322,10 +37897,7 @@ /obj/structure/sink{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_two) "lON" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46334,9 +37906,7 @@ name = "\improper Research Doorway Shutter" }, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "lOX" = ( /obj/effect/decal/warning_stripes{ @@ -46346,10 +37916,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "lPm" = ( /obj/structure/machinery/firealarm{ @@ -46372,10 +37939,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "lPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46385,16 +37949,10 @@ /area/almayer/shipboard/brig/cic_hallway) "lPO" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/securestorage) "lPY" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/hallways/upper/fore_hallway) "lQa" = ( /obj/structure/machinery/light{ @@ -46403,10 +37961,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/starboard) "lQf" = ( /obj/structure/disposalpipe/segment{ @@ -46416,15 +37971,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "lQz" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "lQB" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -46447,16 +37998,10 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/operating_room_three) "lRh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/hallways/upper/midship_hallway) "lRs" = ( /obj/structure/surface/table/almayer, @@ -46467,9 +38012,7 @@ /obj/item/reagent_container/food/condiment/hotsauce/cholula{ pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "lRt" = ( /obj/structure/largecrate/random/barrel/green, @@ -46492,10 +38035,7 @@ "lRX" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/hallways/hangar) "lRZ" = ( /obj/effect/decal/warning_stripes{ @@ -46505,10 +38045,7 @@ /obj/structure/sign/safety/ladder{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/briefing) "lSs" = ( /obj/structure/bed, @@ -46516,19 +38053,14 @@ id = "Cell 5"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/cells) "lSJ" = ( /obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "lSN" = ( /obj/structure/disposalpipe/segment{ @@ -46543,9 +38075,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_f_p) "lSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46560,9 +38090,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cichallway) "lTE" = ( /obj/structure/surface/table/almayer, @@ -46577,18 +38105,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/lower/port_fore_hallway) "lUQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -46605,9 +38128,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46615,9 +38136,7 @@ id = "south_central_checkpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "lVW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46647,9 +38166,7 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "lVZ" = ( /obj/structure/platform_decoration{ @@ -46659,16 +38176,11 @@ /area/almayer/hallways/lower/repair_bay) "lWr" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "lWt" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "lWO" = ( /obj/structure/disposalpipe/segment, @@ -46681,15 +38193,11 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "lWY" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "lXb" = ( /obj/structure/disposalpipe/segment{ @@ -46706,15 +38214,10 @@ /obj/structure/machinery/computer/working_joe{ pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "lXl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "lXO" = ( /obj/structure/surface/table/almayer, @@ -46725,19 +38228,13 @@ pixel_x = -3; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/offices) "lXR" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "lYg" = ( /obj/structure/disposalpipe/segment, @@ -46748,34 +38245,26 @@ pixel_x = 16; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "lYt" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "lYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "lYN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "lYS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46816,9 +38305,7 @@ pixel_x = 8; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "lZI" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -46827,30 +38314,22 @@ pixel_x = -16; pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "lZJ" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "lZM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/cryo_cells) "lZZ" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "may" = ( /obj/structure/flora/pottedplant{ @@ -46858,18 +38337,12 @@ pixel_y = 16 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/starboard_hallway) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "maK" = ( /obj/structure/largecrate/random/barrel/green, @@ -46878,9 +38351,7 @@ "maL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "maO" = ( /obj/structure/machinery/disposal, @@ -46899,38 +38370,27 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) "mbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/starboard) "mbR" = ( /obj/docking_port/stationary/escape_pod/north, /turf/open/floor/plating, /area/almayer/maint/hull/lower/l_m_p) "mcp" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/starboard_hallway) "mcL" = ( /obj/structure/machinery/vending/snack, /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "mcW" = ( /obj/structure/surface/table/almayer, @@ -46952,18 +38412,13 @@ /area/almayer/hallways/upper/midship_hallway) "mdo" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "mdC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/hallways/lower/port_midship_hallway) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -46983,10 +38438,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/mp_bunks) "mem" = ( /obj/structure/machinery/light/small{ @@ -47011,17 +38463,13 @@ /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "meE" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "meQ" = ( /turf/open/floor/plating/plating_catwalk, @@ -47034,9 +38482,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "meY" = ( /turf/closed/wall/almayer{ @@ -47051,9 +38497,7 @@ /obj/structure/sign/safety/water{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "mfM" = ( /obj/structure/surface/table/almayer, @@ -47063,10 +38507,7 @@ /obj/structure/window/reinforced/ultra{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/living/briefing) "mfO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47079,30 +38520,21 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) "mfQ" = ( -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/living/pilotbunks) "mgb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) "mgd" = ( /obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "mgj" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) "mgu" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -47115,9 +38547,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower) "mgy" = ( /obj/effect/decal/cleanable/dirt, @@ -47128,17 +38558,13 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "mgX" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "mha" = ( /obj/effect/decal/warning_stripes{ @@ -47152,27 +38578,20 @@ dir = 1 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "mhm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "mho" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "mhG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47196,9 +38615,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "mis" = ( /turf/open/floor/plating, @@ -47209,10 +38626,7 @@ pixel_x = 8; pixel_y = 29 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/shipboard/brig/medical) "miE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47234,32 +38648,24 @@ "mje" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "mjs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "mjt" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "mjy" = ( /obj/structure/machinery/conveyor_switch{ id = "lower_garbage" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "mjS" = ( /obj/structure/machinery/firealarm{ @@ -47311,9 +38717,7 @@ pixel_y = 7 }, /obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "mki" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47322,17 +38726,13 @@ /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "mkl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "mkn" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -47341,9 +38741,7 @@ name = "\improper Secure Storage"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop/hangar) "mkw" = ( /obj/structure/sign/safety/security{ @@ -47353,9 +38751,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "mkx" = ( /obj/structure/disposalpipe/segment{ @@ -47365,15 +38761,11 @@ /area/almayer/hallways/lower/port_midship_hallway) "mkF" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "mkG" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/engineering/port_atmos) "mkH" = ( /obj/structure/surface/rack{ @@ -47387,16 +38779,11 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "mkI" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "mkL" = ( /obj/structure/pipes/valve/digital/open{ @@ -47406,10 +38793,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "mkP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -47421,9 +38805,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop) "mlb" = ( /obj/effect/decal/warning_stripes{ @@ -47437,40 +38819,29 @@ /turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) "mlm" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/cryo_cells) "mlz" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "mlF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "mlH" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "mlP" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ dir = 1; name = "Corporate Liaison's Bedroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "mmn" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ @@ -47482,10 +38853,7 @@ pixel_x = -32; alpha = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "mmN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -47506,15 +38874,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_umbilical) "mnf" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/hallways/upper/midship_hallway) "mng" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/living/briefing) "mnA" = ( /obj/structure/sign/safety/maint{ @@ -47525,14 +38888,10 @@ "mnB" = ( /obj/structure/surface/rack, /obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/maint/upper/u_a_p) "mnI" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/briefing) "mnW" = ( /obj/structure/surface/table/almayer, @@ -47555,15 +38914,11 @@ pixel_y = 7 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "moc" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_p) "mor" = ( /obj/structure/machinery/light{ @@ -47592,9 +38947,7 @@ /area/almayer/squads/alpha_bravo_shared) "moK" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_s) "moL" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -47607,20 +38960,14 @@ pixel_x = -9; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "moM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "moQ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/living/briefing) "mph" = ( /obj/effect/decal/warning_stripes{ @@ -47630,31 +38977,23 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "mpn" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "mpP" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower) "mpV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_umbilical) "mpZ" = ( /obj/structure/disposalpipe/segment{ @@ -47679,10 +39018,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "mqh" = ( /obj/structure/machinery/light{ @@ -47690,21 +39026,14 @@ }, /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "mqt" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/hallways/lower/port_midship_hallway) "mqB" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/port_umbilical) "mqK" = ( /obj/structure/machinery/cm_vending/gear/spec, @@ -47715,18 +39044,14 @@ /obj/structure/sign/safety/ammunition{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "mqU" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "mqZ" = ( /obj/structure/platform{ @@ -47739,9 +39064,7 @@ dir = 1 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "mrL" = ( /obj/structure/surface/rack, @@ -47749,14 +39072,10 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "mrM" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "msg" = ( /obj/structure/machinery/light, @@ -47767,9 +39086,7 @@ pixel_x = 14; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "msi" = ( /obj/structure/filingcabinet/filingcabinet{ @@ -47793,18 +39110,13 @@ pixel_x = 1 }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/containment) "msm" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "msC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -47812,29 +39124,21 @@ dir = 8; req_one_access = list(2,34,30) }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "msP" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "msS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north2) "msZ" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "mtl" = ( /turf/closed/wall/almayer/reinforced, @@ -47856,48 +39160,33 @@ /obj/structure/machinery/status_display{ pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "mtD" = ( /obj/structure/machinery/status_display{ pixel_x = 16; pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "mtM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "mtZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "mua" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "mub" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -47911,25 +39200,17 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "muy" = ( /obj/effect/landmark/start/marine/engineer/alpha, /obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "muV" = ( /obj/structure/surface/table/woodentable/fancy, @@ -47944,9 +39225,7 @@ /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) "muW" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/midship_hallway) "mvg" = ( /obj/docking_port/stationary/escape_pod/west, @@ -47957,9 +39236,7 @@ /obj/item/weapon/gun/revolver/m44{ desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "mvl" = ( /obj/structure/disposalpipe/segment{ @@ -47970,9 +39247,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/squads/delta) "mvI" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -47982,10 +39257,7 @@ /obj/structure/barricade/handrail/medical{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "mww" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48010,14 +39282,10 @@ /area/almayer/living/chapel) "mwM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "mwP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "mwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -48026,9 +39294,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "mwR" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -48047,16 +39313,12 @@ /obj/structure/machinery/door_control/cl/office/door{ pixel_y = -20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/upper/midship_hallway) "mxT" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "mxV" = ( /obj/structure/sign/safety/autoopenclose{ @@ -48074,17 +39336,12 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "myo" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "myJ" = ( /obj/structure/machinery/light{ @@ -48093,19 +39350,14 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "myP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "mza" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48130,20 +39382,14 @@ pixel_x = -2; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/armory) "mzg" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "mzn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) "mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48153,10 +39399,7 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/hydroponics) "mzs" = ( /obj/effect/decal/warning_stripes{ @@ -48186,9 +39429,7 @@ /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "mzP" = ( /obj/structure/stairs{ @@ -48202,16 +39443,10 @@ /turf/open/floor/plating, /area/almayer/command/airoom) "mzS" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north2) "mzV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/port_emb) "mAe" = ( /obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, @@ -48249,42 +39484,29 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/starboard) "mAV" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "mAY" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "mBa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/lower/starboard_midship_hallway) "mBc" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/squads/charlie_delta_shared) "mBe" = ( /obj/structure/machinery/light{ @@ -48294,9 +39516,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/pilotbunks) "mBk" = ( /obj/structure/surface/table/almayer, @@ -48325,20 +39545,14 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_medbay) "mBx" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "mBJ" = ( /obj/structure/stairs{ @@ -48352,14 +39566,10 @@ /area/almayer/living/chapel) "mBO" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "mCg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_p) "mCo" = ( /obj/structure/window/framed/almayer, @@ -48381,18 +39591,14 @@ id = "ARES ReceptStairs1"; name = "\improper ARES Reception Shutters" }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "mCE" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "mCJ" = ( /obj/structure/machinery/power/apc/almayer, @@ -48417,9 +39623,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "mDG" = ( /obj/structure/window/framed/almayer, @@ -48442,22 +39646,14 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower) "mDT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie_delta_shared) "mDW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/living/briefing) "mDX" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48472,9 +39668,7 @@ req_access = null; req_access_txt = "31" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/commandbunks) "mDZ" = ( /obj/structure/disposalpipe/segment{ @@ -48505,10 +39699,7 @@ unacidable = 0; unslashable = 0 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "mEE" = ( /obj/structure/platform{ @@ -48529,9 +39720,7 @@ dir = 4 }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "mFq" = ( /obj/structure/machinery/door_control{ @@ -48541,10 +39730,7 @@ pixel_y = 29; req_access_txt = "28" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) "mFL" = ( /obj/effect/projector{ @@ -48552,9 +39738,7 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "mFN" = ( /obj/effect/step_trigger/ares_alert/mainframe, @@ -48564,9 +39748,7 @@ plane = -7 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "mFO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48575,10 +39757,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/squads/bravo) "mFP" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -48589,27 +39768,20 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "mFQ" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/maint/hull/lower/s_bow) "mGb" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "mGe" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) "mGu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/securestorage) "mGT" = ( /obj/structure/machinery/status_display{ @@ -48630,10 +39802,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "mHo" = ( /obj/structure/machinery/washing_machine, @@ -48644,9 +39813,7 @@ /obj/structure/sign/safety/rewire{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "mHx" = ( /obj/structure/bed/chair{ @@ -48674,9 +39841,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "mHF" = ( /obj/structure/surface/rack, @@ -48685,25 +39850,18 @@ pixel_y = 8 }, /obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "mHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "mHT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/maint/upper/u_a_s) "mHY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48717,9 +39875,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "mIi" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -48754,9 +39910,7 @@ pixel_x = -1; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "mIJ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ @@ -48770,19 +39924,14 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "mIR" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "mJa" = ( /obj/structure/closet/crate/trashcart, @@ -48790,9 +39939,7 @@ /obj/item/trash/chunk/hunk, /obj/item/trash/crushed_cup, /obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "mJe" = ( /obj/structure/sign/safety/conference_room{ @@ -48803,10 +39950,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "mJi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48826,16 +39970,10 @@ /area/almayer/command/cic) "mJx" = ( /obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "mJL" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/living/pilotbunks) "mJO" = ( /turf/closed/wall/almayer, @@ -48849,10 +39987,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/squads/bravo) "mKb" = ( /obj/structure/flora/pottedplant{ @@ -48861,10 +39996,7 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/squads/alpha) "mKi" = ( /obj/effect/decal/warning_stripes{ @@ -48874,9 +40006,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/port) "mKq" = ( /turf/closed/wall/almayer/reinforced, @@ -48888,9 +40018,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "mKw" = ( /obj/structure/disposalpipe/junction{ @@ -48899,9 +40027,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "mKx" = ( /obj/effect/decal/warning_stripes{ @@ -48912,18 +40038,14 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "mKy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "mKJ" = ( /obj/structure/machinery/firealarm{ @@ -48953,9 +40075,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "mKN" = ( /obj/effect/landmark/start/pilot/cas_pilot, @@ -48983,9 +40103,7 @@ name = "PO1 Privacy Shutters"; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "mLF" = ( /obj/structure/disposalpipe/segment{ @@ -49031,9 +40149,7 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "mNm" = ( /obj/structure/platform{ @@ -49056,9 +40172,7 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "mNI" = ( /obj/structure/machinery/door/window/westleft{ @@ -49066,22 +40180,14 @@ }, /obj/structure/machinery/shower, /obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, +/turf/open/floor/almayer/sterile, /area/almayer/medical/upper_medical) "mNK" = ( /obj/structure/closet/secure_closet/brig/restraints, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/perma) "mNX" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space/almayer/lifeboat_dock) "mOb" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -49091,17 +40197,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "mOg" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "mOi" = ( /turf/closed/wall/almayer/outer, @@ -49110,15 +40212,11 @@ /obj/structure/sign/safety/water{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "mOZ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/upper/midship_hallway) "mPc" = ( /obj/structure/sign/safety/hvac_old{ @@ -49128,9 +40226,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "mPf" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, +/turf/open/floor/almayer/uscm/directional/southeast, /area/almayer/command/lifeboat) "mPh" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -49141,9 +40237,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "mPj" = ( /obj/structure/disposalpipe/segment{ @@ -49167,44 +40261,32 @@ /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) "mPM" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_midship_hallway) "mPR" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "mQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "mQd" = ( /obj/structure/surface/rack, /obj/item/device/radio, /obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "mQn" = ( /obj/structure/sign/safety/rad_shield{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/engine_core) "mQx" = ( /obj/effect/projector{ @@ -49212,9 +40294,7 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) "mQC" = ( /turf/open/floor/plating/plating_catwalk, @@ -49225,9 +40305,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "mRn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -49245,9 +40323,7 @@ pixel_y = 6 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "mRq" = ( /obj/structure/surface/table/almayer, @@ -49264,9 +40340,7 @@ pixel_x = 9; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "mRH" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ @@ -49278,21 +40352,14 @@ pixel_x = -3; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "mRI" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_s) "mRJ" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/hallways/upper/midship_hallway) "mRQ" = ( /obj/structure/flora/pottedplant{ @@ -49305,10 +40372,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "mRU" = ( /turf/closed/wall/almayer, @@ -49333,9 +40397,7 @@ "mSo" = ( /obj/structure/surface/rack, /obj/item/facepaint/sniper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "mSr" = ( /obj/effect/landmark/crap_item, @@ -49345,17 +40407,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "mSz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/securestorage) "mSK" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -49363,9 +40420,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/medical/hydroponics) "mSM" = ( /obj/structure/sign/safety/storage{ @@ -49376,9 +40431,7 @@ /area/almayer/maint/hull/upper/u_m_p) "mSU" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/charlie_delta_shared) "mTc" = ( /obj/structure/surface/table/woodentable/fancy, @@ -49397,15 +40450,10 @@ /area/almayer/medical/medical_science) "mTi" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "mTm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/navigation) "mTp" = ( /obj/structure/window/reinforced{ @@ -49416,10 +40464,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/medical/hydroponics) "mTr" = ( /obj/structure/machinery/door_control{ @@ -49435,19 +40480,14 @@ c_tag = "AI - Main Corridor"; autoname = 0 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "mTL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -49459,21 +40499,15 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "mUx" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "mUE" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "mUY" = ( /obj/structure/surface/rack, @@ -49481,24 +40515,17 @@ /obj/effect/spawner/random/tool, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_m_s) "mVh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "mVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "mVA" = ( /obj/item/reagent_container/glass/bucket, @@ -49529,9 +40556,7 @@ /obj/structure/sign/safety/bulkhead_door{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "mVF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -49544,9 +40569,7 @@ req_one_access = null; req_one_access_txt = "19;30" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "mWs" = ( /obj/effect/decal/warning_stripes{ @@ -49555,27 +40578,21 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "mWy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha_bravo_shared) "mWD" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "mWJ" = ( /obj/structure/stairs{ @@ -49587,9 +40604,7 @@ vector_x = 1; vector_y = -102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "mWQ" = ( /obj/structure/flora/pottedplant{ @@ -49601,10 +40616,7 @@ /obj/structure/sign/banners/maximumeffort{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/squads/delta) "mWV" = ( /obj/structure/bed/chair/comfy/blue, @@ -49617,9 +40629,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 10 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "mXj" = ( /turf/closed/wall/almayer, @@ -49647,9 +40657,7 @@ /area/almayer/squads/req) "mYA" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "mZb" = ( /obj/structure/flora/pottedplant{ @@ -49660,10 +40668,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/command/cichallway) "mZc" = ( /obj/structure/sign/poster/blacklight{ @@ -49679,9 +40684,7 @@ pixel_x = -7; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "mZf" = ( /obj/structure/surface/table/almayer, @@ -49696,45 +40699,33 @@ pixel_x = -5; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "mZr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "mZF" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "s_engi_ext" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/notunnel) "mZL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "mZM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/navigation) "mZP" = ( /obj/structure/surface/rack, @@ -49744,9 +40735,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "mZQ" = ( /obj/structure/machinery/vending/security, @@ -49755,9 +40744,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "naa" = ( /obj/structure/disposalpipe/segment{ @@ -49773,10 +40760,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "nah" = ( /obj/structure/machinery/status_display{ @@ -49790,10 +40774,7 @@ /obj/item/desk_bell{ anchored = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/lobby) "naj" = ( /obj/structure/machinery/door_control{ @@ -49822,9 +40803,7 @@ name = "\improper Secure Storage"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop/hangar) "naB" = ( /turf/closed/wall/almayer/reinforced, @@ -49837,9 +40816,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "naR" = ( /obj/effect/decal/warning_stripes{ @@ -49849,10 +40826,7 @@ /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/medical_science) "naV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -49866,9 +40840,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/gym) "nbu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -49893,26 +40865,19 @@ /obj/structure/machinery/status_display{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "nci" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) "ncl" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/lobby) "ncp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/starboard) "ncx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -49920,9 +40885,7 @@ name = "\improper Emergency Air Storage" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "ncE" = ( /obj/structure/machinery/light{ @@ -49931,43 +40894,32 @@ /obj/structure/machinery/autodispenser{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "ncG" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/port) "ncT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/port) "ndl" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "ndm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "ndZ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -49975,9 +40927,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "nec" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -49985,40 +40935,28 @@ req_access_txt = "200"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "nef" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "ner" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south2) "new" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/reagent_container/glass/bucket/janibucket{ pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "neC" = ( /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) "neE" = ( /obj/structure/platform_decoration{ @@ -50030,25 +40968,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/command/lifeboat) "neH" = ( /obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "neO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/navigation) "neS" = ( /obj/structure/sign/nosmoking_2{ @@ -50076,10 +41006,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "nff" = ( /obj/structure/surface/table/almayer, @@ -50087,9 +41014,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "nfC" = ( /obj/effect/decal/warning_stripes{ @@ -50103,10 +41028,7 @@ pixel_y = 25 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "ngl" = ( /obj/structure/stairs/perspective{ @@ -50124,9 +41046,7 @@ pixel_x = 2; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "ngr" = ( /obj/structure/sign/safety/intercom{ @@ -50138,18 +41058,13 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/lobby) "ngw" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/frag, /obj/item/mortar_shell/frag, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "ngA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -50173,15 +41088,10 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "ngI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/briefing) "ngK" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -50193,9 +41103,7 @@ name = "\improper Workshop Shutters" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/repair_bay) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50222,26 +41130,19 @@ pixel_x = 4; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "nhi" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/living/briefing) "nhr" = ( /obj/structure/ladder{ height = 1; id = "engineeringladder" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/workshop) "nhw" = ( /obj/structure/machinery/light/small, @@ -50309,25 +41210,19 @@ /area/almayer/maint/upper/u_m_p) "nhV" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "nic" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/stern) "nig" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "nii" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "nik" = ( /obj/effect/decal/warning_stripes{ @@ -50341,9 +41236,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "nim" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -50361,41 +41254,31 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/ce_room) "nis" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "niF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/medical_science) "niL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "niR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "niY" = ( /obj/effect/decal/warning_stripes{ @@ -50410,9 +41293,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "nja" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50422,9 +41303,7 @@ /area/almayer/lifeboat_pumps/south2) "njd" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "njk" = ( /obj/effect/step_trigger/clone_cleaner, @@ -50432,19 +41311,14 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/port) "njn" = ( /turf/closed/wall/almayer, /area/almayer/maint/upper/u_m_s) "njD" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/south1) "njJ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -50455,15 +41329,11 @@ pixel_x = -9; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "njO" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/panic) "njS" = ( /obj/structure/sign/safety/rad_haz{ @@ -50471,15 +41341,11 @@ pixel_y = -32 }, /obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "nkc" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "nkj" = ( /obj/structure/sign/safety/hvac_old{ @@ -50500,19 +41366,13 @@ }, /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/starboard_missiles) "nkF" = ( /obj/structure/bed/chair/bolted{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/processing) "nkH" = ( /obj/effect/decal/warning_stripes{ @@ -50523,10 +41383,7 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/starboard) "nkK" = ( /obj/structure/stairs{ @@ -50538,9 +41395,7 @@ vector_x = 102; vector_y = -61 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "nkX" = ( /obj/structure/surface/table/almayer, @@ -50552,10 +41407,7 @@ dir = 4; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/processing) "nlh" = ( /obj/effect/decal/warning_stripes{ @@ -50571,44 +41423,31 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "nlB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/living/briefing) "nlI" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "nlW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "nme" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/port) "nmh" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "nmp" = ( /obj/structure/sign/safety/nonpress_ag{ @@ -50618,9 +41457,7 @@ /obj/structure/sign/safety/west{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "nmH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50640,15 +41477,10 @@ /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "nmV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/securestorage) "nmY" = ( /turf/closed/wall/almayer/reinforced, @@ -50658,9 +41490,7 @@ height = 2; id = "bridge2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "nnr" = ( /obj/structure/machinery/light{ @@ -50670,9 +41500,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/port_aft_hallway) "nny" = ( /obj/structure/sign/safety/rewire{ @@ -50687,10 +41515,7 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/stair_clone/upper) "nnL" = ( /obj/structure/toilet{ @@ -50700,15 +41525,11 @@ /area/almayer/command/corporateliaison) "nnX" = ( /obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "noe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/upper/aft_hallway) "noj" = ( /obj/structure/largecrate, @@ -50716,9 +41537,7 @@ pixel_x = 1; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "noo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -50729,15 +41548,11 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/navigation) "nop" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "nos" = ( /obj/structure/machinery/chem_storage/medbay{ @@ -50748,15 +41563,10 @@ layer = 3; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "nou" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower) "noy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50791,10 +41601,7 @@ dir = 1 }, /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "nph" = ( /obj/structure/window/framed/almayer, @@ -50822,15 +41629,11 @@ pixel_y = -1 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "npw" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/starboard_midship_hallway) "npA" = ( /obj/effect/decal/warning_stripes{ @@ -50858,9 +41661,7 @@ icon_state = "W"; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/armory) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -50868,9 +41669,7 @@ /area/almayer/squads/req) "nqO" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "nqV" = ( /obj/structure/stairs/perspective{ @@ -50886,9 +41685,7 @@ /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "nrb" = ( /obj/item/robot_parts/arm/l_arm, @@ -50906,33 +41703,23 @@ /obj/structure/machinery/computer/working_joe{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "nrw" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/almayer/squads/charlie) "nrN" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "nrO" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -50958,16 +41745,10 @@ /area/almayer/hallways/lower/repair_bay) "nsr" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "nsH" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/hallways/upper/midship_hallway) "nsQ" = ( /obj/structure/sink{ @@ -50981,9 +41762,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/captain_mess) "nsY" = ( /turf/closed/wall/almayer, @@ -51007,10 +41786,7 @@ /obj/structure/sign/poster/propaganda{ pixel_y = 34 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "ntj" = ( /turf/closed/wall/almayer/reinforced, @@ -51023,9 +41799,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "ntI" = ( /obj/structure/machinery/light{ @@ -51040,9 +41814,7 @@ id = "perma_lockdown_1"; name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "nuA" = ( /obj/structure/disposalpipe/segment{ @@ -51056,15 +41828,10 @@ pixel_x = 2; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "nuM" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south2) "nuN" = ( /obj/effect/landmark/start/marine/medic/alpha, @@ -51081,22 +41848,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "nve" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "nvz" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south2) "nvG" = ( /obj/structure/machinery/light{ @@ -51112,17 +41872,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/numbertwobunks) "nvI" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, @@ -51139,9 +41895,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "nvX" = ( /obj/structure/surface/table/almayer, @@ -51168,55 +41922,38 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell) "nwx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/port_missiles) "nwD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/command/cic) "nwG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "nwL" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "nwU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "nwW" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "nwY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -51226,17 +41963,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/squads/req) "nxb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower/workshop) "nxe" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -51250,15 +41981,11 @@ pixel_y = 12; singular_name = "coffee semiotic" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "nxx" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "nyj" = ( /obj/effect/decal/medical_decals{ @@ -51270,32 +41997,23 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "nyw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "nyK" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/hallways/upper/fore_hallway) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) "nyS" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "nzt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -51310,9 +42028,7 @@ /obj/item/folder/black, /obj/item/folder/black, /obj/item/folder/white, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, @@ -51337,9 +42053,7 @@ closeOtherId = "brignorth"; name = "\improper Brig Lobby" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "nAd" = ( /obj/structure/machinery/power/apc/almayer{ @@ -51376,9 +42090,7 @@ vend_y_offset = 0 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "nBi" = ( /obj/structure/surface/table/almayer, @@ -51397,46 +42109,32 @@ /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "nBw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/briefing) "nBE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "nBF" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "nBJ" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/s_bow) "nBK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/north2) "nBV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "nCe" = ( /obj/structure/machinery/prop/almayer/computer{ pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, @@ -51445,9 +42143,7 @@ /area/almayer/squads/charlie) "nCn" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "nCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -51461,9 +42157,7 @@ name = "General Listening Channel"; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "nCx" = ( /obj/structure/surface/table/woodentable/fancy, @@ -51491,15 +42185,11 @@ /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) "nCD" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "nCM" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "nCR" = ( /obj/structure/sink{ @@ -51516,25 +42206,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/auxiliary_officer_office) "nCT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "nDa" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/lower/engine_core) "nDb" = ( /obj/effect/decal/warning_stripes{ @@ -51562,18 +42246,14 @@ /obj/structure/pipes/vents/pump/no_boom/gas{ vent_tag = "Core Chamber" }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "nDH" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -51582,9 +42262,7 @@ /area/almayer/squads/req) "nEc" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "nEl" = ( /obj/structure/disposalpipe/segment{ @@ -51620,21 +42298,15 @@ pixel_x = -6; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "nEJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "nEO" = ( /mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "nEZ" = ( /obj/structure/largecrate/random/secure, @@ -51643,17 +42315,13 @@ "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "nFs" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "nFA" = ( /obj/structure/bed/chair/comfy/bravo{ @@ -51663,9 +42331,7 @@ dir = 8; pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "nFI" = ( /obj/structure/surface/table/almayer, @@ -51685,9 +42351,7 @@ name = "EAT - poster"; pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "nFK" = ( /obj/structure/bed/chair{ @@ -51704,9 +42368,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "nGh" = ( /obj/structure/bed/chair{ @@ -51723,9 +42385,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "nGk" = ( /obj/structure/machinery/light/small, @@ -51739,15 +42399,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "nGY" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/north2) "nHu" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -51767,10 +42423,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/living/cryo_cells) "nHL" = ( /obj/structure/machinery/vending/coffee, @@ -51782,9 +42435,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "nHX" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -51797,15 +42448,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) "nIj" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/offices) "nIt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/starboard_missiles) "nID" = ( /obj/structure/machinery/light{ @@ -51827,28 +42473,20 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "nIE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_missiles) "nIG" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/securestorage) "nIN" = ( /turf/closed/wall/almayer, @@ -51863,15 +42501,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/lower/engine_core) "nJs" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "nJu" = ( /obj/item/newspaper, @@ -51882,18 +42516,14 @@ dir = 8; pixel_x = 17 }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "nKq" = ( /obj/structure/machinery/status_display{ pixel_x = 16; pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "nKO" = ( /obj/structure/disposalpipe/trunk{ @@ -51917,28 +42547,20 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "nLk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "nLp" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_f_p) "nLt" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/req) "nLI" = ( /obj/structure/sign/safety/terminal{ @@ -51950,19 +42572,14 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "nLJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "nMe" = ( /obj/effect/decal/warning_stripes{ @@ -51972,25 +42589,18 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/almayer/medical/containment/cell) "nMp" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "nMV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "nNg" = ( /obj/structure/bed, @@ -52002,20 +42612,14 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "nNv" = ( /obj/structure/machinery/vending/cigarette{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "nNx" = ( /obj/effect/decal/warning_stripes{ @@ -52023,10 +42627,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "nNA" = ( /obj/effect/decal/warning_stripes{ @@ -52037,15 +42638,10 @@ icon_state = "S"; layer = 3.3 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "nNH" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/north, /area/almayer/living/briefing) "nNT" = ( /obj/item/tool/weldingtool, @@ -52056,27 +42652,20 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/squads/charlie_delta_shared) "nNX" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PU-1"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "nNY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "nOb" = ( /obj/structure/surface/rack, @@ -52093,18 +42682,14 @@ pixel_x = -4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "nOp" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/midship_hallway) "nOx" = ( /obj/item/stack/sheet/metal, @@ -52118,18 +42703,13 @@ /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "nPa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "nPb" = ( /obj/effect/decal/warning_stripes{ @@ -52157,9 +42737,7 @@ req_one_access_txt = "19;28" }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -52171,18 +42749,13 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "nPB" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/hangar) "nPE" = ( /obj/structure/surface/table/almayer, @@ -52193,16 +42766,11 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "nPO" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/maint/hull/lower/l_m_s) "nPT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -52211,9 +42779,7 @@ id = "crate_room4"; name = "dilapidated storage shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "nPY" = ( /obj/structure/machinery/light{ @@ -52222,18 +42788,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/command/lifeboat) "nQn" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "nQo" = ( /obj/effect/landmark/yautja_teleport, @@ -52243,10 +42804,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) "nQA" = ( /turf/open/floor/carpet, @@ -52257,9 +42815,7 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) "nRE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -52271,21 +42827,14 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "nRN" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "nRR" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "nRX" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -52296,9 +42845,7 @@ /obj/item/stack/tile/carpet{ amount = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "nSq" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -52324,10 +42871,7 @@ /area/almayer/shipboard/brig/execution) "nSw" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "nSG" = ( /obj/structure/machinery/door_control{ @@ -52348,10 +42892,7 @@ /turf/open/floor/almayer, /area/almayer/command/computerlab) "nTl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "nTo" = ( /obj/structure/surface/table/reinforced/prison, @@ -52366,9 +42907,7 @@ /obj/item/device/helmet_visor/medical/advanced, /obj/item/device/helmet_visor/medical/advanced, /obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -52396,10 +42935,7 @@ /turf/open/floor/almayer, /area/almayer/command/corporateliaison) "nTZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/living/gym) "nUa" = ( /obj/structure/bed/chair{ @@ -52408,10 +42944,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "nUd" = ( /obj/structure/reagent_dispensers/watertank, @@ -52424,9 +42957,7 @@ pixel_x = 3; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "nUj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -52443,9 +42974,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "nUm" = ( /obj/structure/bed/chair/comfy/beige, @@ -52453,9 +42982,7 @@ pixel_x = 12; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, @@ -52469,22 +42996,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "nUT" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "nVi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "nVm" = ( /obj/structure/machinery/door_control{ @@ -52500,10 +43021,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "nVn" = ( /obj/effect/decal/warning_stripes{ @@ -52521,27 +43039,20 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) "nVE" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "nVF" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "nVQ" = ( /obj/structure/machinery/light, @@ -52563,19 +43074,14 @@ linked_dock = "almayer-lifeboat2"; throw_dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "nWf" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "nWN" = ( /obj/structure/surface/table/almayer, @@ -52585,25 +43091,18 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "nXo" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "nXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south2) "nXO" = ( /obj/structure/surface/table/woodentable/fancy, @@ -52635,28 +43134,20 @@ dir = 4; id = "almayerlink_OT1_req" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "nXV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "nYc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "nYd" = ( /obj/structure/bed/chair/wood/normal{ @@ -52676,15 +43167,11 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "nYi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ @@ -52700,37 +43187,27 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "nYD" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/operating_room_four) "nYE" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/west, /area/almayer/command/lifeboat) "nYR" = ( /obj/structure/sign/safety/cryo{ pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "nZf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/midship_hallway) "nZm" = ( /obj/structure/machinery/door_control{ @@ -52770,10 +43247,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "nZW" = ( /obj/structure/surface/table/almayer, @@ -52785,18 +43259,13 @@ /area/almayer/maint/hull/lower/l_a_s) "oap" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/upper_medical) "oaw" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "oaK" = ( /obj/structure/surface/table/almayer, @@ -52807,10 +43276,7 @@ id = "lower_garbage" }, /obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/maint/hull/lower/l_a_p) "oaP" = ( /obj/structure/machinery/light/small{ @@ -52826,9 +43292,7 @@ /area/almayer/maint/upper/u_a_s) "oaW" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "obo" = ( /obj/structure/disposalpipe/up/almayer{ @@ -52843,24 +43307,17 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "obC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/engineering/port_atmos) "obE" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "obQ" = ( /obj/structure/bed/chair{ @@ -52873,9 +43330,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "ocm" = ( /obj/structure/machinery/status_display{ @@ -52886,10 +43341,7 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "ocB" = ( /obj/effect/decal/warning_stripes{ @@ -52920,24 +43372,18 @@ /obj/structure/machinery/cryopod/right{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_cargo" - }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, /area/almayer/command/airoom) "odb" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "ode" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/s_bow) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -52951,37 +43397,27 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/vehiclehangar) "odu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/command/lifeboat) "odB" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "odD" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "odG" = ( /obj/structure/platform, @@ -52995,9 +43431,7 @@ pixel_x = 12; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, @@ -53013,10 +43447,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/command/lifeboat) "oee" = ( /obj/structure/prop/invuln{ @@ -53026,15 +43457,10 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/almayer/command/lifeboat) "oef" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha_bravo_shared) "oer" = ( /turf/closed/wall/almayer{ @@ -53050,29 +43476,20 @@ "oex" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "oeB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/brig/processing) "oeH" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "oeM" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "oeZ" = ( /turf/closed/wall/almayer/reinforced, @@ -53081,18 +43498,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "ofK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "ofU" = ( /obj/effect/step_trigger/clone_cleaner, @@ -53103,10 +43515,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "ofY" = ( /obj/structure/surface/table/reinforced/almayer_B{ @@ -53143,16 +43552,11 @@ /area/almayer/hallways/upper/midship_hallway) "ohi" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south2) "ohj" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "ohu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ @@ -53163,25 +43567,19 @@ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/p_bow) "ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) "ohB" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "ohE" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -53190,9 +43588,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ohH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ @@ -53200,9 +43596,7 @@ linked_dock = "almayer-lifeboat2"; throw_dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "ohI" = ( /obj/structure/surface/table/almayer, @@ -53236,9 +43630,7 @@ name = "\improper Bathroom" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/captain_mess) "oif" = ( /obj/effect/landmark/yautja_teleport, @@ -53268,10 +43660,7 @@ layer = 3.3; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/port) "oiq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -53279,9 +43668,7 @@ dir = 8; req_one_access = list(2,34,30) }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) "oir" = ( /obj/structure/pipes/vents/pump{ @@ -53297,9 +43684,7 @@ dir = 1 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "oix" = ( /obj/structure/machinery/power/apc/almayer, @@ -53320,18 +43705,13 @@ dir = 1; name = "\improper Warden's Office" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/warden_office) "oiL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -53357,10 +43737,7 @@ pixel_x = 1; pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "ojh" = ( /obj/structure/disposalpipe/junction{ @@ -53374,10 +43751,7 @@ density = 0; pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "ojH" = ( /obj/effect/projector{ @@ -53385,9 +43759,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/upper/starboard) "ojQ" = ( /obj/structure/flora/pottedplant{ @@ -53408,9 +43780,7 @@ "oka" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "okd" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -53418,32 +43788,24 @@ name = "\improper Umbillical Airlock"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "okg" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "okD" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer6" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "okO" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "old" = ( /obj/structure/machinery/light/small, @@ -53452,9 +43814,7 @@ /area/almayer/maint/hull/upper/s_bow) "olF" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/upper/midship_hallway) "olM" = ( /obj/structure/bed/chair{ @@ -53481,10 +43841,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop/hangar) "olO" = ( /obj/structure/closet/secure_closet/personal/cabinet{ @@ -53500,31 +43857,22 @@ /area/almayer/maint/hull/lower/l_m_s) "olU" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/command/cichallway) "olW" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/s_bow) "omb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cichallway) "ome" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "omo" = ( /obj/structure/window/framed/almayer/white, @@ -53546,9 +43894,7 @@ pixel_y = 32 }, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ @@ -53563,10 +43909,7 @@ "omP" = ( /obj/item/tool/mop, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "onn" = ( /obj/structure/machinery/light, @@ -53602,10 +43945,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/upper_medical) "onU" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -53628,9 +43968,7 @@ pixel_x = -8; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "oog" = ( /obj/effect/decal/warning_stripes{ @@ -53658,10 +43996,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "ooA" = ( /obj/structure/disposalpipe/segment, @@ -53672,42 +44007,30 @@ /area/almayer/maint/hull/lower/l_m_s) "opd" = ( /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/port_midship_hallway) "opu" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north2) "opC" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "opD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) "opF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/chief_mp_office) "opH" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "opJ" = ( /obj/docking_port/stationary/emergency_response/external/port4, @@ -53724,17 +44047,12 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "oqc" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -53751,9 +44069,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "oqv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -53770,9 +44086,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "oqI" = ( /obj/structure/closet/firecloset, @@ -53815,9 +44129,7 @@ pixel_x = 4; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "ora" = ( /obj/structure/surface/table/almayer, @@ -53833,10 +44145,7 @@ pixel_x = -7; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "orx" = ( /obj/effect/decal/warning_stripes{ @@ -53847,14 +44156,10 @@ pixel_y = 1 }, /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "orH" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional/southwest, /area/almayer/command/lifeboat) "orN" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -53862,9 +44167,7 @@ name = "ship-grade camera" }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "osc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, @@ -53878,9 +44181,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "osx" = ( /obj/effect/decal/warning_stripes{ @@ -53890,9 +44191,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "osz" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -53907,9 +44206,7 @@ /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "osA" = ( /obj/effect/decal/warning_stripes{ @@ -53923,21 +44220,15 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "osI" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop) "osQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -53953,28 +44244,21 @@ pixel_x = -27 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "osX" = ( /obj/structure/sign/safety/north{ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) "otp" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "otq" = ( /obj/structure/machinery/line_nexter{ @@ -53999,9 +44283,7 @@ /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "ouf" = ( /obj/structure/stairs{ @@ -54013,9 +44295,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/starboard) "oug" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -54025,9 +44305,7 @@ layer = 2.99; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "our" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -54042,9 +44320,7 @@ dir = 8 }, /obj/structure/closet/bombcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -54054,10 +44330,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "ouU" = ( /obj/structure/surface/table/almayer, @@ -54067,9 +44340,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "ouW" = ( /obj/structure/sign/safety/storage{ @@ -54080,20 +44351,14 @@ pixel_x = 8; pixel_y = -26 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/command/cichallway) "ove" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/almayer/maint/lower/constr) "ovi" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/upper_engineering/port) "ovp" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -54101,10 +44366,7 @@ icon_state = "pottedplant_18"; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/briefing) "ovG" = ( /obj/effect/decal/warning_stripes{ @@ -54115,9 +44377,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) "ovQ" = ( /obj/structure/machinery/light{ @@ -54129,9 +44389,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) "owg" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "owU" = ( /obj/structure/machinery/light/small{ @@ -54149,9 +44407,7 @@ req_one_access = null; req_one_access_txt = "19;29" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/sea_office) "oxc" = ( /obj/structure/bed, @@ -54176,17 +44432,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "oxn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "oxu" = ( /obj/structure/sign/safety/galley{ @@ -54214,10 +44466,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "oyC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -54246,31 +44495,23 @@ /area/almayer/maint/hull/upper/u_m_p) "oyR" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "oyX" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "ozq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "ozz" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "ozH" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -54280,9 +44521,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "ozN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ @@ -54290,9 +44529,7 @@ linked_dock = "almayer-lifeboat2"; throw_dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -54307,28 +44544,21 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/almayer/squads/charlie) "oAa" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "oAB" = ( /obj/structure/platform{ dir = 8; layer = 2.7 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional/southwest, /area/almayer/living/briefing) "oAK" = ( /obj/structure/sign/safety/storage{ @@ -54339,9 +44569,7 @@ /area/almayer/maint/hull/upper/u_a_s) "oAO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/north1) "oAT" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -54352,9 +44580,7 @@ /obj/item/clothing/head/soft/ferret{ pixel_x = -7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "oBq" = ( /obj/structure/bed, @@ -54362,10 +44588,7 @@ id = "Cell 1"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/cells) "oBr" = ( /turf/closed/wall/almayer, @@ -54379,20 +44602,14 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "oBD" = ( /obj/structure/pipes/vents/pump/no_boom/gas{ vent_tag = "Access Hall"; dir = 8 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "oCa" = ( /obj/structure/disposalpipe/segment{ @@ -54405,45 +44622,34 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "oCb" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "oCf" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "oCi" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/navigation) "oCl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "oCK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -54451,9 +44657,7 @@ /area/almayer/maint/hull/lower/l_m_s) "oDa" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "oDh" = ( /turf/open/floor/plating/plating_catwalk, @@ -54467,10 +44671,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "oDm" = ( /obj/structure/sign/safety/life_support{ @@ -54480,10 +44681,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) "oDv" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/living/gym) "oDx" = ( /obj/structure/disposalpipe/segment, @@ -54493,9 +44691,7 @@ req_one_access = null; req_one_access_txt = "30;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "oDy" = ( /obj/structure/disposalpipe/segment, @@ -54513,9 +44709,7 @@ /obj/item/reagent_container/spray/cleaner{ pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "oDJ" = ( /obj/effect/decal/cleanable/dirt, @@ -54529,10 +44723,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_medbay) "oDL" = ( /obj/item/device/radio/intercom{ @@ -54541,27 +44732,20 @@ pixel_y = 28 }, /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "oDR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/medical_science) "oDU" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/port_midship_hallway) "oDY" = ( /obj/structure/surface/table/almayer, @@ -54570,9 +44754,7 @@ /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "oEf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -54581,9 +44763,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/north1) "oEn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -54592,10 +44772,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/hallways/upper/midship_hallway) "oEo" = ( /obj/effect/landmark/start/marine/medic/delta, @@ -54650,40 +44827,28 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "oEX" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/living/port_emb) "oFm" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop) "oFn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wirecutters/clippers, /obj/item/restraint/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "oFr" = ( /obj/item/storage/firstaid/regular, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "oFz" = ( /obj/effect/step_trigger/clone_cleaner, @@ -54708,18 +44873,13 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_aft_hallway) "oGi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "oGj" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -54728,18 +44888,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) "oGm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_umbilical) "oGx" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "oGy" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -54749,9 +44904,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "oGC" = ( /obj/effect/decal/cleanable/dirt, @@ -54767,9 +44920,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "oGJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -54783,25 +44934,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "oGP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/living/port_emb) "oGW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) "oGY" = ( /obj/item/device/flashlight/lamp/green{ @@ -54839,40 +44984,28 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "oHf" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "oHg" = ( /obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "oHl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/port) "oHs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "oHt" = ( /obj/structure/disposalpipe/segment{ @@ -54888,9 +45021,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/laundry) "oIa" = ( /obj/effect/decal/warning_stripes{ @@ -54900,15 +45031,10 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/port) "oIh" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "oIn" = ( /obj/effect/landmark/start/liaison, @@ -54934,9 +45060,7 @@ /area/almayer/command/combat_correspondent) "oIY" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "oJj" = ( /obj/structure/machinery/light{ @@ -54951,10 +45075,7 @@ /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop) "oJm" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "oJp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -54971,9 +45092,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/lifeboat_pumps/south2) "oJL" = ( /obj/effect/decal/warning_stripes{ @@ -54987,42 +45106,32 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "oKb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "oKv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "oKx" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "oLf" = ( /obj/structure/sign/safety/security{ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "oLj" = ( /obj/effect/projector{ @@ -55053,32 +45162,22 @@ name = "\improper Brig Lobby"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/lobby) "oLN" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "oLU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/hydroponics) "oMe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "oMi" = ( /obj/structure/machinery/status_display{ @@ -55087,26 +45186,20 @@ /obj/structure/sign/safety/rewire{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "oMs" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 1 }, /obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "oMH" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/alpha_bravo_shared) "oMQ" = ( /obj/structure/pipes/vents/pump, @@ -55118,9 +45211,7 @@ icon_state = "pottedplant_21"; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/ce_room) "oNj" = ( /obj/structure/sign/prop1{ @@ -55131,9 +45222,7 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) "oNp" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "oNJ" = ( /obj/effect/decal/warning_stripes{ @@ -55143,10 +45232,7 @@ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "oNK" = ( /obj/structure/machinery/power/apc/almayer{ @@ -55156,9 +45242,7 @@ /area/almayer/maint/hull/upper/u_a_s) "oNM" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "oNP" = ( /obj/structure/machinery/vending/cola{ @@ -55166,9 +45250,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "oNW" = ( /obj/structure/pipes/vents/scrubber{ @@ -55182,10 +45264,7 @@ pixel_x = -17; pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "oNY" = ( /obj/structure/flora/pottedplant{ @@ -55200,9 +45279,7 @@ "oOp" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "oOw" = ( /obj/effect/step_trigger/clone_cleaner, @@ -55210,29 +45287,21 @@ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "oON" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/starboard) "oOO" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "oOW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -55240,19 +45309,13 @@ dir = 2; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "oOZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/aft_hallway) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -55265,10 +45328,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/command/cichallway) "oPz" = ( /obj/structure/surface/table/almayer, @@ -55288,23 +45348,16 @@ pixel_x = 4; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "oPE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/cic) "oPF" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "oPH" = ( /obj/structure/window/framed/almayer, @@ -55316,48 +45369,34 @@ /turf/open/floor/plating, /area/almayer/living/cryo_cells) "oQn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/port_midship_hallway) "oQs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/book/manual/surgery{ pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "oQw" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/hallways/lower/port_umbilical) "oQH" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/briefing) "oQI" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/port) "oQJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) "oQL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "oQM" = ( /obj/structure/pipes/vents/pump{ @@ -55377,24 +45416,16 @@ pixel_x = 16; pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/auxiliary_officer_office) "oRk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "oRm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "oRy" = ( /obj/structure/sign/safety/autodoc{ @@ -55403,9 +45434,7 @@ }, /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link/green, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "oRJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -55420,17 +45449,13 @@ }, /obj/effect/landmark/map_item, /obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "oRO" = ( /obj/structure/sign/safety/storage{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "oRV" = ( /obj/structure/blocker/invisible_wall, @@ -55445,9 +45470,7 @@ /obj/item/frame/table, /obj/item/frame/table, /obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "oSq" = ( /obj/item/device/radio/intercom{ @@ -55464,17 +45487,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cichallway) "oSx" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "oSC" = ( /obj/structure/disposalpipe/segment, @@ -55489,9 +45507,7 @@ /obj/structure/surface/table/almayer, /obj/item/card/id/visa, /obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "oSL" = ( /obj/structure/window/reinforced{ @@ -55512,9 +45528,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "oSM" = ( /turf/open/floor/almayer, @@ -55526,9 +45540,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "oTe" = ( /obj/item/prop/almayer/box, @@ -55555,27 +45567,21 @@ dir = 8; pixel_x = 17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "oTH" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "oTO" = ( /obj/structure/stairs/perspective{ @@ -55585,10 +45591,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "oUi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -55603,9 +45606,7 @@ /area/almayer/maint/hull/upper/u_f_s) "oUx" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "oUz" = ( /obj/structure/platform{ @@ -55614,28 +45615,20 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/lower/repair_bay) "oUG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "oUZ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, /obj/item/tool/weldingtool, /obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "oVf" = ( /obj/structure/surface/table/almayer, @@ -55650,9 +45643,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "oVk" = ( /obj/structure/stairs{ @@ -55666,14 +45657,10 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) "oVo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "oVY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -55687,9 +45674,7 @@ /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "oWg" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -55704,10 +45689,7 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) "oWq" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -55718,16 +45700,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "oWz" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/starboard_garden) "oWE" = ( /obj/structure/stairs, @@ -55739,9 +45716,7 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "oWF" = ( /obj/effect/step_trigger/clone_cleaner, @@ -55755,18 +45730,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "oWN" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) "oXb" = ( /obj/effect/landmark/start/marine/charlie, @@ -55779,27 +45749,20 @@ /area/almayer/shipboard/brig/cells) "oXJ" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "oXM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "oXY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_medbay) "oYi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -55811,18 +45774,13 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/living/offices/flight) "oYr" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_p) "oYs" = ( /obj/structure/bed/chair{ @@ -55835,9 +45793,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "oYA" = ( /obj/structure/surface/table/almayer, @@ -55854,10 +45810,7 @@ dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/lower/repair_bay) "oYZ" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -55868,9 +45821,7 @@ /obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "oZp" = ( /obj/structure/surface/table/almayer, @@ -55883,10 +45834,7 @@ pixel_x = -9; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/living/offices/flight) "oZx" = ( /obj/effect/step_trigger/clone_cleaner, @@ -55895,9 +45843,7 @@ name = "\improper ARES Reception Shutters"; plane = -7 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "oZy" = ( /obj/effect/decal/warning_stripes{ @@ -55930,18 +45876,13 @@ pixel_x = -11; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "oZI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north2) "oZV" = ( /obj/structure/surface/table/reinforced/prison, @@ -55955,16 +45896,11 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "paa" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/containment) "pas" = ( /obj/structure/machinery/cryopod/right, @@ -55979,9 +45915,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "pax" = ( /obj/effect/step_trigger/clone_cleaner, @@ -55989,32 +45923,24 @@ vent_tag = "Reception"; dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "paI" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "paJ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "paL" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/north, /area/almayer/command/cic) "pbm" = ( /obj/item/bedsheet/brown{ @@ -56041,43 +45967,29 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/mp_bunks) "pbo" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "pbp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "pbs" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "pbV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/command/cic) "pbW" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "pcc" = ( /obj/structure/surface/rack, @@ -56087,9 +45999,7 @@ }, /obj/item/folder/yellow, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "pcf" = ( /obj/item/tool/wet_sign, @@ -56100,15 +46010,10 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/shipboard/brig/cic_hallway) "pcl" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "pcs" = ( /obj/structure/disposalpipe/segment, @@ -56119,10 +46024,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "pcE" = ( /obj/structure/machinery/conveyor{ @@ -56130,9 +46032,7 @@ id = "gym_2"; name = "treadmill" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "pcG" = ( /obj/structure/machinery/door_control{ @@ -56140,19 +46040,14 @@ name = "DCC Privacy Shutters"; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "pcO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/living/grunt_rnr) "pcY" = ( /obj/structure/disposalpipe/segment, @@ -56165,15 +46060,10 @@ /obj/structure/sign/safety/maint{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/north2) "pdp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "pdK" = ( /obj/structure/stairs/perspective{ @@ -56183,20 +46073,14 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "pdT" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) "pek" = ( /turf/closed/wall/almayer, @@ -56206,9 +46090,7 @@ /area/almayer/maint/upper/u_f_p) "peM" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_s) "peO" = ( /obj/structure/sign/safety/medical{ @@ -56219,10 +46101,7 @@ pixel_x = -17; pixel_y = -9 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/lobby) "pfa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -56237,9 +46116,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) "pfd" = ( /obj/structure/window/framed/almayer, @@ -56258,9 +46135,7 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone) "pfD" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -56268,9 +46143,7 @@ /area/almayer/maint/hull/upper/u_f_p) "pfH" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south2) "pfL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -56294,27 +46167,21 @@ /area/almayer/living/briefing) "pfT" = ( /obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "pga" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "pgw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "pgD" = ( /turf/closed/wall/almayer, @@ -56331,9 +46198,7 @@ pixel_x = 10; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "pgN" = ( /obj/structure/pipes/binary/pump/on{ @@ -56347,9 +46212,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "pgP" = ( /obj/structure/disposalpipe/segment{ @@ -56362,36 +46225,28 @@ /area/almayer/shipboard/brig/cells) "pha" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "phd" = ( /obj/structure/sign/poster/safety{ pixel_x = 27 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "phj" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "phw" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/card{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "phN" = ( /obj/structure/disposalpipe/junction{ @@ -56429,10 +46284,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "pje" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -56441,24 +46293,16 @@ /area/almayer/command/computerlab) "pjh" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "pjj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/starboard) "pjw" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_lobby) "pjz" = ( /turf/closed/wall/almayer, @@ -56467,9 +46311,7 @@ /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "pjG" = ( /obj/structure/disposalpipe/segment{ @@ -56478,9 +46320,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/squads/req) "pjP" = ( /obj/structure/machinery/firealarm{ @@ -56499,19 +46339,14 @@ /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) "pkz" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/alpha_bravo_shared) "pkA" = ( /obj/structure/closet/firecloset, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "pkS" = ( /obj/structure/stairs{ @@ -56523,17 +46358,12 @@ vector_x = -102; vector_y = 61 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "pld" = ( /obj/item/book/manual/medical_diagnostics_manual, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/maint/upper/u_a_p) "plv" = ( /turf/open/floor/plating, @@ -56547,19 +46377,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "pmq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/delta) "pmv" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha{ @@ -56569,17 +46394,13 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "pmH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "pmV" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, @@ -56587,9 +46408,7 @@ pixel_y = 16; density = 0 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, +/turf/open/floor/almayer/no_build/ai_floors, /area/almayer/command/airoom) "pnh" = ( /obj/structure/ladder{ @@ -56613,9 +46432,7 @@ /area/almayer/shipboard/brig/cells) "pnC" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "pnL" = ( /obj/structure/machinery/constructable_frame{ @@ -56629,10 +46446,7 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/starboard) "pok" = ( /obj/structure/filingcabinet{ @@ -56645,9 +46459,7 @@ pixel_x = 8; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "poA" = ( /obj/structure/surface/table/almayer, @@ -56655,9 +46467,7 @@ /obj/item/reagent_container/glass/bucket/mopbucket{ pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "poD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -56676,10 +46486,7 @@ /area/almayer/living/auxiliary_officer_office) "ppn" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "ppF" = ( /obj/structure/sign/safety/terminal{ @@ -56698,23 +46505,17 @@ /area/almayer/command/corporateliaison) "ppG" = ( /obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "ppM" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) "ppV" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "pqc" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "pqi" = ( /obj/item/stack/cable_coil, @@ -56727,9 +46528,7 @@ /obj/item/clothing/head/welding, /obj/item/device/reagent_scanner, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "pql" = ( /obj/structure/window/framed/almayer/hull, @@ -56744,10 +46543,7 @@ "pqD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "pqF" = ( /obj/structure/surface/table/almayer, @@ -56760,9 +46556,7 @@ /area/almayer/shipboard/brig/cells) "pqK" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "pqM" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -56770,18 +46564,14 @@ name = "\improper Workshop Vendors" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/repair_bay) "pqP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "pqX" = ( /obj/structure/bed/chair{ @@ -56815,28 +46605,21 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "prx" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "prE" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/kitchen/tray, /obj/item/clothing/suit/chef/classic, /obj/item/clothing/head/chefhat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "prP" = ( /obj/effect/decal/warning_stripes{ @@ -56862,18 +46645,13 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "psk" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "psK" = ( /obj/structure/disposalpipe/segment{ @@ -56890,18 +46668,13 @@ pixel_x = -28; pixel_y = 23 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "psO" = ( /obj/structure/bed/chair/wheelchair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_medbay) "ptf" = ( /obj/structure/window/framed/almayer, @@ -56914,17 +46687,12 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) "ptj" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "ptq" = ( /obj/structure/machinery/light{ @@ -56934,10 +46702,7 @@ pixel_y = 25 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/processing) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -56959,9 +46724,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/starboard) "ptK" = ( /turf/closed/wall/almayer, @@ -56970,9 +46733,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/s_stern) "ptZ" = ( /obj/structure/platform{ @@ -56982,19 +46743,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "pub" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) "pum" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -57014,10 +46769,7 @@ /obj/structure/machinery/status_display{ pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) "puI" = ( /obj/structure/machinery/light{ @@ -57038,10 +46790,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/upper/midship_hallway) "puT" = ( /obj/structure/machinery/light/small{ @@ -57059,10 +46808,7 @@ /turf/open/floor/almayer, /area/almayer/living/port_emb) "pvi" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/aft_hallway) "pvI" = ( /obj/structure/sign/safety/rad_haz{ @@ -57070,17 +46816,13 @@ pixel_y = 32 }, /obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "pvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "pvK" = ( /obj/item/device/radio/intercom{ @@ -57103,15 +46845,10 @@ dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/securestorage) "pvP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/starboard_missiles) "pwl" = ( /obj/structure/sign/safety/bridge{ @@ -57121,19 +46858,13 @@ /obj/structure/sign/safety/west{ pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/hallways/upper/fore_hallway) "pwx" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/starboard_midship_hallway) "pwG" = ( /obj/structure/bed/chair/office/dark{ @@ -57144,17 +46875,13 @@ "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "pxo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "pxD" = ( /obj/structure/machinery/vending/coffee{ @@ -57165,9 +46892,7 @@ pixel_x = -18; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "pxG" = ( /obj/structure/bed/chair/comfy/beige{ @@ -57179,25 +46904,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "pyc" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/living/port_emb) "pyi" = ( /obj/structure/prop/almayer/missile_tube{ icon_state = "missiletubesouth" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_missiles) "pyj" = ( /turf/open/floor/almayer, @@ -57219,10 +46936,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "pyx" = ( /obj/structure/machinery/door_display/research_cell{ @@ -57248,9 +46962,7 @@ /area/almayer/command/corporateliaison) "pyy" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "pyC" = ( /obj/structure/largecrate/random/barrel/red, @@ -57265,9 +46977,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "pyL" = ( /obj/structure/surface/rack, @@ -57276,28 +46986,21 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "pzc" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "pzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "pzj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -57305,44 +47008,28 @@ id = "northcheckpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/lower/starboard_midship_hallway) "pzw" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "pzG" = ( /obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "pzJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "pzM" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "pzV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/almayer/living/briefing) "pzW" = ( /turf/closed/wall/almayer/reinforced, @@ -57379,9 +47066,7 @@ /area/almayer/engineering/lower) "pCr" = ( /obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "pDh" = ( /obj/structure/machinery/power/monitor{ @@ -57397,9 +47082,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/upper_engineering/starboard) "pDo" = ( /obj/effect/decal/warning_stripes{ @@ -57409,10 +47092,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/starboard_point_defense) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -57426,10 +47106,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) "pDB" = ( /obj/structure/disposalpipe/trunk{ @@ -57444,9 +47121,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "pDW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -57456,10 +47131,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/chief_mp_office) "pEl" = ( /obj/structure/disposalpipe/segment{ @@ -57474,10 +47146,7 @@ pixel_x = 8; pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -57500,17 +47169,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "pEY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/south1) "pFq" = ( /obj/structure/surface/table/almayer, @@ -57518,15 +47183,11 @@ /obj/item/device/whistle{ pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "pFr" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "pGh" = ( /obj/effect/decal/cleanable/cobweb{ @@ -57537,9 +47198,7 @@ /area/almayer/maint/hull/upper/u_m_p) "pGj" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "pGE" = ( /obj/structure/surface/table/reinforced/prison, @@ -57556,9 +47215,7 @@ }, /obj/item/device/megaphone, /obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "pGG" = ( /obj/effect/landmark/start/doctor, @@ -57575,9 +47232,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -57585,9 +47240,7 @@ /area/almayer/shipboard/brig/general_equipment) "pHc" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "pHh" = ( /obj/item/device/radio/intercom{ @@ -57598,10 +47251,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "pHp" = ( /turf/open/floor/plating/plating_catwalk, @@ -57616,9 +47266,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "pHF" = ( /obj/structure/disposalpipe/segment{ @@ -57634,9 +47282,7 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/living/basketball) "pId" = ( /obj/item/storage/box/nade_box/tear_gas, @@ -57651,9 +47297,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "pIC" = ( /obj/structure/machinery/door/airlock/almayer/maint, @@ -57662,17 +47306,13 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/constr) "pIU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "pIV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -57685,27 +47325,20 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/north1) "pJq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "pJr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "pJD" = ( /obj/structure/pipes/vents/scrubber{ @@ -57722,9 +47355,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "pJS" = ( /obj/structure/disposalpipe/segment, @@ -57746,17 +47377,13 @@ /obj/item/circuitboard/firealarm, /obj/item/circuitboard, /obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "pKH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "pKL" = ( /obj/effect/decal/cleanable/dirt, @@ -57766,9 +47393,7 @@ /obj/structure/largecrate/random/secure{ pixel_x = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "pKU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -57788,9 +47413,7 @@ id = "DeployWorkR"; name = "\improper Workshop Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/repair_bay) "pKZ" = ( /obj/structure/disposalpipe/segment{ @@ -57800,15 +47423,11 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "pLa" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "pLt" = ( /obj/effect/decal/warning_stripes{ @@ -57819,19 +47438,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "pLE" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -57849,39 +47462,28 @@ /area/almayer/medical/containment/cell) "pLW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/pilotbunks) "pMj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "pMk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "pMp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "pMA" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "pMH" = ( /obj/item/tool/wet_sign, @@ -57903,9 +47505,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/port_emb) "pNa" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -57913,18 +47513,13 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "pNM" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south1) "pNP" = ( /obj/effect/decal/warning_stripes{ @@ -57935,9 +47530,7 @@ pixel_y = 7 }, /mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "pOi" = ( /obj/structure/disposalpipe/segment, @@ -57949,9 +47542,7 @@ name = "ship-grade camera" }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -57959,24 +47550,17 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "pOH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "pON" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/west, /area/almayer/command/cic) "pOW" = ( /obj/structure/disposalpipe/segment{ @@ -57990,9 +47574,7 @@ density = 0; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "pPd" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -58000,9 +47582,7 @@ id = "OuterShutter"; name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "pPv" = ( /obj/structure/closet/cabinet, @@ -58024,9 +47604,7 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /obj/item/reagent_container/food/drinks/bottle/sake, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "pPy" = ( /obj/structure/sign/safety/restrictedarea{ @@ -58048,41 +47626,28 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "pPG" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "pPM" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/securestorage) "pPN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/port_missiles) "pPQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "pQc" = ( /obj/structure/window/framed/almayer, @@ -58090,9 +47655,7 @@ /area/almayer/living/offices) "pQr" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "pQy" = ( /obj/structure/window/framed/almayer, @@ -58106,9 +47669,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/navigation) "pQF" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ @@ -58119,19 +47680,14 @@ vend_y_offset = 0 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "pQI" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/mp_bunks) "pQN" = ( /obj/structure/surface/table/almayer, @@ -58145,14 +47701,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "pQV" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/pilotbunks) "pQY" = ( /obj/structure/disposalpipe/segment{ @@ -58162,35 +47714,27 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "pRn" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "pRs" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) "pRy" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell/cl) "pRO" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/shipboard/brig/cic_hallway) "pRT" = ( /obj/effect/decal/warning_stripes{ @@ -58205,15 +47749,11 @@ dir = 8; name = "\improper Tool Closet" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "pRX" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/medical/hydroponics) "pRZ" = ( /obj/structure/window/framed/almayer, @@ -58229,47 +47769,35 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "pSQ" = ( /obj/structure/reagent_dispensers/fueltank{ anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "pSU" = ( /obj/structure/machinery/light, /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "pTj" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/computerlab) "pTI" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "pTS" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/fore_hallway) "pTX" = ( /obj/structure/largecrate/random/barrel/red, @@ -58277,9 +47805,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "pTY" = ( /obj/structure/mirror{ @@ -58292,15 +47818,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/maint/upper/u_a_s) "pUd" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/command/computerlab) "pUf" = ( /obj/structure/bed/chair{ @@ -58312,10 +47834,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) "pUg" = ( /obj/effect/step_trigger/clone_cleaner, @@ -58340,15 +47859,11 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "pUv" = ( /obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/lower/engine_core) "pUA" = ( /obj/structure/surface/table/almayer, @@ -58359,10 +47874,7 @@ dir = 4 }, /obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/living/briefing) "pUD" = ( /obj/structure/surface/table/almayer, @@ -58370,9 +47882,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/brig/processing) "pVh" = ( /obj/structure/machinery/light/small{ @@ -58393,9 +47903,7 @@ /area/almayer/hallways/lower/starboard_midship_hallway) "pVx" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/req) "pVA" = ( /obj/item/trash/cigbutt/ucigbutt{ @@ -58423,10 +47931,7 @@ /obj/structure/window/reinforced/ultra{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/living/briefing) "pVF" = ( /obj/structure/surface/table/almayer, @@ -58445,9 +47950,7 @@ /area/almayer/squads/delta) "pWd" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "pWr" = ( /obj/structure/surface/rack, @@ -58472,9 +47975,7 @@ /obj/structure/sign/safety/hvac_old{ pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/shipboard/brig/cells) "pWw" = ( /obj/structure/bed/chair, @@ -58482,15 +47983,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "pWN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/pilotbunks) "pXl" = ( /obj/effect/decal/warning_stripes{ @@ -58500,27 +47997,20 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "pXx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "pXV" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "pXZ" = ( /obj/effect/landmark/start/marine/spec/charlie, @@ -58540,19 +48030,13 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/lower/starboard_midship_hallway) "pYo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/containment) "pYu" = ( /obj/item/tool/warning_cone{ @@ -58571,9 +48055,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "pYQ" = ( /obj/effect/decal/warning_stripes{ @@ -58586,16 +48068,10 @@ /obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "pYX" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/shipboard/brig/cic_hallway) "pZH" = ( /obj/structure/machinery/shower{ @@ -58607,25 +48083,17 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) "pZK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/upper_engineering/port) "pZR" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "pZS" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "qam" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -58633,10 +48101,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "qan" = ( /obj/structure/largecrate/random/case/double, @@ -58661,18 +48126,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/vehiclehangar) "qaV" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering) "qaW" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/briefing) "qbw" = ( /turf/open/floor/plating/plating_catwalk, @@ -58691,25 +48151,16 @@ /obj/structure/sign/safety/ladder{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/living/briefing) "qbD" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "qbO" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/living/pilotbunks) "qbP" = ( /obj/effect/decal/cleanable/dirt, @@ -58717,24 +48168,18 @@ pixel_x = 4; pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "qbU" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "qbZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ dir = 1; name = "\improper Engineering Bunks" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "qck" = ( /obj/structure/surface/table/woodentable/fancy, @@ -58748,9 +48193,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "qdk" = ( /obj/structure/surface/table/almayer, @@ -58765,9 +48208,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "qdv" = ( /obj/item/bedsheet/purple{ @@ -58796,10 +48237,7 @@ }, /obj/item/clothing/head/beret/royal_marine, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/living/port_emb) "qdz" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -58807,16 +48245,11 @@ name = "ship-grade camera" }, /obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "qdA" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "qdJ" = ( /obj/structure/disposalpipe/segment{ @@ -58844,16 +48277,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/port) "qej" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/laundry) "qep" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -58866,9 +48294,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "qer" = ( /obj/structure/machinery/cryopod/right{ @@ -58877,18 +48303,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "qeF" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "qeK" = ( /obj/structure/pipes/vents/scrubber, @@ -58902,9 +48324,7 @@ pixel_x = 8; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "qeY" = ( /obj/structure/surface/table/reinforced/prison, @@ -58923,15 +48343,10 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "qfq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_umbilical) "qfy" = ( /obj/effect/decal/warning_stripes{ @@ -58952,15 +48367,10 @@ pixel_x = 4; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/medical_science) "qfA" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/cichallway) "qfD" = ( /obj/structure/bed/chair/office/dark{ @@ -58972,31 +48382,23 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "qfQ" = ( /obj/structure/surface/rack, /obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "qga" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/starboard_garden) "qgn" = ( /obj/item/stool, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "qgr" = ( /obj/item/trash/plate{ @@ -59024,9 +48426,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/combat_correspondent) "qgN" = ( /obj/structure/bed/chair{ @@ -59046,22 +48446,15 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "qhb" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south1) "qhg" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "qhx" = ( /obj/structure/flora/pottedplant{ @@ -59075,10 +48468,7 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) "qhD" = ( /obj/structure/closet{ @@ -59088,9 +48478,7 @@ /obj/item/storage/backpack/marine/grenadepack, /obj/item/storage/backpack/marine/mortarpack, /obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) "qhG" = ( /obj/structure/surface/table/almayer, @@ -59118,9 +48506,7 @@ /turf/open/floor/plating, /area/almayer/maint/lower/constr) "qhT" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59133,9 +48519,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "qid" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -59149,9 +48533,7 @@ /area/almayer/maint/hull/lower/l_a_p) "qig" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "qih" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -59159,18 +48541,14 @@ name = "\improper Tanker Quarters"; req_one_access_txt = "19;27" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/tankerbunks) "qim" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "qit" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -59189,42 +48567,28 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/lighter, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "qjF" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/computerlab) "qjK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/mp_bunks) "qjL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "qjN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "qjY" = ( /obj/structure/machinery/door/window/eastleft{ @@ -59243,9 +48607,7 @@ pixel_y = -8; anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "qjZ" = ( /turf/closed/wall/almayer, @@ -59271,9 +48633,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "qkY" = ( /obj/structure/surface/table/almayer, @@ -59287,9 +48647,7 @@ /obj/item/tool/pen{ pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "qlm" = ( /obj/effect/decal/cleanable/blood/oil, @@ -59310,9 +48668,7 @@ /area/almayer/living/commandbunks) "qlu" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "qlz" = ( /obj/structure/window/framed/almayer, @@ -59333,9 +48689,7 @@ /area/almayer/living/commandbunks) "qlL" = ( /obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/hallways/lower/repair_bay) "qmh" = ( /obj/structure/window/framed/almayer, @@ -59350,10 +48704,7 @@ dir = 4 }, /obj/item/facepaint/green, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/almayer/squads/delta) "qmq" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -59372,9 +48723,7 @@ /obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "qmy" = ( /obj/structure/surface/table/almayer, @@ -59406,10 +48755,7 @@ pixel_y = 4; req_access_txt = "28" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/medical_science) "qmD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59419,18 +48765,13 @@ dir = 4 }, /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "qmK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/fore_hallway) "qmM" = ( /obj/structure/bed/chair{ @@ -59441,9 +48782,7 @@ name = "Saferoom Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, @@ -59455,9 +48794,7 @@ pixel_y = -12 }, /obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/brig/execution) "qmU" = ( /obj/item/vehicle_clamp, @@ -59471,9 +48808,7 @@ /area/almayer/shipboard/brig/armory) "qmW" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) "qmY" = ( /obj/effect/decal/warning_stripes{ @@ -59499,18 +48834,14 @@ /area/almayer/command/cichallway) "qni" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "qnl" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "qnA" = ( /obj/effect/decal/cleanable/blood/drip, @@ -59522,30 +48853,22 @@ /area/almayer/maint/hull/upper/u_m_p) "qnC" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "qnD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Crew Chief's Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "qnH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/upper/midship_hallway) "qnX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south2) "qom" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -59558,18 +48881,14 @@ /obj/structure/sign/safety/coffee{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "qon" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "qoJ" = ( /obj/structure/flora/pottedplant{ @@ -59578,48 +48897,33 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/squads/bravo) "qoL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder/industrial{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "qoM" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "qoN" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "qoR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "qoY" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "qpx" = ( /obj/structure/surface/table/almayer, @@ -59627,16 +48931,12 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "qpQ" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/chemistry) "qpV" = ( /obj/structure/disposalpipe/segment{ @@ -59654,15 +48954,11 @@ pixel_y = 13; dir = 4 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_cargo" - }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, /area/almayer/command/airoom) "qqa" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "qqf" = ( /obj/structure/machinery/light, @@ -59680,21 +48976,14 @@ dir = 8 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "qqu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/command/lifeboat) "qqK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "qqQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ @@ -59709,23 +48998,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) "qqS" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "qra" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "qrc" = ( /obj/structure/flora/pottedplant{ @@ -59734,15 +49015,10 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) "qrv" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "qsp" = ( /obj/structure/machinery/light/small, @@ -59751,10 +49027,7 @@ "qsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) "qsG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -59769,9 +49042,7 @@ /area/almayer/engineering/ce_room) "qtv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59795,10 +49066,7 @@ pixel_x = -6; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/cryo_tubes) "quJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -59808,9 +49076,7 @@ /area/almayer/shipboard/brig/perma) "quS" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "quT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -59821,9 +49087,7 @@ id_tag = "tc02"; name = "\improper Treatment Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "quV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -59833,20 +49097,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "qvh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/hallways/upper/midship_hallway) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ @@ -59868,9 +49126,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "qvF" = ( /obj/effect/decal/warning_stripes{ @@ -59880,9 +49136,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/maint/upper/u_a_s) "qvI" = ( /obj/structure/sign/safety/maint{ @@ -59901,9 +49155,7 @@ /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "qwo" = ( /obj/structure/machinery/washing_machine, @@ -59914,9 +49166,7 @@ /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "qwp" = ( /obj/structure/window/framed/almayer, @@ -59934,9 +49184,7 @@ icon_state = "NE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "qwJ" = ( /obj/effect/projector{ @@ -59960,16 +49208,11 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "qwY" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_s) "qxe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -59986,9 +49229,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "qxm" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60011,9 +49252,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "qxz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -60021,9 +49260,7 @@ name = "\improper Evacuation Airlock PU-5"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "qxC" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -60033,9 +49270,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "qxE" = ( /obj/structure/disposalpipe/segment, @@ -60047,14 +49282,10 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "qxI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "qxJ" = ( /obj/structure/largecrate/random/case/double, @@ -60062,9 +49293,7 @@ /area/almayer/maint/hull/lower/l_m_s) "qxL" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lower_medical_medbay) "qxP" = ( /obj/effect/decal/warning_stripes{ @@ -60075,9 +49304,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) "qxS" = ( /obj/effect/decal/cleanable/dirt, @@ -60093,39 +49320,26 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) "qyo" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/command/cichallway) "qys" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "qyA" = ( /obj/structure/machinery/cm_vending/clothing/intelligence_officer{ density = 0; pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "qyD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "qyG" = ( /obj/structure/sign/safety/hazard{ @@ -60152,17 +49366,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "qyW" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/squads/charlie_delta_shared) "qyX" = ( /obj/structure/disposalpipe/segment{ @@ -60177,9 +49387,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/securestorage) "qzc" = ( /obj/effect/decal/warning_stripes{ @@ -60189,35 +49397,24 @@ /obj/structure/sign/safety/press_area_ag{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_point_defense) "qzA" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "qAs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/workshop) "qAy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "qAA" = ( /obj/structure/machinery/power/monitor{ @@ -60226,27 +49423,20 @@ /obj/structure/sign/safety/commline_connection{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/ce_room) "qAB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "qAG" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "qAK" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -60258,9 +49448,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "qAT" = ( /obj/structure/machinery/light, @@ -60280,24 +49468,18 @@ pixel_x = -16; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "qBl" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "qBq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/commandbunks) "qBM" = ( /obj/item/storage/fancy/crayons{ @@ -60305,10 +49487,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/grunt_rnr) "qBS" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -60318,9 +49497,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ @@ -60365,9 +49542,7 @@ indestructible = 1; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "qCU" = ( /obj/structure/machinery/light{ @@ -60382,10 +49557,7 @@ pixel_x = 32; pixel_y = -22 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/perma) "qDq" = ( /obj/effect/landmark/start/marine/bravo, @@ -60399,33 +49571,24 @@ req_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "qDB" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_p) "qDP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/operating_room_four) "qDS" = ( /obj/item/stack/tile/carpet{ amount = 20 }, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "qEk" = ( /obj/effect/decal/warning_stripes{ @@ -60435,19 +49598,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/command/cic) "qEl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "qEn" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -60462,9 +49619,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "qEy" = ( /obj/structure/disposalpipe/segment, @@ -60488,9 +49643,7 @@ /obj/structure/sign/safety/west{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "qEA" = ( /obj/structure/bed, @@ -60498,10 +49651,7 @@ id = "Cell 4"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/cells) "qEL" = ( /obj/structure/surface/table/almayer, @@ -60512,9 +49662,7 @@ pixel_x = 8; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "qEM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60522,9 +49670,7 @@ name = "\improper South West Ladders Shutters" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "qFi" = ( /obj/structure/bed/chair/comfy/black{ @@ -60550,9 +49696,7 @@ /area/almayer/shipboard/brig/processing) "qFG" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "qFK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60565,9 +49709,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/squads/delta) "qFS" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -60575,35 +49717,26 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "qFX" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/mp_bunks) "qGc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha_bravo_shared) "qGf" = ( /obj/structure/machinery/power/apc/almayer, /obj/structure/sign/safety/rewire{ pixel_y = -38 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/lobby) "qGw" = ( /obj/structure/reagent_dispensers/ammoniatank{ anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "qGC" = ( /obj/structure/machinery/light/small{ @@ -60613,21 +49746,14 @@ /area/almayer/maint/hull/lower/l_a_s) "qGF" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) "qGU" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/south2) "qHg" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/alpha_bravo_shared) "qHq" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -60635,9 +49761,7 @@ name = "\improper Evacuation Airlock SU-6"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "qHD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60653,19 +49777,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "qHM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering) "qHT" = ( /obj/structure/sign/safety/hvac_old{ @@ -60678,9 +49797,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "qIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60698,19 +49815,14 @@ req_one_access = null }, /obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "qIF" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) "qIL" = ( /obj/structure/surface/table/almayer, @@ -60728,18 +49840,14 @@ /obj/item/tool/pen{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "qJf" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/upper_engineering) "qJj" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60756,16 +49864,11 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/perma) "qJx" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "qJy" = ( /obj/structure/pipes/vents/pump, @@ -60777,9 +49880,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) "qJS" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -60787,9 +49888,7 @@ pixel_x = -11; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "qJY" = ( /obj/structure/surface/table/almayer, @@ -60811,9 +49910,7 @@ pixel_x = 5; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/living/port_emb) "qJZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60844,45 +49941,32 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) "qKl" = ( /obj/structure/sign/safety/intercom{ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "qKz" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/securestorage) "qKK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "qKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/port) "qKZ" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -60893,15 +49977,11 @@ /obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "qLg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/port) "qLi" = ( /obj/effect/decal/warning_stripes{ @@ -60915,18 +49995,14 @@ pixel_y = 1 }, /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "qLk" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_p) "qLs" = ( /obj/effect/landmark/start/maint, @@ -60948,10 +50024,7 @@ pixel_x = -4; pixel_y = -4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/shipboard/brig/cells) "qLH" = ( /obj/structure/bed/chair{ @@ -60963,17 +50036,12 @@ /area/almayer/living/port_emb) "qLS" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "qLV" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/computerlab) "qLY" = ( /obj/structure/bed/chair{ @@ -61013,10 +50081,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "qMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61033,19 +50098,14 @@ req_one_access_txt = "90;91;92" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) "qNd" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "qNI" = ( /obj/effect/decal/warning_stripes{ @@ -61066,9 +50126,7 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, @@ -61089,16 +50147,11 @@ id = "medicalemergency"; name = "\improper Medical Bay Lockdown" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "qOk" = ( /obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space/almayer/lifeboat_dock) "qOp" = ( /obj/structure/disposalpipe/junction, @@ -61112,35 +50165,25 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/starboard_fore_hallway) "qOY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_p) "qOZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "qPk" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) "qPn" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_s) "qPD" = ( /turf/open/floor/almayer, @@ -61154,18 +50197,14 @@ pixel_x = -17; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/securestorage) "qPS" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "qPU" = ( /obj/structure/machinery/light, @@ -61176,9 +50215,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/command/lifeboat) "qQc" = ( /obj/structure/closet/secure_closet/personal/patient{ @@ -61187,15 +50224,11 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "qQp" = ( /obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "qQu" = ( /turf/open/floor/almayer, @@ -61215,10 +50248,7 @@ /obj/structure/sign/safety/intercom{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "qQS" = ( /turf/open/floor/almayer/aicore/no_build, @@ -61232,9 +50262,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) "qRj" = ( /obj/structure/disposalpipe/segment{ @@ -61247,10 +50275,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/shipboard/brig/cic_hallway) "qRr" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate, @@ -61261,17 +50286,13 @@ dir = 4 }, /obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "qRX" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "qSm" = ( /obj/structure/pipes/vents/pump{ @@ -61282,17 +50303,13 @@ "qSE" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "qSI" = ( /obj/structure/surface/table/almayer, /obj/item/tank/oxygen/red, /obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "qSK" = ( /obj/item/stack/sheet/metal{ @@ -61310,40 +50327,29 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) "qTi" = ( /obj/structure/closet/crate, /obj/item/ammo_box/magazine/l42a, /obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "qTu" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "qTA" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "qTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/chief_mp_office) "qTS" = ( /obj/effect/decal/warning_stripes{ @@ -61360,15 +50366,11 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "qUp" = ( /obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/powered/agent) "qUq" = ( /obj/structure/window/reinforced{ @@ -61378,16 +50380,11 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) "qUu" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/upper/fore_hallway) "qUx" = ( /obj/effect/decal/warning_stripes{ @@ -61404,15 +50401,10 @@ dir = 8; invisibility = 101 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "qUK" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "qUL" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -61421,9 +50413,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "qUO" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -61441,27 +50431,18 @@ }, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "qVC" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "qVE" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "qVF" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/execution) "qVS" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -61472,9 +50453,7 @@ /obj/structure/sign/safety/conference_room{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "qWt" = ( /obj/structure/disposalpipe/segment{ @@ -61491,15 +50470,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "qWx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "qWI" = ( /obj/structure/machinery/status_display{ @@ -61511,10 +50486,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/hallways/lower/port_midship_hallway) "qWL" = ( /obj/structure/prop/holidays/string_lights{ @@ -61527,10 +50499,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "qWR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ @@ -61538,19 +50507,14 @@ }, /area/almayer/medical/containment/cell/cl) "qXk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "qXo" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/grunt_rnr) "qXp" = ( /obj/structure/surface/table/almayer, @@ -61558,9 +50522,7 @@ /obj/item/device/flashlight/lamp{ pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "qXE" = ( /obj/structure/machinery/brig_cell/perma_1{ @@ -61582,9 +50544,7 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "qXS" = ( /obj/structure/stairs{ @@ -61595,9 +50555,7 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/port) "qXZ" = ( /obj/effect/decal/warning_stripes{ @@ -61611,21 +50569,13 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "qYd" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south2) "qYq" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower/engine_core) "qYr" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -61639,23 +50589,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "qYu" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "qYz" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "qYC" = ( /obj/structure/disposalpipe/down/almayer{ @@ -61665,9 +50609,7 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "qYG" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/command/lifeboat) "qYN" = ( /obj/structure/surface/table/almayer, @@ -61675,10 +50617,7 @@ dir = 1 }, /obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/living/offices/flight) "qYQ" = ( /obj/structure/window/reinforced{ @@ -61689,9 +50628,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "qYZ" = ( /obj/structure/sign/safety/security{ @@ -61713,18 +50650,13 @@ pixel_y = 16 }, /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "qZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/chief_mp_office) "qZF" = ( /obj/structure/surface/table/almayer, @@ -61739,10 +50671,7 @@ pixel_y = -4; req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/perma) "qZH" = ( /obj/structure/surface/table/almayer, @@ -61750,9 +50679,7 @@ pixel_x = 3; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) "qZK" = ( /obj/structure/sign/safety/water{ @@ -61765,17 +50692,13 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "qZX" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "rae" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61785,9 +50708,7 @@ /area/almayer/engineering/lower/engine_core) "raE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "raK" = ( /obj/structure/disposalpipe/segment{ @@ -61796,16 +50717,11 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "raO" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "rbd" = ( /obj/structure/barricade/handrail{ @@ -61815,9 +50731,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/starboard_midship_hallway) "rbp" = ( /obj/structure/disposalpipe/segment, @@ -61837,9 +50751,7 @@ /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) "rbB" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/command/computerlab) "rbF" = ( /obj/effect/landmark/late_join, @@ -61857,10 +50769,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "rbK" = ( /obj/structure/bed/chair/wood/normal{ @@ -61870,9 +50779,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/execution) "rbY" = ( /obj/structure/window/framed/almayer, @@ -61890,10 +50797,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "rcG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61906,10 +50810,7 @@ /obj/structure/machinery/computer/cryopod/eng{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) "rde" = ( /obj/structure/sign/prop1, @@ -61946,9 +50847,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "rdA" = ( /obj/structure/sign/safety/maint{ @@ -61963,10 +50862,7 @@ "rdI" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering) "rdM" = ( /obj/structure/machinery/vending/snack, @@ -61976,9 +50872,7 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "rdN" = ( /obj/structure/machinery/light/small{ @@ -61995,16 +50889,11 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "rdT" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "rdZ" = ( /turf/open/floor/plating, @@ -62014,9 +50903,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "ren" = ( /obj/structure/machinery/light{ @@ -62025,9 +50912,7 @@ /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "reu" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -62039,10 +50924,7 @@ pixel_x = -10; pixel_y = 31 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/squads/req) "reL" = ( /obj/structure/surface/table/almayer, @@ -62053,9 +50935,7 @@ pixel_y = 4 }, /obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "reM" = ( /obj/structure/machinery/power/smes/buildable, @@ -62066,21 +50946,15 @@ /obj/structure/sign/safety/high_voltage{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/maint/upper/mess) "reN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "rfa" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "rfb" = ( /turf/closed/wall/almayer/research/containment/wall/purple{ @@ -62101,9 +50975,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "rfT" = ( /obj/item/frame/camera{ @@ -62121,9 +50993,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "rfY" = ( /obj/structure/machinery/cryopod, @@ -62131,17 +51001,13 @@ dir = 8; invisibility = 101 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) "rgk" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "rgt" = ( /turf/closed/wall/almayer, @@ -62166,10 +51032,7 @@ pixel_x = -14; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/auxiliary_officer_office) "rgL" = ( /turf/open/floor/plating, @@ -62182,9 +51045,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) "rgW" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner, /area/almayer/living/briefing) "rhm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -62194,16 +51055,11 @@ /area/almayer/maint/hull/upper/u_f_s) "rho" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/upper/midship_hallway) "rht" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "rhy" = ( /obj/structure/surface/table/almayer, @@ -62215,23 +51071,17 @@ pixel_x = -2; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "rhD" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "rhO" = ( /obj/structure/machinery/vending/cola/research{ pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "rhQ" = ( /obj/structure/bed/chair{ @@ -62245,9 +51095,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "rir" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced, @@ -62256,9 +51104,7 @@ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/s_bow) "riB" = ( /obj/structure/largecrate/random/case/small, @@ -62279,10 +51125,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "riE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -62291,46 +51134,31 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/medical_science) "riJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "riP" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/rewire{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "riT" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "rjn" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "rjr" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/almayer/hallways/upper/midship_hallway) "rjF" = ( /obj/structure/disposalpipe/segment{ @@ -62339,25 +51167,18 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "rjG" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "rjO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "rjV" = ( /obj/structure/surface/table/almayer, @@ -62392,19 +51213,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/living/port_emb) "rjX" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "rka" = ( /obj/structure/surface/table/almayer, @@ -62414,9 +51230,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "rkz" = ( /obj/structure/pipes/vents/scrubber, @@ -62442,25 +51256,18 @@ "rlc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/engine_core) "rlf" = ( /obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "rlh" = ( /obj/structure/closet/firecloset, /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "rll" = ( /obj/structure/machinery/light, @@ -62471,29 +51278,19 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "rlD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/lower/repair_bay) "rlQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "rlZ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "rmc" = ( /obj/structure/disposalpipe/segment{ @@ -62502,27 +51299,19 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) "rmf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/upper_engineering/starboard) "rmk" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "rmo" = ( /obj/structure/pipes/standard/cap/hidden{ @@ -62532,17 +51321,13 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "rmx" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "rmz" = ( /obj/structure/sign/safety/conference_room{ @@ -62553,9 +51338,7 @@ /area/almayer/hallways/lower/starboard_fore_hallway) "rmD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "rmE" = ( /obj/structure/machinery/light/small{ @@ -62564,9 +51347,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "rmG" = ( /obj/structure/blocker/fuelpump, @@ -62587,9 +51368,7 @@ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop) "rnH" = ( /obj/effect/decal/warning_stripes{ @@ -62606,20 +51385,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "rnN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -62627,9 +51400,7 @@ /area/almayer/engineering/upper_engineering/starboard) "roj" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "rou" = ( /obj/structure/machinery/cryopod/right{ @@ -62638,17 +51409,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "roH" = ( /obj/effect/step_trigger/ares_alert/terminals, @@ -62660,9 +51427,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "roU" = ( /obj/structure/disposalpipe/segment{ @@ -62679,36 +51444,26 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_s) "rpK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "rpV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/midship_hallway) "rqb" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "rqj" = ( /obj/structure/sign/safety/maint{ @@ -62756,9 +51511,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "rqQ" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -62778,18 +51531,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/evidence_storage) "rrh" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Under Construction Shutters"; name = "\improper Construction Site" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/constr) "rrq" = ( /obj/structure/disposalpipe/segment{ @@ -62798,10 +51547,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "rrz" = ( /obj/structure/sign/safety/four{ @@ -62817,9 +51563,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "rrK" = ( /obj/structure/bed/chair{ @@ -62861,9 +51605,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_aft_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ @@ -62895,9 +51637,7 @@ pixel_x = -25; req_one_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "rsV" = ( /obj/structure/machinery/light, @@ -62916,9 +51656,7 @@ /obj/item/device/camera_film{ pixel_x = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -62961,9 +51699,7 @@ "rub" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "ruc" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ @@ -62972,9 +51708,7 @@ /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/almayer/medical/containment/cell) "rui" = ( /obj/structure/disposalpipe/junction{ @@ -62997,24 +51731,17 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "rux" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/hangar) "ruz" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, @@ -63029,15 +51756,11 @@ name = "ship-grade camera" }, /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "rvT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "rwe" = ( /obj/structure/machinery/light/small{ @@ -63049,10 +51772,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) "rwj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_midship_hallway) "rwq" = ( /obj/structure/sign/safety/cryo{ @@ -63068,9 +51788,7 @@ "rwv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "rwB" = ( /obj/structure/machinery/alarm/almayer{ @@ -63096,9 +51814,7 @@ "rxe" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "rxl" = ( /obj/effect/step_trigger/clone_cleaner, @@ -63127,9 +51843,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -63147,29 +51861,21 @@ /area/almayer/command/securestorage) "ryt" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "ryG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "ryJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_p) "ryR" = ( /obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "ryY" = ( /obj/effect/step_trigger/clone_cleaner, @@ -63184,9 +51890,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "rzy" = ( /obj/structure/disposalpipe/junction, @@ -63194,14 +51898,10 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) "rzN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "rAb" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/living/briefing) "rAo" = ( /obj/structure/disposalpipe/segment, @@ -63232,9 +51932,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "rAC" = ( /obj/docking_port/stationary/emergency_response/external/port5, @@ -63248,24 +51946,17 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) "rAN" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "rAP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "rAS" = ( /obj/structure/largecrate/random/case/double, @@ -63276,9 +51967,7 @@ /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "rBb" = ( /obj/effect/decal/warning_stripes{ @@ -63296,9 +51985,7 @@ /area/almayer/living/grunt_rnr) "rBv" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "rBx" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -63307,15 +51994,11 @@ pixel_x = -7; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "rBD" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_m_p) "rBY" = ( /obj/structure/machinery/shower{ @@ -63329,19 +52012,14 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "rCl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/port) "rCD" = ( /obj/structure/machinery/light/small{ @@ -63350,16 +52028,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "rCK" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "rCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -63396,10 +52069,7 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/squads/req) "rDf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -63407,19 +52077,14 @@ /area/almayer/hallways/lower/starboard_umbilical) "rDr" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/medical_science) "rDt" = ( /obj/structure/disposalpipe/junction{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "rDv" = ( /obj/effect/decal/warning_stripes{ @@ -63429,17 +52094,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "rDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "rDH" = ( /obj/structure/machinery/light, @@ -63455,9 +52116,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "rDQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/cryo) "rDR" = ( /obj/structure/machinery/vending/coffee, @@ -63483,9 +52142,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "rEf" = ( /obj/structure/disposalpipe/segment{ @@ -63507,15 +52164,11 @@ /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer3" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "rEt" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_f_s) "rEv" = ( /obj/effect/decal/warning_stripes{ @@ -63526,9 +52179,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "rEK" = ( /obj/structure/disposalpipe/segment{ @@ -63548,19 +52199,14 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "rFg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/chief_mp_office) "rFs" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -63569,15 +52215,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "rFy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/upper_engineering/starboard) "rFH" = ( /obj/structure/machinery/body_scanconsole, @@ -63587,15 +52228,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) "rGj" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "rGr" = ( /obj/effect/decal/warning_stripes{ @@ -63605,9 +52241,7 @@ /area/almayer/maint/hull/upper/s_bow) "rGz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "rGE" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -63629,18 +52263,13 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "rGL" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ @@ -63655,9 +52284,7 @@ "rHf" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "rHo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -63674,9 +52301,7 @@ id_tag = "tc01"; name = "\improper Treatment Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "rHq" = ( /obj/structure/sign/safety/storage{ @@ -63687,9 +52312,7 @@ /area/almayer/maint/hull/lower/l_m_s) "rHr" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/starboard_aft_hallway) "rHw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -63698,9 +52321,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "rHB" = ( /obj/item/ammo_box/magazine/misc/mre/empty{ @@ -63741,19 +52362,14 @@ pixel_y = -23; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "rIw" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/s_bow) "rID" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/port) "rIH" = ( /obj/structure/disposalpipe/segment{ @@ -63768,18 +52384,13 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "rIP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/starboard_midship_hallway) "rIV" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -63789,22 +52400,16 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "rIW" = ( /obj/structure/machinery/cm_vending/gear/synth, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "rJf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_p) "rJh" = ( /obj/item/storage/backpack/marine/satchel{ @@ -63823,35 +52428,24 @@ pixel_x = 5; pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/port) "rJj" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "rJu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/living/briefing) "rJx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie_delta_shared) "rJD" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -63865,9 +52459,7 @@ /turf/open/floor/almayer, /area/almayer/living/briefing) "rKd" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, +/turf/open/floor/almayer/uscm/directional/northeast, /area/almayer/command/cic) "rKn" = ( /obj/structure/machinery/door_control{ @@ -63878,19 +52470,14 @@ req_one_access_txt = "201"; use_power = 0 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/powered/agent) "rKt" = ( /obj/structure/sign/safety/rewire{ pixel_x = 32 }, /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/port_aft_hallway) "rKA" = ( /obj/structure/bed{ @@ -63899,9 +52486,7 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "rKO" = ( /obj/structure/disposalpipe/segment{ @@ -63914,14 +52499,10 @@ /area/almayer/living/grunt_rnr) "rKQ" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "rLk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -63946,18 +52527,14 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "rLK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/sign/safety/hvac_old{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "rLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -63967,35 +52544,24 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "rLU" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell/cl) "rMh" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "rMj" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "rMO" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/s_bow) "rMT" = ( /obj/structure/bed/chair/office/dark{ @@ -64048,58 +52614,44 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "rNK" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "rOc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "rOs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard, /obj/item/device/binoculars, /obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "rOv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "rOz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; layer = 3.3 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "rOC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "rOI" = ( /obj/structure/pipes/vents/pump{ @@ -64111,17 +52663,13 @@ "rOJ" = ( /obj/structure/barricade/handrail, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "rPq" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "rPt" = ( /turf/open/floor/wood/ship, @@ -64131,20 +52679,13 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "rPF" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "rPO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/squads/delta) "rPQ" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -64154,9 +52695,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower) "rQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -64171,9 +52710,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -64191,19 +52728,13 @@ icon_state = "SE-out"; pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) "rQA" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/delta) "rQV" = ( /obj/structure/disposalpipe/segment{ @@ -64216,34 +52747,24 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "rQW" = ( /obj/item/tool/screwdriver, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) "rRz" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) "rRT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/upper/midship_hallway) "rRU" = ( /obj/structure/machinery/light{ @@ -64271,17 +52792,13 @@ pixel_x = 7; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "rSj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/squads/alpha_bravo_shared) "rSx" = ( /obj/structure/surface/table/almayer, @@ -64303,9 +52820,7 @@ name = "\improper South West Ladders Shutters" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "rSG" = ( /obj/structure/toilet{ @@ -64337,9 +52852,7 @@ /area/almayer/maint/lower/cryo_cells) "rSW" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -64351,38 +52864,26 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "rTJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "rTZ" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) "rUh" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/squads/charlie) "rUi" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ @@ -64399,9 +52900,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "rUN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -64413,41 +52912,30 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "rVt" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "rVC" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "rVN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/port_missiles) "rWb" = ( /obj/item/tool/minihoe{ pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "rWn" = ( /obj/structure/window/framed/almayer, @@ -64481,18 +52969,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "rWz" = ( /turf/open/floor/plating, /area/almayer/maint/upper/u_m_s) "rWL" = ( /obj/structure/barricade/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "rWT" = ( /obj/structure/disposalpipe/segment, @@ -64503,9 +52987,7 @@ /area/almayer/living/briefing) "rXd" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -64520,24 +53002,18 @@ /obj/structure/barricade/plasteel/metal{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "rXq" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_p) "rXv" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/gym) "rXE" = ( /obj/effect/decal/warning_stripes{ @@ -64562,23 +53038,17 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) "rXH" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "rXQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "rXS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -64588,17 +53058,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) "rXU" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_f_s) "rYh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -64611,16 +53077,12 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "rYp" = ( /obj/effect/landmark/start/marine/medic/delta, /obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "rYv" = ( /obj/structure/surface/table/almayer, @@ -64630,9 +53092,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "rYI" = ( /obj/structure/disposalpipe/segment{ @@ -64641,22 +53101,16 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "rYJ" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) "rYU" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "rZt" = ( /obj/effect/decal/warning_stripes{ @@ -64673,25 +53127,19 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "rZB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) "rZP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "rZZ" = ( /obj/structure/sign/poster{ @@ -64712,26 +53160,20 @@ "sai" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) "saL" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ name = "Corporate Liaison's Closet" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "sbq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "n_engi" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/notunnel) "sbt" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -64743,9 +53185,7 @@ id = "safe_armory"; name = "\improper Hangar Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "sbE" = ( /obj/structure/sign/safety/medical{ @@ -64781,9 +53221,7 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "sco" = ( /obj/structure/sign/prop1{ @@ -64804,9 +53242,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "scu" = ( /obj/structure/stairs/perspective{ @@ -64823,17 +53259,13 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "scz" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer5" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "scE" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -64843,10 +53275,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "scH" = ( /obj/effect/decal/warning_stripes{ @@ -64859,9 +53288,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "scX" = ( /obj/structure/surface/table/almayer, @@ -64874,9 +53301,7 @@ /area/almayer/maint/hull/lower/l_m_s) "sdd" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "sdf" = ( /obj/effect/step_trigger/clone_cleaner, @@ -64884,9 +53309,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "sdn" = ( /obj/structure/sink{ @@ -64896,43 +53319,31 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, +/turf/open/floor/almayer/sterile, /area/almayer/medical/upper_medical) "sdu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/medical_science) "sdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/starboard) "sdC" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "sdO" = ( /obj/structure/ladder{ height = 1; id = "med1" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "seL" = ( /obj/structure/pipes/vents/pump{ @@ -64942,10 +53353,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "sfz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/upper/midship_hallway) "sfA" = ( /obj/structure/machinery/fuelpump, @@ -64973,9 +53381,7 @@ /obj/structure/sign/safety/storage{ pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "sgi" = ( /turf/closed/wall/almayer, @@ -64992,9 +53398,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "sgm" = ( /obj/structure/surface/table/almayer, @@ -65017,9 +53421,7 @@ pixel_x = -7; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "sgs" = ( /obj/effect/decal/warning_stripes{ @@ -65033,18 +53435,13 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "sgD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "sgE" = ( /obj/structure/bed, @@ -65052,10 +53449,7 @@ id = "Cell 3"; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/cells) "sgH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -65069,9 +53463,7 @@ id = "southcheckpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/lower/port_midship_hallway) "sgR" = ( /obj/structure/surface/table/almayer, @@ -65079,9 +53471,7 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "sgU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65111,9 +53501,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/west, /area/almayer/living/briefing) "shs" = ( /obj/structure/platform{ @@ -65126,19 +53514,14 @@ dir = 9; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south2) "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) "shC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/midship_hallway) "shL" = ( /obj/structure/surface/table/almayer, @@ -65147,14 +53530,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "sin" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/almayer/hallways/upper/midship_hallway) "sir" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -65166,9 +53545,7 @@ id = "panicroomback"; name = "\improper Safe Room Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "sit" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65181,10 +53558,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/hallways/lower/port_midship_hallway) "siz" = ( /obj/structure/surface/table/almayer, @@ -65198,15 +53572,10 @@ pixel_y = 12; shuttleId = "dropship_alamo" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "siC" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/lower/port_fore_hallway) "siN" = ( /obj/structure/machinery/light{ @@ -65219,17 +53588,13 @@ name = "Lower Nitrogen Control Console" }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "siT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "siW" = ( /obj/structure/machinery/body_scanconsole, @@ -65239,9 +53604,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "sje" = ( /turf/open/floor/almayer/empty/vehicle_bay, @@ -65260,10 +53623,7 @@ pixel_x = 15; pixel_y = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/ce_room) "sjr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ @@ -65271,28 +53631,21 @@ linked_dock = "almayer-lifeboat1"; throw_dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/lifeboat) "sjz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "sjG" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "sjM" = ( /obj/effect/landmark/start/reporter, @@ -65309,28 +53662,20 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "skn" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/sea_office) "skC" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 }, /obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "skF" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) "skL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65364,9 +53709,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lower_medical_lobby) "slf" = ( /obj/structure/machinery/brig_cell/cell_6{ @@ -65393,20 +53736,13 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "slF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/processing) "smi" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "smw" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -65424,9 +53760,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "smA" = ( /obj/item/trash/cigbutt{ @@ -65438,9 +53772,7 @@ pixel_x = -16; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "smH" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -65450,15 +53782,10 @@ req_one_access = null; req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "smU" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/panic) "smW" = ( /obj/effect/decal/warning_stripes{ @@ -65477,16 +53804,11 @@ /turf/open/floor/plating/almayer, /area/almayer/living/briefing) "sni" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/command/cic) "snt" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "snw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -65496,9 +53818,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "snx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -65514,9 +53834,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "snI" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -65535,9 +53853,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "snM" = ( /obj/structure/disposalpipe/segment{ @@ -65547,47 +53863,32 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) "snN" = ( /obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "snR" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "snX" = ( /obj/structure/sign/safety/medical{ pixel_x = 16; pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/brig/processing) "soq" = ( /obj/structure/machinery/computer/working_joe{ dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "sov" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/engine_core) "soA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65601,10 +53902,7 @@ /obj/item/storage/firstaid/rad/empty, /obj/item/storage/firstaid/toxin/empty, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_medbay) "soP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -65619,24 +53917,18 @@ pixel_x = 16; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "soX" = ( /obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "spd" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "spF" = ( /obj/structure/surface/table/almayer, @@ -65650,27 +53942,20 @@ /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "spK" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "spS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/almayer/squads/charlie) "spT" = ( /obj/structure/closet/crate{ @@ -65689,9 +53974,7 @@ /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "sqa" = ( /obj/effect/decal/warning_stripes{ @@ -65699,9 +53982,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "sqf" = ( /turf/closed/wall/almayer/white/reinforced, @@ -65713,41 +53994,29 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "sqo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) "sqW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/tomatoseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/shipboard/brig/cells) "srh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "srl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "srO" = ( /obj/structure/disposalpipe/segment, @@ -65763,9 +54032,7 @@ vector_y = 100 }, /obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) "srT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -65774,9 +54041,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "Evidence Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/evidence_storage) "ssk" = ( /obj/structure/surface/rack, @@ -65796,24 +54061,18 @@ pixel_x = 3; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "ssU" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/starboard) "ssW" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "ssX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65840,15 +54099,11 @@ /obj/structure/catwalk{ health = null }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "stu" = ( /obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "stO" = ( /obj/structure/surface/table/almayer, @@ -65857,15 +54112,11 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/perma) "stP" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "stR" = ( /obj/structure/disposalpipe/segment{ @@ -65876,9 +54127,7 @@ /area/almayer/hallways/lower/starboard_midship_hallway) "sub" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/vehiclehangar) "suy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65894,9 +54143,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_midship_hallway) "suJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -65905,9 +54152,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "suU" = ( /obj/structure/stairs, @@ -65917,16 +54162,11 @@ vector_y = 98 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "suY" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "svf" = ( /obj/structure/machinery/light{ @@ -65938,9 +54178,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "svq" = ( /obj/structure/bed/chair{ @@ -65950,10 +54188,7 @@ /area/almayer/maint/upper/u_m_s) "svt" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/hallways/lower/port_midship_hallway) "svw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -65970,22 +54205,16 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "swn" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "swt" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/almayer/living/grunt_rnr) "swx" = ( /obj/effect/projector{ @@ -66004,16 +54233,11 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/living/grunt_rnr) "swG" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "swH" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -66029,35 +54253,26 @@ }, /obj/item/device/flashlight/lamp, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "swM" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "swN" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering) "sxD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Officer's Bunk" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "sxE" = ( /obj/effect/decal/warning_stripes{ @@ -66067,10 +54282,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/hallways/upper/port) "sxS" = ( /obj/structure/largecrate/random/secure, @@ -66083,9 +54295,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) "syg" = ( /obj/structure/disposalpipe/segment{ @@ -66101,9 +54311,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/navigation) "syj" = ( /obj/structure/sign/safety/escapepod{ @@ -66112,10 +54320,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) "syp" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/maint/upper/u_m_p) "syH" = ( /obj/structure/machinery/firealarm{ @@ -66150,9 +54355,7 @@ pixel_y = 1 }, /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/offices) "szG" = ( /obj/item/stack/sheet/glass/reinforced{ @@ -66175,19 +54378,14 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/almayer/squads/charlie) "szO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "szU" = ( /obj/structure/toilet{ @@ -66200,9 +54398,7 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "sAw" = ( /obj/structure/disposalpipe/segment, @@ -66215,15 +54411,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/starboard) "sAC" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/ce_room) "sAD" = ( /obj/structure/disposalpipe/segment{ @@ -66246,9 +54437,7 @@ "sBL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "sBQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ @@ -66258,31 +54447,22 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "sBY" = ( /obj/item/tool/wet_sign, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "sCg" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) "sCA" = ( /obj/structure/bed/chair/comfy/delta{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "sCD" = ( /obj/effect/decal/warning_stripes{ @@ -66294,30 +54474,21 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "sCI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/living/pilotbunks) "sCQ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "sCT" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_f_s) "sCV" = ( /obj/effect/decal/warning_stripes{ @@ -66327,10 +54498,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "sCW" = ( /obj/effect/decal/cleanable/cobweb, @@ -66339,9 +54507,7 @@ /area/almayer/maint/lower/constr) "sDu" = ( /obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "sDx" = ( /turf/closed/wall/almayer, @@ -66351,40 +54517,28 @@ /obj/structure/bed/chair/comfy/charlie{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "sDD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "sDM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/squads/delta) "sEd" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "sEg" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "sEi" = ( /obj/structure/bed/chair{ @@ -66403,10 +54557,7 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/living/grunt_rnr) "sEp" = ( /obj/structure/disposalpipe/segment{ @@ -66421,9 +54572,7 @@ /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "sEq" = ( /obj/structure/machinery/light{ @@ -66434,10 +54583,7 @@ "sEt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/hallways/hangar) "sEu" = ( /obj/structure/disposalpipe/segment{ @@ -66447,9 +54593,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) "sEz" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/starboard_hallway) "sEK" = ( /obj/effect/decal/warning_stripes{ @@ -66472,18 +54616,14 @@ pixel_x = -17 }, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "sER" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "sEZ" = ( /obj/structure/reagent_dispensers/peppertank{ @@ -66497,14 +54637,10 @@ icon_state = "W"; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/armory) "sFf" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/starboard_missiles) "sFu" = ( /obj/structure/surface/table/almayer, @@ -66512,10 +54648,7 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/starboard_hallway) "sGh" = ( /turf/open/floor/almayer/uscm/directional, @@ -66538,15 +54671,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "sGQ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "sGU" = ( /obj/structure/mirror, @@ -66554,9 +54683,7 @@ /area/almayer/living/gym) "sGZ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/airoom) "sHe" = ( /obj/structure/largecrate/supply/supplies/tables_racks, @@ -66589,39 +54716,26 @@ /area/almayer/lifeboat_pumps/north1) "sHx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/workshop) "sHC" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/upper/fore_hallway) "sHI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "sHM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/pilotbunks) "sHY" = ( /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "sIr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -66646,10 +54760,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/engineering/port_atmos) "sII" = ( /obj/effect/step_trigger/clone_cleaner, @@ -66658,23 +54769,17 @@ name = "\improper ARES Reception Stairway Shutters"; plane = -7 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "sIR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "sIU" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "sJa" = ( /obj/structure/sign/safety/cryo{ @@ -66687,9 +54792,7 @@ /obj/item/trash/USCMtray{ pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "sJI" = ( /obj/structure/closet/crate, @@ -66715,41 +54818,28 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "sJY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/living/port_emb) "sKa" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/morgue) "sKf" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "sKM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "sKY" = ( /obj/structure/bed/chair/office/dark{ @@ -66780,9 +54870,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "sLA" = ( /obj/structure/disposalpipe/segment{ @@ -66792,19 +54880,14 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "sLX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/almayer/hallways/lower/port_midship_hallway) "sMu" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "sMM" = ( /obj/structure/cable/heavyduty{ @@ -66820,33 +54903,24 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "sNz" = ( /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/almayer/medical/containment/cell) "sNI" = ( /obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "sNL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/lower/starboard_midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ @@ -66860,9 +54934,7 @@ /area/almayer/living/basketball) "sNP" = ( /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, @@ -66873,9 +54945,7 @@ id = "bot_armory"; name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "sOr" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -66889,19 +54959,14 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_s) "sOt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "sOv" = ( /obj/structure/bed/chair/office/dark{ @@ -66914,17 +54979,12 @@ /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "sOw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/basketball) "sOx" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering) "sOy" = ( /obj/structure/stairs/perspective{ @@ -66955,19 +55015,14 @@ dir = 1 }, /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/maint/upper/mess) "sOZ" = ( /obj/structure/sign/safety/ammunition{ pixel_y = 32 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "sPa" = ( /obj/structure/surface/rack, @@ -66976,18 +55031,13 @@ /obj/item/ammo_box/magazine/l42a{ pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "sPb" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "sPc" = ( /obj/structure/machinery/light{ @@ -66997,9 +55047,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "sPF" = ( /obj/structure/bed/chair{ @@ -67014,9 +55062,7 @@ pixel_x = 24 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "sPY" = ( /obj/structure/disposalpipe/segment{ @@ -67028,15 +55074,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "sQF" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/port_missiles) "sQO" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "sRZ" = ( /obj/effect/projector{ @@ -67044,10 +55086,7 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/upper/fore_hallway) "sSa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -67060,36 +55099,24 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "sSc" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/shipboard/weapon_room) "sSj" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/north1) "sSl" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "sSC" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/squads/delta) "sSG" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -67111,15 +55138,10 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "sTd" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "sTm" = ( /obj/structure/surface/table/reinforced/black, @@ -67129,10 +55151,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) "sTw" = ( /obj/structure/platform_decoration{ @@ -67160,15 +55179,11 @@ icon_state = "pottedplant_21"; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/shipboard/brig/cic_hallway) "sUi" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_p) "sUj" = ( /obj/effect/decal/warning_stripes{ @@ -67176,9 +55191,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/squads/delta) "sUk" = ( /obj/structure/disposalpipe/segment{ @@ -67201,9 +55214,7 @@ /area/almayer/shipboard/brig/cells) "sUE" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "sUO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -67216,9 +55227,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "sUS" = ( /obj/structure/disposalpipe/junction{ @@ -67231,17 +55240,11 @@ "sVc" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/orangeseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/shipboard/brig/cells) "sVv" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/aft_hallway) "sVT" = ( /obj/structure/surface/table/almayer, @@ -67256,9 +55259,7 @@ /obj/item/storage/toolbox/electrical{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "sVV" = ( /turf/open/floor/almayer, @@ -67269,9 +55270,7 @@ vector_x = 1; vector_y = -100 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/upper/fore_hallway) "sWp" = ( /obj/structure/machinery/light/small{ @@ -67282,9 +55281,7 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "sWw" = ( /obj/structure/largecrate/random/case/double, @@ -67301,9 +55298,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "sWW" = ( /obj/structure/machinery/flasher{ @@ -67317,17 +55312,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "sXd" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/containment) "sXq" = ( /obj/structure/sign/safety/storage{ @@ -67340,10 +55331,7 @@ density = 0; pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "sXw" = ( /obj/effect/landmark/start/marine/engineer/bravo, @@ -67359,26 +55347,19 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "sXC" = ( /obj/structure/sign/safety/storage{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "sXE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Auxiliary Support Officer's Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/auxiliary_officer_office) "sXQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -67386,25 +55367,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/shipboard/brig/cells) "sYh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "sYl" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/shipboard/brig/medical) "sYr" = ( /obj/structure/machinery/door/airlock/almayer/maint, @@ -67414,9 +55386,7 @@ name = "\improper Hangar Lockdown Blast Door" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "sYw" = ( /obj/structure/platform{ @@ -67427,10 +55397,7 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/south2) "sYD" = ( /obj/structure/machinery/status_display{ @@ -67440,15 +55407,11 @@ /obj/structure/sign/safety/debark_lounge{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "sYP" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "sYT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -67466,10 +55429,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/upper/midship_hallway) "sZc" = ( /obj/structure/disposalpipe/segment{ @@ -67479,18 +55439,14 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) "sZe" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_aft_hallway) "sZq" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "sZs" = ( /obj/structure/machinery/light, @@ -67498,9 +55454,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "sZy" = ( /obj/effect/decal/warning_stripes{ @@ -67511,10 +55465,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) "sZH" = ( /obj/structure/surface/table/almayer, @@ -67538,10 +55489,7 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/living/port_emb) "sZY" = ( /obj/structure/blocker/fuelpump, @@ -67561,9 +55509,7 @@ /obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "tan" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -67593,9 +55539,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "taw" = ( /turf/closed/wall/almayer, @@ -67624,9 +55568,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell) "taV" = ( /obj/effect/projector{ @@ -67634,10 +55576,7 @@ vector_x = 19; vector_y = -98 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/upper/starboard) "tcd" = ( /obj/structure/surface/table/almayer, @@ -67652,9 +55591,7 @@ dir = 1 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "tcO" = ( /turf/closed/wall/almayer/outer, @@ -67669,9 +55606,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) "tda" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -67684,9 +55619,7 @@ req_access = null; req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "tdc" = ( /obj/effect/decal/warning_stripes{ @@ -67697,9 +55630,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "tdi" = ( /obj/structure/disposalpipe/junction{ @@ -67717,10 +55648,7 @@ /obj/structure/machinery/computer/working_joe{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/engine_core) "tdy" = ( /obj/structure/bed/sofa/south/grey/right, @@ -67731,10 +55659,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/lobby) "tdE" = ( /obj/structure/window/reinforced{ @@ -67744,10 +55669,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/alpha_bravo_shared) "tdH" = ( /obj/structure/bed/chair{ @@ -67755,14 +55677,10 @@ pixel_y = 3 }, /obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "tdI" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ @@ -67774,17 +55692,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "teo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "ter" = ( /obj/structure/disposalpipe/segment{ @@ -67814,9 +55728,7 @@ dir = 1 }, /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "teZ" = ( /obj/structure/machinery/door_control{ @@ -67826,22 +55738,13 @@ pixel_y = -8; req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "tfb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) "tff" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/lobby) "tfE" = ( /obj/structure/surface/rack, @@ -67850,24 +55753,17 @@ pixel_y = 6 }, /obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "tfF" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/hallways/upper/midship_hallway) "tfH" = ( /obj/structure/machinery/light/containment, /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/almayer/medical/containment/cell) "tfQ" = ( /obj/structure/machinery/light/small, @@ -67883,10 +55779,7 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) "tge" = ( /obj/structure/pipes/vents/scrubber{ @@ -67895,9 +55788,7 @@ /obj/structure/bed/chair/comfy/charlie{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "tgm" = ( /obj/structure/disposalpipe/segment{ @@ -67915,10 +55806,7 @@ req_one_access = null; req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/hallways/lower/repair_bay) "tgz" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -67937,19 +55825,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/starboard) "tgV" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) "thc" = ( /obj/item/device/radio/intercom{ @@ -67957,10 +55839,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/engine_core) "thq" = ( /obj/structure/machinery/vending/cola{ @@ -67980,9 +55859,7 @@ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/telecomms) "thA" = ( /obj/structure/window/reinforced{ @@ -67992,37 +55869,23 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/alpha_bravo_shared) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "thN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/hydroponics) "thP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) "thV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "tie" = ( /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/maint/upper/u_a_p) "tig" = ( /obj/structure/surface/table/almayer, @@ -68048,19 +55911,13 @@ pixel_x = -8; pixel_y = 29 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/ce_room) "tim" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "tiE" = ( /obj/structure/window/framed/almayer, @@ -68070,10 +55927,7 @@ /obj/structure/machinery/keycard_auth{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/chief_mp_office) "tiI" = ( /obj/structure/surface/table/reinforced/prison, @@ -68082,16 +55936,11 @@ pixel_y = 6 }, /obj/item/storage/box/syringes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "tiK" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "tiR" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -68100,17 +55949,13 @@ req_one_access = null; req_one_access_txt = "7;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/weapon_room) "tiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "tiX" = ( /obj/item/reagent_container/glass/bucket/janibucket{ @@ -68130,26 +55975,16 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "tjj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/port) "tjl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "tjn" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "tjw" = ( /obj/structure/machinery/cm_vending/clothing/vehicle_crew{ @@ -68161,16 +55996,12 @@ "tjH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "tjO" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/maint/hull/lower/l_m_s) "tkd" = ( /obj/structure/sign/safety/escapepod{ @@ -68187,10 +56018,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "tkn" = ( /obj/structure/surface/table/almayer, @@ -68199,9 +56027,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "tkq" = ( /obj/structure/pipes/vents/scrubber{ @@ -68213,10 +56039,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "tkN" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ @@ -68225,26 +56048,20 @@ req_one_access_txt = "15;16;21"; vend_x_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "tkR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/starboard) "tld" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 8; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/pilotbunks) "tlk" = ( /obj/structure/window/framed/almayer, @@ -68261,9 +56078,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "tlp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -68280,22 +56095,16 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "tlA" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "tlM" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/maint/upper/u_a_s) "tmg" = ( /obj/structure/surface/table/almayer, @@ -68303,10 +56112,7 @@ /obj/item/reagent_container/hypospray, /obj/item/reagent_container/hypospray, /obj/item/reagent_container/hypospray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "tml" = ( /obj/structure/largecrate/supply/supplies/mre, @@ -68331,10 +56137,7 @@ name = "ship-grade camera"; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/execution) "tmQ" = ( /obj/structure/machinery/light/small{ @@ -68357,24 +56160,17 @@ /area/almayer/living/offices) "tnb" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "tne" = ( /obj/structure/machinery/door_control/cl/quarter/backdoor{ pixel_x = -25; pixel_y = 23 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "tni" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/operating_room_three) "tnY" = ( /obj/structure/machinery/cryopod{ @@ -68383,9 +56179,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "tob" = ( /turf/open/floor/plating/plating_catwalk, @@ -68403,24 +56197,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "tot" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "tou" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/offices) "tov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -68435,9 +56222,7 @@ pixel_x = -10; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "toO" = ( /obj/structure/surface/table/almayer, @@ -68455,9 +56240,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "toQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68469,9 +56252,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "toS" = ( /obj/structure/surface/table/reinforced/prison, @@ -68488,9 +56269,7 @@ anchored = 1 }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lower_medical_medbay) "tpa" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -68498,9 +56277,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/medical/hydroponics) "tpd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -68521,27 +56298,20 @@ id = "hangarentrancesouth"; name = "\improper South Hangar Podlock" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_fore_hallway) "tpD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/bridgebunks) "tpG" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "tpR" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -68573,10 +56343,7 @@ dir = 8 }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "tqO" = ( /obj/effect/decal/warning_stripes{ @@ -68585,10 +56352,7 @@ /obj/structure/sign/safety/stairs{ pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/hallways/upper/port) "tqQ" = ( /obj/effect/decal/warning_stripes{ @@ -68598,10 +56362,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "tqV" = ( /obj/structure/surface/table/almayer, @@ -68616,9 +56377,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "tra" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -68627,39 +56386,27 @@ req_one_access = null; req_one_access_txt = "19;34;30" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/south1) "trh" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/lower) "tru" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) "trx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/midship_hallway) "trB" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/starboard) "trF" = ( /obj/effect/decal/warning_stripes{ @@ -68686,10 +56433,7 @@ pixel_y = -2 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/medical_science) "trU" = ( /obj/structure/surface/table/almayer, @@ -68737,9 +56481,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "tsy" = ( /obj/structure/filingcabinet{ @@ -68748,9 +56490,7 @@ /obj/structure/filingcabinet{ pixel_x = -8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "tsC" = ( /obj/item/storage/box/bodybags, @@ -68762,10 +56502,7 @@ icon_state = "poster8"; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/upper_medical) "tsE" = ( /obj/structure/largecrate/random/barrel/blue, @@ -68780,10 +56517,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) "tsX" = ( /turf/closed/wall/almayer/reinforced, @@ -68792,10 +56526,7 @@ /obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) "tte" = ( /obj/structure/pipes/vents/pump/no_boom{ @@ -68809,9 +56540,7 @@ /area/almayer/maint/hull/upper/p_bow) "ttD" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "ttS" = ( /obj/structure/stairs/perspective{ @@ -68838,24 +56567,17 @@ /obj/item/storage/xeno_tag_case/full{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "tuf" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "tuk" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) "tul" = ( /obj/structure/machinery/firealarm{ @@ -68863,10 +56585,7 @@ pixel_x = -24 }, /obj/structure/closet/secure_closet/brig/prison_uni, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/perma) "tuo" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -68874,10 +56593,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "tup" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -68886,9 +56602,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "tuA" = ( /turf/closed/wall/almayer/outer, @@ -68901,9 +56615,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "tuJ" = ( /obj/item/reagent_container/glass/bucket{ @@ -68914,14 +56626,10 @@ pixel_x = -3; pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "tuN" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/hallways/hangar) "tuX" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -68929,10 +56637,7 @@ /area/almayer/hallways/upper/fore_hallway) "tuZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/weapon_room) "tvl" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -68949,9 +56654,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "tvA" = ( /obj/structure/sign/safety/water{ @@ -68965,19 +56668,13 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/brig/starboard_hallway) "tvM" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "tvN" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -68990,16 +56687,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "tvQ" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) "twp" = ( /obj/structure/ladder{ @@ -69016,9 +56708,7 @@ /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer2" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "twI" = ( /obj/structure/machinery/cm_vending/clothing/dress{ @@ -69035,9 +56725,7 @@ pixel_y = 18; req_access_txt = "31" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/cic) "twQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -69085,15 +56773,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "txH" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "txO" = ( /obj/structure/machinery/landinglight/ds1{ @@ -69105,9 +56789,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "txS" = ( /obj/structure/surface/table/almayer, @@ -69116,9 +56798,7 @@ /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -69134,24 +56814,17 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "tyD" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) "tyK" = ( /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/shipboard/starboard_missiles) "tzd" = ( /obj/structure/window/framed/almayer, @@ -69172,15 +56845,11 @@ unslashable = 1 }, /obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lockerroom) "tzF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/aft_hallway) "tzL" = ( /obj/structure/sign/safety/waterhazard{ @@ -69188,22 +56857,16 @@ pixel_y = -32 }, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/medical/hydroponics) "tzO" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "tzP" = ( /obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "tAb" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -69223,9 +56886,7 @@ /obj/item/cell/crap{ pixel_x = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "tAt" = ( /obj/effect/step_trigger/clone_cleaner, @@ -69247,15 +56908,11 @@ range = 0; pixel_x = -7 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "tAL" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/pilotbunks) "tAN" = ( /obj/structure/disposalpipe/segment, @@ -69267,18 +56924,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/squads/bravo) "tAU" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/medical/lower_medical_medbay) "tAW" = ( /obj/structure/disposalpipe/segment, @@ -69294,9 +56946,7 @@ "tBu" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "tBP" = ( /obj/structure/surface/table/almayer, @@ -69306,9 +56956,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) "tBU" = ( /obj/structure/platform, @@ -69318,17 +56966,13 @@ /obj/structure/sign/safety/life_support{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "tBY" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/mess) "tCd" = ( /obj/item/folder/red{ @@ -69342,9 +56986,7 @@ pixel_x = 9; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "tCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -69360,9 +57002,7 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/port) "tCC" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ @@ -69386,17 +57026,13 @@ req_access = null; req_one_access_txt = "1;3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "tCT" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "tDZ" = ( /obj/structure/machinery/cryopod{ @@ -69405,15 +57041,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "tEd" = ( /obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "tEi" = ( /obj/effect/decal/warning_stripes{ @@ -69426,34 +57058,25 @@ pixel_x = 27; req_one_access_txt = "4;28" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "tEu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "tEC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "tEO" = ( /obj/effect/landmark/start/marine/medic/charlie, @@ -69472,23 +57095,15 @@ plane = -7 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "tFJ" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/maint/upper/u_a_p) "tFO" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/maint/upper/u_a_p) "tFS" = ( /obj/structure/machinery/computer/supplycomp, @@ -69496,10 +57111,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "tFW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -69507,9 +57119,7 @@ dir = 2 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/lifeboat_pumps/south1) "tGd" = ( /obj/effect/decal/warning_stripes{ @@ -69519,19 +57129,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_20" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/port) "tGh" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_lobby) "tGi" = ( /obj/effect/spawner/random/tool, @@ -69542,17 +57146,13 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "tGG" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) "tGH" = ( /obj/structure/sign/safety/restrictedarea, @@ -69565,9 +57165,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) "tGT" = ( /obj/structure/machinery/light{ @@ -69596,28 +57194,18 @@ pixel_y = 11 }, /obj/item/poster, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/shipboard/brig/cic_hallway) "tHu" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/command/airoom) "tHv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/living/briefing) "tHF" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "tHQ" = ( /obj/effect/decal/warning_stripes{ @@ -69633,27 +57221,20 @@ /area/almayer/shipboard/brig/cells) "tId" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_cargo" - }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, /area/almayer/command/airoom) "tIe" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/lower/engine_core) "tIl" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "tIp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -69666,23 +57247,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) "tIu" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "tIF" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -69708,9 +57283,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "tIS" = ( /obj/effect/decal/warning_stripes{ @@ -69725,22 +57298,16 @@ pixel_y = 6 }, /obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "tJi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "tJm" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "tJq" = ( /obj/structure/machinery/light/small{ @@ -69766,10 +57333,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "tKr" = ( /obj/structure/machinery/cryopod/right{ @@ -69778,9 +57342,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -69805,9 +57367,7 @@ id = "firearm_storage_armory"; name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/armory) "tLc" = ( /obj/structure/surface/rack, @@ -69828,71 +57388,51 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "tLZ" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "tMc" = ( /obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower/workshop/hangar) "tMi" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "tMU" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "tMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "tNw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "tNB" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "tNP" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "tNR" = ( /obj/structure/machinery/firealarm{ @@ -69905,9 +57445,7 @@ /area/almayer/squads/alpha) "tNY" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "tOr" = ( /obj/effect/decal/warning_stripes{ @@ -69918,24 +57456,17 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/hydroponics) "tOu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop/hangar) "tOC" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "tON" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -69945,10 +57476,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) "tOW" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/living/grunt_rnr) "tPc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -69977,9 +57505,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "tPm" = ( /obj/structure/pipes/vents/scrubber{ @@ -69990,9 +57516,7 @@ pixel_x = 2; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "tPI" = ( /obj/structure/bed/chair{ @@ -70014,10 +57538,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/starboard_midship_hallway) "tQi" = ( /obj/effect/landmark/start/warrant, @@ -70040,19 +57561,14 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/frame/light_fixture, /obj/item/frame/light_fixture, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "tRD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/basketball) "tSm" = ( /obj/structure/surface/table/almayer, @@ -70074,16 +57590,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "tSB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/almayer/living/briefing) "tSF" = ( /obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "tSX" = ( /obj/structure/surface/table/almayer, @@ -70091,9 +57602,7 @@ pixel_y = 6 }, /obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "tTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -70107,15 +57616,10 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "tTu" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) "tTC" = ( /turf/open/floor/plating, @@ -70129,9 +57633,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/captain_mess) "tTG" = ( /obj/structure/sign/safety/terminal{ @@ -70142,10 +57644,7 @@ /area/almayer/maint/hull/upper/u_a_s) "tTO" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/starboard_hallway) "tTZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -70175,9 +57674,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "tUN" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ @@ -70186,9 +57683,7 @@ req_one_access = null; req_one_access_txt = "35" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop/hangar) "tUS" = ( /obj/item/toy/beach_ball/holoball, @@ -70200,9 +57695,7 @@ pixel_x = -16; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "tVh" = ( /obj/structure/bed/chair/comfy{ @@ -70211,9 +57704,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "tVn" = ( /obj/structure/platform{ @@ -70226,9 +57717,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha) "tVx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -70237,9 +57726,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) "tVZ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/hallways/lower/repair_bay) "tWd" = ( /obj/structure/largecrate/random/case, @@ -70259,15 +57746,11 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_p) "tWp" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "tWF" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -70277,17 +57760,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "tWL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) "tWY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -70304,9 +57783,7 @@ req_one_access = null; req_one_access_txt = "1;5" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "tXa" = ( /obj/item/storage/toolbox/mechanical{ @@ -70315,18 +57792,14 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "tXb" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "tXc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -70351,22 +57824,16 @@ /obj/item/storage/box/m94, /obj/item/storage/box/m94, /obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "tXn" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "tXo" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/hallways/lower/starboard_midship_hallway) "tXM" = ( /obj/structure/pipes/vents/pump{ @@ -70407,9 +57874,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "tYi" = ( /obj/structure/disposalpipe/segment{ @@ -70418,18 +57883,14 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "tYr" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "tYw" = ( /obj/effect/decal/medical_decals{ @@ -70441,10 +57902,7 @@ name = "General Listening Channel"; pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "tYM" = ( /obj/structure/pipes/vents/pump{ @@ -70459,15 +57917,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_p) "tYX" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/bridgebunks) "tZc" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "tZg" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -70482,9 +57936,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/port) "tZZ" = ( /obj/structure/machinery/cryopod, @@ -70496,9 +57948,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "uac" = ( /obj/structure/machinery/light{ @@ -70510,19 +57960,14 @@ /area/almayer/lifeboat_pumps/north1) "uag" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/mess) "uah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_medbay) "ual" = ( /obj/structure/sink{ @@ -70536,22 +57981,15 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) "uay" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_medbay) "uaA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "uaG" = ( /turf/closed/wall/almayer, @@ -70562,9 +58000,7 @@ pixel_x = -2; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "uaU" = ( /obj/structure/surface/table/almayer, @@ -70655,9 +58091,7 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "udf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -70677,9 +58111,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) "udi" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/briefing) "udr" = ( /obj/structure/disposalpipe/segment{ @@ -70689,24 +58121,17 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) "udv" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/hallways/upper/fore_hallway) "udx" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "udG" = ( /obj/structure/disposalpipe/segment, @@ -70714,9 +58139,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "udK" = ( /obj/structure/machinery/disposal, @@ -70724,10 +58147,7 @@ /obj/structure/sign/safety/coffee{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "udR" = ( /obj/structure/bed/chair{ @@ -70741,10 +58161,7 @@ pixel_x = -19; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "udZ" = ( /obj/structure/pipes/vents/scrubber, @@ -70758,9 +58175,7 @@ name = "\improper Exterior Airlock"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/port_point_defense) "uek" = ( /obj/structure/surface/table/almayer, @@ -70769,9 +58184,7 @@ pixel_x = 2; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "uew" = ( /obj/structure/pipes/vents/pump{ @@ -70782,9 +58195,7 @@ "uey" = ( /obj/structure/machinery/cm_vending/sorted/medical/bolted, /obj/structure/medical_supply_link/green, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lockerroom) "uez" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -70809,10 +58220,7 @@ pixel_x = -1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "ueY" = ( /obj/structure/machinery/light, @@ -70823,9 +58231,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) "ufh" = ( /obj/structure/stairs/perspective{ @@ -70839,30 +58245,20 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) "ufJ" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "ufL" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "ugj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/maint/hull/lower/l_m_s) "ugo" = ( /obj/item/tool/weldpack{ @@ -70870,9 +58266,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -70885,9 +58279,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/almayer/shipboard/brig/starboard_hallway) "ugJ" = ( /obj/structure/largecrate/random/case/small, @@ -70895,35 +58287,25 @@ pixel_x = -1; pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "ugZ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "uhh" = ( /obj/structure/machinery/vending/cola{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "uhl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/almayer/living/offices) "uhq" = ( /obj/structure/disposalpipe/segment{ @@ -70937,14 +58319,10 @@ id = "northcheckpoint"; name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/lower/starboard_midship_hallway) "uhA" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, @@ -70960,36 +58338,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "uig" = ( /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "uiC" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/lower/engine_core) "uiG" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/starboard) "uiK" = ( /obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "uiR" = ( /obj/structure/prop/invuln{ @@ -70999,33 +58365,23 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/almayer/engineering/upper_engineering/starboard) "uiT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "uiZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ dir = 1; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) "ujn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "ujz" = ( /obj/structure/disposalpipe/segment, @@ -71034,16 +58390,11 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "ujV" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "uky" = ( /obj/effect/decal/warning_stripes{ @@ -71054,15 +58405,11 @@ /area/almayer/hallways/lower/port_umbilical) "ukC" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "ukP" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "ukV" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, @@ -71092,17 +58439,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "uly" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) "ulH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -71116,18 +58457,13 @@ /area/almayer/hallways/lower/port_aft_hallway) "ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "umh" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south2) "umk" = ( /obj/structure/machinery/light/small{ @@ -71141,33 +58477,23 @@ "umm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/powered/agent) "umy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "umI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) "umS" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/pilotbunks) "umW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71189,9 +58515,7 @@ dir = 1; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "uns" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -71199,25 +58523,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/almayer/shipboard/brig/cells) "unx" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "unQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "unT" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -71226,9 +58543,7 @@ pixel_y = -7 }, /obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "unZ" = ( /obj/structure/platform{ @@ -71237,25 +58552,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "uoi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "uoj" = ( /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71268,9 +58576,7 @@ dir = 1; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/computerlab) "uoO" = ( /obj/structure/sign/safety/water{ @@ -71283,15 +58589,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/upper_medical) "upO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) "upR" = ( /obj/structure/machinery/light{ @@ -71301,10 +58603,7 @@ pixel_x = 7; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "upS" = ( /obj/structure/largecrate/random/case/double, @@ -71343,9 +58642,7 @@ pixel_x = 5; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "uqg" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -71373,19 +58670,14 @@ pixel_y = 6 }, /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "uqA" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/squads/bravo) "uqI" = ( /obj/structure/machinery/light{ @@ -71398,10 +58690,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/hallways/lower/starboard_umbilical) "ury" = ( /obj/structure/bed/chair{ @@ -71411,18 +58700,14 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "urM" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/upper_engineering) "urN" = ( /obj/effect/landmark/start/marine/leader/charlie, @@ -71435,9 +58720,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "usq" = ( /obj/structure/sign/safety/ammunition{ @@ -71448,18 +58731,14 @@ pixel_y = 32 }, /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/panic) "usu" = ( /obj/structure/surface/rack, /obj/item/roller, /obj/item/roller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "usy" = ( /obj/effect/decal/warning_stripes{ @@ -71468,9 +58747,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "usX" = ( /obj/structure/disposalpipe/segment{ @@ -71483,17 +58760,11 @@ "usZ" = ( /obj/structure/pipes/unary/outlet_injector, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower) "utn" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "uto" = ( /obj/structure/closet/crate, @@ -71509,9 +58780,7 @@ dir = 1 }, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering) "utp" = ( /turf/open/floor/plating/plating_catwalk, @@ -71520,9 +58789,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "utX" = ( /turf/closed/wall/almayer/research/containment/wall/connect_e2{ @@ -71530,10 +58797,7 @@ }, /area/almayer/medical/containment/cell) "utZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/shipboard/brig/processing) "uuj" = ( /obj/structure/surface/table/almayer, @@ -71554,17 +58818,13 @@ pixel_x = 14; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "uun" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "uuu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71594,9 +58854,7 @@ name = "\improper Evacuation Airlock SU-1"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "uuD" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -71606,15 +58864,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower) "uuI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/port_midship_hallway) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -71643,9 +58896,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "uvh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71654,24 +58905,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) "uvp" = ( /obj/structure/largecrate/supply, /obj/structure/sign/safety/bulkhead_door{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "uvt" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) "uvu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71680,10 +58925,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/squads/bravo) "uvP" = ( /obj/structure/machinery/light{ @@ -71696,9 +58938,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell) "uvU" = ( /obj/structure/surface/table/almayer, @@ -71709,32 +58949,23 @@ pixel_x = -10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "uvY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/cells) "uws" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/shipboard/port_missiles) "uwt" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/delta{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "uwv" = ( /turf/open/floor/plating/plating_catwalk, @@ -71753,9 +58984,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "uxa" = ( /obj/structure/bed/chair/wood/normal{ @@ -71773,9 +59002,7 @@ /obj/item/cell/high/empty, /obj/item/cell/high/empty, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "uxp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -71789,9 +59016,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) "uxC" = ( /obj/structure/machinery/light{ @@ -71834,10 +59059,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/starboard) "uys" = ( /turf/closed/wall/almayer/reinforced, @@ -71853,9 +59075,7 @@ /obj/structure/largecrate/random/case{ layer = 2.98 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "uzv" = ( /obj/structure/bed/chair{ @@ -71887,20 +59107,14 @@ "uAj" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/port_missiles) "uAl" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) "uAC" = ( /obj/item/bedsheet/purple{ @@ -71927,18 +59141,13 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/living/port_emb) "uAK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/lower/engine_core) "uAL" = ( /obj/structure/bed/chair/wood/normal, @@ -71955,19 +59164,14 @@ pixel_x = 7; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/upper/midship_hallway) "uAW" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "uBi" = ( /obj/effect/decal/cleanable/dirt, @@ -72012,9 +59216,7 @@ "uBG" = ( /obj/item/tool/weldingtool, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/maint/upper/u_a_p) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72050,10 +59252,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/living/grunt_rnr) "uCt" = ( /obj/structure/sign/safety/stairs{ @@ -72064,10 +59263,7 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/lower/starboard_midship_hallway) "uCw" = ( /obj/structure/closet/crate/freezer, @@ -72090,9 +59286,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "uCR" = ( /obj/item/tool/warning_cone{ @@ -72115,26 +59309,20 @@ height = 1; id = "bridge2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/navigation) "uDA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "uDW" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "uEO" = ( /obj/effect/decal/warning_stripes{ @@ -72161,10 +59349,7 @@ /obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/lower/repair_bay) "uFd" = ( /obj/effect/decal/warning_stripes{ @@ -72175,9 +59360,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "uFg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -72193,15 +59376,11 @@ req_access_txt = "8" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "uFp" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, @@ -72231,9 +59410,7 @@ pixel_x = 32 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "uGf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72242,19 +59419,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "uGi" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_umbilical) "uGN" = ( /obj/structure/pipes/vents/pump, @@ -72262,18 +59434,14 @@ /area/almayer/shipboard/brig/general_equipment) "uGQ" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "uGU" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "uHk" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -72283,25 +59451,16 @@ /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/cryo_cells) "uHr" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/lifeboat_pumps/south2) "uHT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "uIv" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "uIA" = ( /obj/effect/decal/warning_stripes{ @@ -72319,15 +59478,11 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/squads/alpha) "uIT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha_bravo_shared) "uJb" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, @@ -72338,17 +59493,13 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "uJk" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer4" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "uJM" = ( /obj/structure/sign/safety/medical{ @@ -72364,18 +59515,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "uKd" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "uKe" = ( /obj/structure/machinery/conveyor{ @@ -72386,15 +59533,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "uKl" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "uKH" = ( /obj/structure/disposalpipe/segment{ @@ -72419,10 +59562,7 @@ /area/almayer/shipboard/starboard_point_defense) "uLE" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/shipboard/brig/medical) "uLG" = ( /obj/structure/closet/crate/freezer{ @@ -72431,9 +59571,7 @@ /obj/item/reagent_container/food/snacks/mre_pack/xmas2, /obj/item/reagent_container/food/snacks/mre_pack/xmas1, /obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "uMc" = ( /obj/structure/window/framed/almayer/hull, @@ -72452,9 +59590,7 @@ /obj/structure/bed/chair/comfy/delta{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "uMl" = ( /obj/effect/decal/warning_stripes{ @@ -72462,17 +59598,13 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/squads/alpha) "uMn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/living/port_emb) "uMO" = ( /obj/effect/projector{ @@ -72496,10 +59628,7 @@ /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) "uMS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) "uNf" = ( /obj/structure/sign/safety/conference_room{ @@ -72509,9 +59638,7 @@ /area/almayer/hallways/lower/starboard_fore_hallway) "uNg" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "uNp" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -72528,10 +59655,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/workshop/hangar) "uNz" = ( /obj/structure/largecrate/random/barrel/red, @@ -72540,23 +59664,16 @@ "uNB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "uNM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/almayer/living/briefing) "uNN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/basketball) "uNQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72565,9 +59682,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "uNV" = ( /obj/structure/flora/pottedplant{ @@ -72579,24 +59694,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) "uOJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "uPr" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/living/basketball) "uPE" = ( /turf/open/floor/almayer, @@ -72613,9 +59721,7 @@ phone_color = "blue"; phone_id = "AI Reception" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, +/turf/open/floor/almayer/no_build/ai_floors, /area/almayer/command/airoom) "uPP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -72623,9 +59729,7 @@ name = "\improper Atmospherics Wing" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower) "uPQ" = ( /obj/item/weapon/dart/green, @@ -72681,10 +59785,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/command/lifeboat) "uRt" = ( /obj/structure/machinery/light{ @@ -72693,10 +59794,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) "uRD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72735,9 +59833,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "Brig" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/s_bow) "uRY" = ( /obj/effect/decal/warning_stripes{ @@ -72747,19 +59843,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/port) "uSk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/upper/aft_hallway) "uSH" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -72768,15 +59858,11 @@ pixel_x = 12; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "uSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lockerroom) "uSU" = ( /obj/structure/largecrate/random/case/double, @@ -72791,10 +59877,7 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "uTk" = ( /obj/structure/largecrate/random/secure, @@ -72803,9 +59886,7 @@ "uTl" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "uTs" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -72814,9 +59895,7 @@ name = "\improper Brig Lockdown Shutter" }, /obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/p_bow) "uTv" = ( /obj/structure/surface/table/almayer, @@ -72836,9 +59915,7 @@ "uTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "uTP" = ( /obj/structure/disposalpipe/segment, @@ -72846,9 +59923,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_aft_hallway) "uTU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -72860,9 +59935,7 @@ layer = 2.2; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "uTV" = ( /obj/effect/decal/warning_stripes{ @@ -72870,15 +59943,11 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/lower/workshop) "uTZ" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) "uUe" = ( /obj/structure/machinery/cryopod/right{ @@ -72892,9 +59961,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/port) "uUf" = ( /obj/structure/surface/table/almayer, @@ -72913,10 +59980,7 @@ pixel_y = -2 }, /obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/hallways/lower/repair_bay) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72932,10 +59996,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie) "uUt" = ( /obj/structure/surface/table/almayer, @@ -72943,9 +60004,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/starboard_point_defense) "uUu" = ( /obj/structure/machinery/status_display{ @@ -72955,10 +60014,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/perma) "uUz" = ( /obj/structure/window/framed/almayer, @@ -72999,24 +60055,18 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "uVh" = ( /obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "uVp" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ @@ -73025,20 +60075,14 @@ /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) "uVA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/shipboard/brig/cic_hallway) "uVD" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/living/cryo_cells) "uVV" = ( /obj/structure/machinery/light{ @@ -73051,30 +60095,21 @@ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) "uVY" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "uWc" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "uWk" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/almayer/hallways/upper/midship_hallway) "uWm" = ( /obj/effect/projector{ @@ -73082,10 +60117,7 @@ vector_x = -19; vector_y = 104 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/lower/port_midship_hallway) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73104,9 +60136,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "uXf" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -73119,22 +60149,16 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "uXj" = ( /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/almayer/medical/containment/cell) "uXk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/engine_core) "uXm" = ( /obj/structure/disposalpipe/segment{ @@ -73158,9 +60182,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/interrogation) "uXy" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, @@ -73175,18 +60197,14 @@ "uXE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/upper/midship_hallway) "uXL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/engineering/upper_engineering/starboard) "uXU" = ( /obj/structure/closet/crate/freezer, @@ -73199,10 +60217,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "uYd" = ( /obj/structure/flora/pottedplant{ @@ -73210,9 +60225,7 @@ pixel_y = 12 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "uYg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -73222,18 +60235,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "uYM" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "uZm" = ( /obj/effect/projector{ @@ -73248,10 +60256,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/living/port_emb) "uZF" = ( /obj/structure/machinery/power/apc/almayer{ @@ -73263,10 +60268,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "uZV" = ( /obj/structure/reagent_dispensers/fueltank/gas/methane{ @@ -73276,9 +60278,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "uZZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -73287,9 +60287,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/basketball) "vaq" = ( /obj/structure/disposalpipe/junction{ @@ -73304,9 +60302,7 @@ dir = 1; name = "Medical Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "vaS" = ( /turf/open/floor/plating/plating_catwalk, @@ -73323,10 +60319,7 @@ icon_state = "SW-out" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "vbf" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -73335,9 +60328,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vbo" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ @@ -73358,9 +60349,7 @@ id = "courtyard_cells"; name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "vbB" = ( /turf/open/floor/plating/plating_catwalk, @@ -73377,9 +60366,7 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "vbM" = ( /obj/structure/flora/pottedplant{ @@ -73391,47 +60378,34 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/squads/bravo) "vbR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/almayer/squads/req) "vbS" = ( /obj/structure/closet/secure_closet/personal/patient{ name = "morgue closet" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "vbU" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/midship_hallway) "vbV" = ( /obj/structure/bed/chair/wheelchair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_medbay) "vbZ" = ( /obj/effect/decal/warning_stripes{ @@ -73440,19 +60414,13 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "vcm" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/perma) "vcq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -73462,18 +60430,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_lobby) "vcu" = ( /obj/effect/landmark/start/engineering, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) "vcE" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "vcG" = ( /obj/item/device/radio/intercom{ @@ -73498,9 +60462,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/brig/execution) "vdL" = ( /obj/structure/sign/safety/reception{ @@ -73511,10 +60473,7 @@ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "vdM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73533,30 +60492,21 @@ /obj/structure/machinery/cryo_cell{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "vdR" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south2) "ven" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) "veq" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "veu" = ( /obj/structure/surface/table/almayer, @@ -73564,9 +60514,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "vfa" = ( /obj/structure/disposalpipe/segment{ @@ -73575,10 +60523,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/almayer/squads/charlie) "vfo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -73586,9 +60531,7 @@ name = "\improper Evacuation Airlock PL-2"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) "vfx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73601,15 +60544,10 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) "vfP" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/almayer/medical/containment/cell) "vfS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73644,18 +60582,13 @@ dir = 8; pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vgv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/workshop) "vgw" = ( /turf/closed/wall/almayer/outer, @@ -73667,10 +60600,7 @@ }, /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/hydroponics) "vgB" = ( /obj/structure/surface/table/almayer, @@ -73689,27 +60619,19 @@ pixel_x = 8; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "vgD" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) "vhb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/maint/upper/u_a_p) "vhe" = ( /obj/structure/filingcabinet{ @@ -73745,10 +60667,7 @@ name = "synthetic potted plant"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/squads/charlie) "vhX" = ( /obj/structure/window/framed/almayer/white, @@ -73764,9 +60683,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/chapel) "vih" = ( /obj/structure/surface/table/almayer, @@ -73775,9 +60692,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "vil" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73793,14 +60708,10 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "vit" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_four) "viu" = ( /obj/structure/machinery/shower{ @@ -73820,10 +60731,7 @@ /obj/structure/bed/sofa/south/white/right{ pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/maint/upper/u_m_p) "viB" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ @@ -73833,44 +60741,31 @@ /area/almayer/command/airoom) "viJ" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/gym) "viN" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/command/securestorage) "viO" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, +/turf/open/floor/almayer/uscm/directional/northeast, /area/almayer/living/briefing) "viS" = ( /obj/effect/landmark/start/marine/engineer/bravo, /obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "vjb" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "vjg" = ( /obj/structure/prop/almayer/missile_tube{ icon_state = "missiletubesouth" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_missiles) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, @@ -73896,20 +60791,14 @@ pixel_x = -4; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "vjG" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/lower/port_umbilical) "vjK" = ( /obj/effect/decal/cleanable/dirt, @@ -73927,26 +60816,19 @@ id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/lower/constr) "vjT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/hallways/lower/port_umbilical) "vjW" = ( /obj/structure/reagent_dispensers/watertank{ anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "vka" = ( /turf/open/floor/almayer, @@ -73960,28 +60842,21 @@ name = "Privacy Shutters"; pixel_y = -19 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "vkp" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) "vky" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/p_bow) "vkI" = ( /obj/item/coin/silver{ @@ -73991,9 +60866,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "vkM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -74004,9 +60877,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/general_equipment) "vkO" = ( /obj/structure/closet, @@ -74018,44 +60889,32 @@ }, /obj/item/tool/weldingtool, /obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) "vkR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "vlk" = ( /obj/structure/closet/emcloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/lifeboat) "vln" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "vly" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "vlM" = ( /obj/effect/decal/warning_stripes{ @@ -74096,39 +60955,28 @@ pixel_y = 8 }, /obj/item/toy/plush/barricade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "vlX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) "vme" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) "vml" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/sign/safety/storage{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "vmq" = ( /turf/open/floor/almayer, /area/almayer/maint/hull/lower/l_m_s) "vmE" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/engineering/lower) "vmJ" = ( /obj/effect/step_trigger/clone_cleaner, @@ -74145,38 +60993,26 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "vmP" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vmW" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/port_missiles) "vno" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/lower/port_midship_hallway) "vnD" = ( /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "vnM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74190,25 +61026,18 @@ "voj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) "vop" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/almayer/hallways/lower/repair_bay) "vor" = ( /obj/effect/decal/cleanable/blood, /obj/structure/prop/broken_arcade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "vou" = ( /obj/structure/surface/rack{ @@ -74256,9 +61085,7 @@ pixel_x = 8; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) "voV" = ( /obj/effect/decal/warning_stripes{ @@ -74277,9 +61104,7 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment) "vpe" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -74287,20 +61112,13 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/workshop/hangar) "vpf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "vpn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "vpv" = ( /obj/structure/machinery/shower, @@ -74342,21 +61160,14 @@ /obj/structure/machinery/computer/cameras/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "vpV" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/almayer/command/cic) "vpW" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vqc" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -74367,9 +61178,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "vqz" = ( /obj/structure/machinery/light{ @@ -74379,10 +61188,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/lower/port_fore_hallway) "vqC" = ( /obj/structure/pipes/vents/pump{ @@ -74393,10 +61199,7 @@ "vqD" = ( /obj/item/trash/candle, /obj/item/tool/match/paper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "vqI" = ( /obj/structure/surface/table/reinforced/prison, @@ -74414,19 +61217,14 @@ /area/almayer/squads/charlie_delta_shared) "vqK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) "vqL" = ( /obj/item/clothing/under/shorts/black, /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "vqW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74436,9 +61234,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/medical_science) "vqZ" = ( /obj/structure/machinery/shower{ @@ -74482,9 +61278,7 @@ /obj/structure/sign/safety/maint{ pixel_x = -18 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "vrJ" = ( /obj/effect/decal/warning_stripes{ @@ -74495,55 +61289,40 @@ dir = 2; name = "\improper Liasion's Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/corporateliaison) "vrM" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/evidence_storage) "vrR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Lower Deck Waste Tank Control" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "vrW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/briefing) "vrZ" = ( /obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "vsd" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_m_s) "vse" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "vsf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74556,9 +61335,7 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -74584,21 +61361,14 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vta" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) "vti" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "vtm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74608,37 +61378,27 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) "vtr" = ( /obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "vtx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "vtG" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "vtJ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "vub" = ( /turf/closed/wall/almayer, @@ -74657,9 +61417,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "vuF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -74668,9 +61426,7 @@ name = "\improper Kitchen Hydroponics"; req_one_access_txt = "30;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "vuG" = ( /obj/structure/sign/safety/maint{ @@ -74690,9 +61446,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/squads/delta) "vuV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74707,10 +61461,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/weapon_room) "vvp" = ( /obj/structure/pipes/vents/pump, @@ -74734,9 +61485,7 @@ pixel_x = -5; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "vvy" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, @@ -74753,18 +61502,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "vvH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "vvX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, @@ -74773,9 +61518,7 @@ id = "OuterShutter"; name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "vvY" = ( /obj/structure/sink{ @@ -74797,15 +61540,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "vwj" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "vwC" = ( /obj/effect/step_trigger/clone_cleaner, @@ -74813,10 +61552,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/starboard) "vwF" = ( /obj/structure/machinery/light{ @@ -74824,10 +61560,7 @@ }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "vwI" = ( /obj/structure/surface/table/almayer, @@ -74837,10 +61570,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "vwT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/upper/midship_hallway) "vwU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -74850,10 +61580,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/command/cic) "vwY" = ( /obj/structure/surface/table/almayer, @@ -74874,10 +61601,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/brig/chief_mp_office) "vxK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -74915,24 +61639,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) "vyg" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vyh" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, @@ -74951,22 +61669,15 @@ pixel_y = 6 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "vyr" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "vyu" = ( /obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_lobby) "vyB" = ( /turf/open/floor/plating/plating_catwalk, @@ -74975,10 +61686,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer/aicore/no_build{ - dir = 4; - icon_state = "ai_arrow" - }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, /area/almayer/command/airoom) "vyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -75000,15 +61708,11 @@ /obj/structure/machinery/door/airlock/almayer/security/reinforced{ name = "\improper Chief MP's Bedroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/chief_mp_office) "vzk" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "vzp" = ( /turf/open/floor/almayer/research/containment/entrance, @@ -75021,25 +61725,18 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/almayer/shipboard/brig/starboard_hallway) "vzz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Hydroponics Garden" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) "vzB" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "vzK" = ( /turf/open/floor/almayer, @@ -75058,9 +61755,7 @@ id = "kitchen"; name = "\improper Kitchen Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "vAg" = ( /obj/structure/largecrate/random/barrel/blue, @@ -75077,18 +61772,13 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/hallways/hangar) "vAx" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "vAz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -75101,9 +61791,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "vAG" = ( /turf/open/floor/almayer, @@ -75112,9 +61800,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/port) "vAI" = ( /obj/effect/decal/warning_stripes{ @@ -75123,10 +61809,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "vAQ" = ( /obj/structure/surface/table/almayer, @@ -75134,9 +61817,7 @@ pixel_x = 2; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "vBp" = ( /obj/structure/bed/chair/comfy{ @@ -75145,10 +61826,7 @@ /obj/structure/window/reinforced/ultra{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/living/briefing) "vBC" = ( /obj/structure/pipes/vents/pump, @@ -75162,17 +61840,13 @@ /obj/item/paper_bin/uscm{ pixel_y = 7 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/chief_mp_office) "vBU" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) "vCg" = ( /obj/effect/decal/warning_stripes{ @@ -75182,18 +61856,13 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vCk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/hydroponics) "vCt" = ( /obj/structure/sign/safety/storage{ @@ -75203,17 +61872,13 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) "vCv" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/midship_hallway) "vCx" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) "vCy" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -75221,10 +61886,7 @@ name = "ship-grade camera"; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/shipboard/brig/cells) "vCE" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -75244,9 +61906,7 @@ c_tag = "AI - Primary Processors"; autoname = 0 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_floor2" - }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, /area/almayer/command/airoom) "vCO" = ( /obj/effect/landmark/start/bridge, @@ -75256,9 +61916,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/hydroponics) "vDd" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, @@ -75272,9 +61930,7 @@ /area/almayer/living/cryo_cells) "vDh" = ( /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "vDo" = ( /obj/structure/disposalpipe/segment{ @@ -75306,9 +61962,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "vEj" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -75322,10 +61976,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) "vEv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -75333,9 +61984,7 @@ name = "\improper North West Ladders Shutters" }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_fore_hallway) "vEx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -75346,9 +61995,7 @@ name = "Morgue Waiting Room"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "vEG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -75366,56 +62013,38 @@ /area/almayer/maint/hull/lower/l_f_s) "vER" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/aft_hallway) "vEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/starboard) "vFn" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "vFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "vFv" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "vFw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "vFH" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "vFI" = ( /obj/structure/largecrate/random/secure, @@ -75426,37 +62055,25 @@ /obj/item/clothing/glasses/sunglasses{ pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "vGn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/interrogation) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "vGG" = ( /obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "vGI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/numbertwobunks) "vGQ" = ( /obj/structure/machinery/light{ @@ -75475,9 +62092,7 @@ /obj/structure/machinery/computer/view_objectives{ pixel_x = -9 }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "vHh" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -75512,9 +62127,7 @@ phone_id = "Flight Deck"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "vHq" = ( /obj/item/device/assembly/mousetrap/armed, @@ -75529,9 +62142,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/port_emb) "vHt" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -75570,9 +62181,7 @@ /obj/structure/machinery/door/window/westright{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "vHO" = ( /obj/effect/decal/warning_stripes{ @@ -75582,9 +62191,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/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/almayer/medical/containment/cell) "vHP" = ( /obj/structure/surface/table/almayer, @@ -75603,24 +62210,18 @@ /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "vIf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) "vIg" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_a_s) "vIo" = ( /turf/closed/wall/almayer, @@ -75639,27 +62240,18 @@ /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) "vJc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/warden_office) "vJg" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/securestorage) "vJo" = ( /obj/structure/machinery/computer/cameras/almayer_network{ dir = 1 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/navigation) "vJR" = ( /obj/structure/barricade/handrail, @@ -75675,9 +62267,7 @@ /obj/structure/machinery/firealarm{ pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/bravo) "vJZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -75697,15 +62287,11 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/containment) "vKe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vKr" = ( /obj/structure/disposalpipe/segment, @@ -75720,9 +62306,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, @@ -75740,9 +62324,7 @@ "vLg" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vLj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -75755,18 +62337,13 @@ /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "vLp" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/hallways/lower/repair_bay) "vLz" = ( /obj/structure/machinery/door_control{ @@ -75787,10 +62364,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "vMb" = ( /obj/item/stool{ @@ -75807,10 +62381,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) "vMt" = ( -/turf/open/floor/almayer/aicore/no_build{ - dir = 8; - icon_state = "ai_silver" - }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) "vMA" = ( /obj/structure/machinery/firealarm{ @@ -75822,10 +62393,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) "vME" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering/port) "vMG" = ( /obj/structure/disposalpipe/segment{ @@ -75839,19 +62407,14 @@ pixel_x = 8; pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "vMI" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "vMJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -75863,33 +62426,24 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/mp_bunks) "vMM" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vMU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/hallways/lower/port_fore_hallway) "vNo" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_p) "vNp" = ( /obj/structure/sign/safety/three{ @@ -75914,14 +62468,10 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) "vNW" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/northwest, /area/almayer/command/cic) "vOh" = ( /obj/structure/pipes/vents/pump, @@ -75934,9 +62484,7 @@ pixel_y = 8 }, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/mp_bunks) "vOw" = ( /obj/structure/surface/rack, @@ -75944,9 +62492,7 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, @@ -75966,19 +62512,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "vOP" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "vOV" = ( /obj/effect/decal/warning_stripes{ @@ -75997,9 +62538,7 @@ id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "vOZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -76008,9 +62547,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "vPf" = ( /obj/structure/window/framed/almayer, @@ -76030,9 +62567,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "vPw" = ( /obj/structure/machinery/light{ @@ -76051,9 +62586,7 @@ /obj/structure/sign/safety/maint{ pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "vPM" = ( /obj/effect/decal/warning_stripes{ @@ -76067,9 +62600,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vPR" = ( /obj/item/clothing/suit/storage/marine/light/vest, @@ -76081,9 +62612,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/engineering/lower/workshop/hangar) "vPT" = ( /obj/structure/machinery/light{ @@ -76109,15 +62638,10 @@ /obj/structure/catwalk{ health = null }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/stair_clone/upper) "vQf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/almayer/command/securestorage) "vQq" = ( /obj/structure/surface/table/almayer, @@ -76128,9 +62652,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "vQR" = ( /obj/structure/disposalpipe/segment, @@ -76152,16 +62674,10 @@ /obj/structure/machinery/faxmachine/uscm{ department = "SEA" }, -/turf/open/floor/strata{ - desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_metal, /area/almayer/shipboard/sea_office) "vRb" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional/southwest, /area/almayer/command/cic) "vRu" = ( /obj/structure/surface/rack{ @@ -76172,10 +62688,7 @@ pixel_y = 11 }, /obj/item/storage/box/matches, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) "vRA" = ( /obj/effect/step_trigger/teleporter_vector{ @@ -76196,10 +62709,7 @@ /obj/structure/sign/safety/stairs{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "vRX" = ( /obj/structure/surface/table/almayer, @@ -76210,31 +62720,22 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/upper_medical) "vSl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "vSn" = ( /obj/structure/barricade/handrail/medical{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) "vSp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "vSr" = ( /obj/structure/largecrate/random/case/double, @@ -76253,16 +62754,11 @@ /area/almayer/maint/hull/lower/l_m_s) "vSE" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/port) "vSG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/chemistry) "vSK" = ( /obj/structure/surface/table/almayer, @@ -76270,35 +62766,25 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) "vSN" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "vSW" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/delta) "vTu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/command/cic) "vTv" = ( /obj/structure/surface/table/almayer, @@ -76312,24 +62798,18 @@ /obj/item/stack/sheet/mineral/phoron/medium_stack{ desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) "vTE" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "vTM" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "vTS" = ( /obj/structure/machinery/light{ @@ -76359,17 +62839,13 @@ "vUb" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "vUe" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "vUh" = ( /obj/structure/machinery/light, @@ -76384,10 +62860,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/port) "vUI" = ( /obj/structure/bed/chair/comfy/orange{ @@ -76406,9 +62879,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "vUP" = ( /turf/closed/wall/almayer/reinforced, @@ -76420,10 +62891,7 @@ vend_x_offset = 1 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/squads/alpha) "vVd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -76439,9 +62907,7 @@ /turf/closed/wall/almayer/aicore/hull, /area/almayer/command/airoom) "vVs" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "vVu" = ( /obj/effect/decal/warning_stripes{ @@ -76451,9 +62917,7 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "vVw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "vVy" = ( /obj/item/device/radio/intercom{ @@ -76468,37 +62932,27 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "vVW" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopright" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "vVZ" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "vWc" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/intercom/normandy{ layer = 3.5 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) "vWs" = ( /obj/structure/largecrate/random/barrel/red, @@ -76509,9 +62963,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "vWt" = ( /obj/structure/surface/table/almayer, @@ -76531,9 +62983,7 @@ /obj/item/reagent_container/glass/beaker/bluespace{ pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "vWA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -76589,9 +63039,7 @@ /obj/structure/mirror{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/cells) "vWJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -76600,9 +63048,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "vXd" = ( /obj/structure/window/framed/almayer, @@ -76624,9 +63070,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "vXh" = ( /obj/effect/decal/warning_stripes{ @@ -76657,18 +63101,14 @@ icon_state = "pottedplant_10"; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "vXF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "vYd" = ( /obj/structure/machinery/light{ @@ -76694,9 +63134,7 @@ id = "courtyard_cells"; name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/warden_office) "vYm" = ( /obj/structure/disposalpipe/segment, @@ -76714,10 +63152,7 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "vYz" = ( /obj/structure/surface/table/almayer, @@ -76740,9 +63175,7 @@ pixel_y = 10 }, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "vYC" = ( /obj/effect/decal/warning_stripes{ @@ -76754,9 +63187,7 @@ /turf/open/floor/almayer, /area/almayer/squads/req) "vYM" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "vZb" = ( /obj/structure/machinery/cryopod{ @@ -76766,9 +63197,7 @@ pixel_x = 16; pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "vZf" = ( /obj/structure/sign/safety/hvac_old{ @@ -76790,53 +63219,35 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/upper/midship_hallway) "vZJ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/hallways/upper/fore_hallway) "wac" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "wan" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/brown, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/almayer/living/offices) "waD" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_one) "waJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/upper/port) "waP" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/upper/fore_hallway) "wbu" = ( /obj/effect/decal/cleanable/dirt, @@ -76844,9 +63255,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "wby" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -76856,9 +63265,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_f_s) "wbC" = ( /obj/structure/machinery/atm{ @@ -76867,10 +63274,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "wbJ" = ( /obj/structure/machinery/door_control/airlock{ @@ -76883,9 +63287,7 @@ /area/almayer/engineering/upper_engineering/notunnel) "wbN" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "wbO" = ( /obj/effect/decal/warning_stripes{ @@ -76900,67 +63302,47 @@ icon_state = "pottedplant_21"; pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) "wbP" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/operating_room_four) "wbV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/cryo_cells) "wbX" = ( /obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 }, /obj/item/device/cotablet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cic) "wcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/lifeboat_pumps/south2) "wct" = ( /obj/structure/closet/radiation, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower) "wcD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "wcJ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/s_bow) "wcN" = ( /obj/structure/machinery/status_display{ @@ -76968,9 +63350,7 @@ }, /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "wcR" = ( /obj/structure/surface/table/almayer, @@ -76980,9 +63360,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "wdf" = ( /obj/structure/bed/chair{ @@ -76997,10 +63375,7 @@ pixel_x = -8; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/shipboard/brig/cic_hallway) "wdv" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -77012,9 +63387,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) "wdz" = ( /obj/effect/landmark/start/marine/engineer/charlie, @@ -77022,31 +63395,22 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "wdF" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/processing) "wdG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_f_p) "wdI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/starboard_missiles) "wdJ" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, /obj/item/cell/high/empty, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "wdQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -77056,17 +63420,13 @@ /area/almayer/hallways/lower/port_umbilical) "wdW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "wee" = ( /obj/effect/landmark/start/police, @@ -77085,26 +63445,20 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/hydroponics) "wer" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "wex" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) "weC" = ( /obj/structure/disposalpipe/segment{ @@ -77125,24 +63479,18 @@ /area/almayer/living/pilotbunks) "weR" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) "wfn" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/engineering/lower/workshop/hangar) "wfx" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "wfE" = ( /turf/closed/wall/almayer, @@ -77164,19 +63512,13 @@ /obj/structure/window/reinforced/ultra{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/briefing) "wgf" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/stern_point_defense) "wgk" = ( /obj/structure/disposalpipe/segment{ @@ -77186,10 +63528,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cichallway) "wgO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -77204,27 +63543,20 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "whc" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "whm" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "whA" = ( /turf/open/floor/almayer/uscm/directional, @@ -77239,10 +63571,7 @@ pixel_x = -17; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "whO" = ( /obj/structure/disposalpipe/segment, @@ -77262,17 +63591,13 @@ /area/almayer/maint/hull/lower/p_bow) "wiu" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build{ - icon_state = "ai_floor3" - }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) "wiz" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "wiG" = ( /obj/structure/sign/poster{ @@ -77302,10 +63627,7 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) "wiO" = ( /obj/structure/surface/rack, @@ -77314,9 +63636,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wiQ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -77324,17 +63644,13 @@ name = "Vehicle Bay One" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "wiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "wjq" = ( /obj/structure/bed/chair/comfy/beige{ @@ -77344,9 +63660,7 @@ /area/almayer/command/cichallway) "wjv" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/upper_engineering) "wjz" = ( /obj/effect/decal/warning_stripes{ @@ -77355,24 +63669,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "wjC" = ( /obj/structure/closet/firecloset, /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "wjL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/repair_bay) "wjQ" = ( /obj/structure/disposalpipe/segment, @@ -77401,9 +63708,7 @@ /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "wkc" = ( /obj/structure/surface/table/reinforced/prison, @@ -77416,18 +63721,14 @@ req_access_txt = "8" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) "wks" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -77437,9 +63738,7 @@ dir = 4 }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "wkA" = ( /obj/effect/decal/warning_stripes{ @@ -77455,9 +63754,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "wkM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -77471,17 +63768,13 @@ cooldown_duration = 1200 }, /obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/no_build/test_floor4, /area/almayer/command/airoom) "wkX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "wlb" = ( /obj/effect/decal/warning_stripes{ @@ -77492,9 +63785,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "wlg" = ( /obj/structure/surface/table/almayer, @@ -77512,10 +63803,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/interrogation) "wlh" = ( /obj/structure/disposalpipe/segment{ @@ -77528,10 +63816,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) "wlr" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/almayer/hallways/upper/midship_hallway) "wlD" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, @@ -77539,9 +63824,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_umbilical) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -77573,10 +63856,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/starboard_missiles) "wmo" = ( /obj/structure/sign/safety/bridge{ @@ -77586,26 +63866,18 @@ /obj/structure/sign/safety/west{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/almayer/hallways/upper/fore_hallway) "wmz" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "wmK" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/computerlab) "wmP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -77619,18 +63891,14 @@ name = "\improper Treatment Center" }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "wmT" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 30 }, /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/bridgebunks) "wnb" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -77640,9 +63908,7 @@ /obj/item/weapon/gun/smg/m39{ pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "wnh" = ( /obj/structure/window/framed/almayer/aicore/hull, @@ -77653,9 +63919,7 @@ id = "Perma 2"; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "wnL" = ( /obj/item/stack/tile/carpet{ @@ -77664,10 +63928,7 @@ /obj/structure/surface/rack, /obj/item/tool/crowbar/red, /obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "wnY" = ( /obj/item/tool/crowbar/red, @@ -77690,9 +63951,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) "woy" = ( /obj/item/device/radio/intercom{ @@ -77700,19 +63959,14 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "woU" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_m_p) "wpg" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "wpt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -77727,9 +63981,7 @@ closeOtherId = "ciclobby_s"; name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) "wpu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -77741,43 +63993,30 @@ pixel_y = -3 }, /obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "wpI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "wpS" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower) "wqc" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) "wqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "wqr" = ( /obj/structure/sign/safety/terminal{ @@ -77785,9 +64024,7 @@ pixel_y = 29 }, /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "wqO" = ( /obj/structure/disposalpipe/junction{ @@ -77803,18 +64040,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/upper_medical) "wra" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "wrr" = ( /obj/effect/decal/warning_stripes{ @@ -77827,10 +64059,7 @@ /obj/structure/machinery/door_control/railings{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/hallways/lower/vehiclehangar) "wru" = ( /obj/structure/machinery/light, @@ -77843,9 +64072,7 @@ /turf/open/floor/almayer, /area/almayer/living/gym) "wrI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_p) "wrN" = ( /obj/effect/step_trigger/clone_cleaner, @@ -77858,9 +64085,7 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) "wrT" = ( /obj/structure/surface/table/almayer, @@ -77871,26 +64096,19 @@ /obj/item/device/radio/marine, /obj/item/device/radio/marine, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "wrX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/port) "wse" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "wsh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -77915,9 +64133,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "wsz" = ( /obj/structure/disposalpipe/segment{ @@ -77936,14 +64152,10 @@ /area/almayer/shipboard/brig/cic_hallway) "wsR" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "wsS" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/starboard_midship_hallway) "wtk" = ( /obj/structure/disposalpipe/segment{ @@ -77966,26 +64178,19 @@ }, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) "wty" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/delta) "wtD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "Brig" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ @@ -78016,18 +64221,14 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "wud" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/engineering/lower/workshop) "wuh" = ( /obj/structure/disposalpipe/segment{ @@ -78056,9 +64257,7 @@ /obj/structure/sign/safety/cryo{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_m_p) "wuk" = ( /obj/structure/sign/safety/maint{ @@ -78083,24 +64282,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "wuB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/lower/workshop) "wuS" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_a_s) "wuT" = ( /obj/structure/machinery/light/small{ @@ -78109,26 +64301,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/starboard) "wvb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) "wvj" = ( /obj/item/stack/cable_coil, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "wvo" = ( /obj/structure/filingcabinet, @@ -78145,10 +64329,7 @@ /obj/structure/sign/safety/terminal{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/chief_mp_office) "wvI" = ( /obj/item/paper_bin/uscm{ @@ -78156,18 +64337,14 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) "wvU" = ( /obj/structure/machinery/recharge_station, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/synthcloset) "wvX" = ( /obj/structure/sign/safety/analysis_lab{ @@ -78177,27 +64354,20 @@ pixel_x = 15; pixel_y = 26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/upper/midship_hallway) "wwr" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "wwv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "wwE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -78207,18 +64377,14 @@ /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) "wwW" = ( /obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell/cl) "wxc" = ( /obj/structure/disposalpipe/segment{ @@ -78229,18 +64395,13 @@ }, /obj/structure/machinery/iv_drip, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "wxj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "wxp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -78251,9 +64412,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) "wxu" = ( /obj/structure/sign/safety/water{ @@ -78281,10 +64440,7 @@ pixel_y = 8 }, /obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/warden_office) "wxU" = ( /obj/item/ashtray/bronze{ @@ -78306,9 +64462,7 @@ pixel_x = -5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "wyt" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -78316,9 +64470,7 @@ pixel_x = -2; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "wyz" = ( /obj/structure/bed/chair{ @@ -78332,16 +64484,12 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/lower/l_m_s) "wyQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/aicore_lockdown, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, +/turf/open/floor/almayer/no_build/plating, /area/almayer/command/airoom) "wzy" = ( /obj/effect/step_trigger/clone_cleaner, @@ -78361,17 +64509,13 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) "wAE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "wAK" = ( /obj/effect/decal/warning_stripes{ @@ -78384,10 +64528,7 @@ /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/starboard_midship_hallway) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, @@ -78398,9 +64539,7 @@ /area/almayer/hallways/upper/starboard) "wCe" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "wCi" = ( /obj/structure/window/framed/almayer/white, @@ -78420,43 +64559,31 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/hallways/upper/fore_hallway) "wCs" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "wCI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/almayer/living/briefing) "wDg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/hallways/upper/starboard) "wDq" = ( /obj/structure/largecrate/random/case/small, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wDr" = ( /turf/closed/wall/almayer/outer, @@ -78475,9 +64602,7 @@ pixel_x = 20; pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/shipboard/brig/cells) "wDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -78502,34 +64627,24 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "wDH" = ( /obj/structure/morgue, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) "wDJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/almayer/squads/charlie_delta_shared) "wDK" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, @@ -78538,9 +64653,7 @@ /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "wEd" = ( /obj/structure/disposalpipe/segment, @@ -78549,9 +64662,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) "wEg" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -78562,9 +64673,7 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) "wEw" = ( /obj/effect/landmark/start/pilot/dropship_pilot, @@ -78579,9 +64688,7 @@ /obj/item/clipboard{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "wEK" = ( /obj/structure/machinery/firealarm{ @@ -78593,10 +64700,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south2) "wET" = ( /obj/effect/decal/cleanable/dirt, @@ -78605,15 +64709,10 @@ pixel_y = 6 }, /obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "wFb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/lower_medical_medbay) "wFi" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, @@ -78622,9 +64721,7 @@ pixel_y = 32 }, /obj/structure/medical_supply_link, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "wFn" = ( /obj/structure/surface/rack, @@ -78637,9 +64734,7 @@ name = "General Listening Channel"; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) "wFs" = ( /turf/closed/wall/almayer, @@ -78663,15 +64758,11 @@ id = "OfficeSafeRoom"; name = "\improper Office Safe Room" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "wFQ" = ( /obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "wFR" = ( /turf/open/floor/almayer, @@ -78700,16 +64791,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "wGe" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, @@ -78738,10 +64824,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/almayer/living/port_emb) "wHn" = ( /obj/structure/sign/safety/autoopenclose{ @@ -78751,9 +64834,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) "wHo" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/almayer/living/briefing) "wHp" = ( /obj/structure/bed/sofa/vert/grey, @@ -78777,15 +64858,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "wIu" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "wIC" = ( /turf/closed/wall/almayer/reinforced, @@ -78807,15 +64884,10 @@ /obj/item/reagent_container/food/condiment/saltshaker{ pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "wIQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/shipboard/brig/cic_hallway) "wIX" = ( /obj/effect/decal/warning_stripes{ @@ -78826,10 +64898,7 @@ dir = 8; id = "almayerlink" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/hallways/lower/port_midship_hallway) "wJb" = ( /turf/open/floor/plating/plating_catwalk, @@ -78849,9 +64918,7 @@ req_one_access_txt = "1;5" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "wJC" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -78870,10 +64937,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/almayer/squads/charlie) "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, @@ -78889,9 +64953,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/port) "wKm" = ( /obj/item/device/radio/intercom{ @@ -78899,19 +64961,14 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_aft_hallway) "wKF" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "wKJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -78937,9 +64994,7 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "wKN" = ( /obj/structure/disposalpipe/segment{ @@ -78975,10 +65030,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) "wLm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/living/cryo_cells) "wLu" = ( /obj/structure/stairs/perspective{ @@ -78995,9 +65047,7 @@ name = "Secure Reinforced Air Vent"; welded = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "wLC" = ( /obj/structure/disposalpipe/segment{ @@ -79013,9 +65063,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/fore_hallway) "wLF" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -79029,9 +65077,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/medical) "wLG" = ( /obj/item/bedsheet/blue{ @@ -79059,10 +65105,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/living/port_emb) "wLK" = ( /obj/structure/surface/table/almayer, @@ -79072,17 +65115,13 @@ /obj/item/tool/kitchen/tray{ pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "wLN" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) "wLS" = ( /obj/structure/disposalpipe/segment{ @@ -79094,9 +65133,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) "wMl" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -79111,41 +65148,30 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_midship_hallway) "wMv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/auxiliary_officer_office) "wMB" = ( /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/hallways/lower/starboard_midship_hallway) "wMF" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) "wMG" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) "wMI" = ( /obj/structure/machinery/light{ @@ -79163,9 +65189,7 @@ dir = 4 }, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) "wNl" = ( /obj/structure/surface/table/almayer, @@ -79187,16 +65211,10 @@ pixel_x = 8; pixel_y = -3 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/living/port_emb) "wNt" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/almayer/shipboard/brig/processing) "wNz" = ( /obj/structure/stairs, @@ -79205,17 +65223,13 @@ vector_x = -19; vector_y = 98 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) "wNC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/midship_hallway) "wNG" = ( /obj/effect/projector{ @@ -79223,17 +65237,13 @@ vector_x = -1; vector_y = 100 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/lower/starboard_fore_hallway) "wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "wNT" = ( /obj/structure/platform, @@ -79247,18 +65257,13 @@ /area/almayer/engineering/upper_engineering/starboard) "wOv" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/port) "wPa" = ( /obj/structure/platform{ @@ -79268,32 +65273,23 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south1) "wPi" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/hallways/lower/port_midship_hallway) "wPz" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "wPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79302,19 +65298,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) "wPF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) "wQu" = ( /obj/effect/projector{ @@ -79322,10 +65313,7 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/almayer/hallways/lower/port_fore_hallway) "wQA" = ( /obj/structure/pipes/standard/simple/visible{ @@ -79335,10 +65323,7 @@ /turf/open/floor/almayer, /area/almayer/engineering/lower) "wQD" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/lower/engine_core) "wQI" = ( /obj/structure/surface/table/almayer, @@ -79346,9 +65331,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_f_s) "wRf" = ( /obj/structure/machinery/light/small, @@ -79359,9 +65342,7 @@ /obj/structure/sign/safety/press_area_ag{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) "wRk" = ( /obj/effect/decal/warning_stripes{ @@ -79377,9 +65358,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/shipboard/brig/cells) "wRO" = ( /obj/structure/disposalpipe/segment{ @@ -79405,9 +65384,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "wSm" = ( /obj/structure/disposalpipe/segment{ @@ -79419,9 +65396,7 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "wSn" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) "wSu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -79438,18 +65413,13 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wSB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) "wSQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/hallways/lower/repair_bay) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -79464,10 +65434,7 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "wSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79476,19 +65443,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) "wTd" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/almayer/command/securestorage) "wTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79497,15 +65458,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "wTm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/living/briefing) "wTn" = ( /obj/structure/machinery/light/small{ @@ -79519,10 +65475,7 @@ /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/maint/upper/mess) "wTw" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ @@ -79531,9 +65484,7 @@ req_one_access_txt = "17;18;21"; vend_y_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "wTB" = ( /obj/structure/surface/table/almayer, @@ -79545,9 +65496,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, @@ -79556,9 +65505,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "wUd" = ( /obj/structure/surface/table/almayer, @@ -79571,15 +65518,10 @@ /area/almayer/medical/morgue) "wUJ" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "wUK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/lower/workshop/hangar) "wUP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79591,10 +65533,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/almayer/living/pilotbunks) "wUX" = ( /obj/structure/surface/rack, @@ -79606,9 +65545,7 @@ pixel_x = 1; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "wVh" = ( /obj/structure/machinery/light{ @@ -79647,17 +65584,13 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) "wVA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "wVB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79666,17 +65599,13 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) "wVN" = ( /obj/item/roller, /obj/structure/surface/rack, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "wVW" = ( /turf/closed/wall/almayer/reinforced, @@ -79690,21 +65619,15 @@ /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Lower Mixed Air Control" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "wWm" = ( -/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/almayer/medical/containment/cell) "wWq" = ( /obj/structure/surface/table/reinforced/black, /obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "wWt" = ( /obj/effect/projector{ @@ -79718,25 +65641,18 @@ /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) "wWC" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/living/pilotbunks) "wWP" = ( /obj/structure/prop/cash_register/broken, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "wWR" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "wWX" = ( /obj/effect/landmark/start/marine/engineer/delta, @@ -79747,15 +65663,11 @@ /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "wXl" = ( /obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wXz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -79770,42 +65682,28 @@ /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) "wXI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/living/grunt_rnr) "wXJ" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "wYa" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north2) "wYd" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "wYr" = ( /obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "wYA" = ( /obj/effect/decal/cleanable/dirt, @@ -79814,15 +65712,11 @@ /area/almayer/lifeboat_pumps/north1) "wYG" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/lower/l_m_s) "wYK" = ( /obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_lobby) "wYS" = ( /obj/structure/disposalpipe/segment{ @@ -79831,10 +65725,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) "wYY" = ( /obj/structure/window/framed/almayer, @@ -79855,10 +65746,7 @@ name = "umbilical wall" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/engineering/upper_engineering/port) "wZE" = ( /obj/structure/surface/table/reinforced/prison, @@ -79866,10 +65754,7 @@ /obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_four) "wZL" = ( /obj/structure/pipes/vents/pump, @@ -79886,10 +65771,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/midship_hallway) "xad" = ( /obj/item/device/radio/intercom{ @@ -79898,15 +65780,11 @@ pixel_y = 28 }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "xas" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, @@ -79952,14 +65830,10 @@ /obj/item/tool/kitchen/utensil/spoon{ pixel_x = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "xaS" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, +/turf/open/floor/almayer/uscm/directional/northeast, /area/almayer/command/lifeboat) "xba" = ( /turf/closed/wall/almayer/reinforced/temphull, @@ -79969,36 +65843,26 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xbg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "xbk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "xbI" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "xcI" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "xcV" = ( /obj/structure/window/framed/almayer, @@ -80006,9 +65870,7 @@ id = "OfficeSafeRoom"; name = "\improper Office Safe Room" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "xdf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -80026,10 +65888,7 @@ pixel_x = -17; pixel_y = -6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) "xdA" = ( /obj/structure/surface/rack{ @@ -80048,9 +65907,7 @@ dir = 4; invisibility = 101 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/execution) "xdP" = ( /obj/structure/surface/table/almayer, @@ -80064,9 +65921,7 @@ pixel_x = -7; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "xee" = ( /obj/structure/disposalpipe/junction{ @@ -80094,9 +65949,7 @@ pixel_x = 14; pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "xer" = ( /obj/structure/machinery/power/apc/almayer, @@ -80108,9 +65961,7 @@ req_one_access = list(19,7); req_access = list() }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/laundry) "xfm" = ( /obj/structure/window/framed/almayer, @@ -80127,9 +65978,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "xfK" = ( /obj/structure/machinery/light{ @@ -80143,9 +65992,7 @@ pixel_y = 29 }, /obj/structure/machinery/vending/ingredients, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "xfO" = ( /obj/effect/decal/warning_stripes{ @@ -80155,10 +66002,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/living/bridgebunks) "xfT" = ( /obj/structure/machinery/disposal, @@ -80169,10 +66013,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/operating_room_one) "xga" = ( /turf/closed/wall/almayer, @@ -80181,22 +66022,15 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lower_medical_lobby) "xgk" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/starboard_midship_hallway) "xgm" = ( /obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "xgr" = ( /obj/structure/ladder{ @@ -80214,10 +66048,7 @@ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lockerroom) "xgN" = ( /obj/structure/bed/chair/comfy/bravo{ @@ -80228,17 +66059,13 @@ dir = 8; pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xgP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/upper_medical) "xgS" = ( /obj/structure/disposalpipe/segment{ @@ -80255,15 +66082,11 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "xhn" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "xhx" = ( /obj/structure/machinery/disposal, @@ -80273,15 +66096,11 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) "xhO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "xhQ" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "xhU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -80310,9 +66129,7 @@ /area/almayer/shipboard/brig/cells) "xiH" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) "xiP" = ( /obj/structure/closet/secure_closet/engineering_welding{ @@ -80349,9 +66166,7 @@ name = "\improper Main Kitchen"; req_one_access_txt = "30;19" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, @@ -80362,17 +66177,13 @@ /turf/open/floor/carpet, /area/almayer/living/commandbunks) "xjz" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/almayer/command/lifeboat) "xjD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "xjF" = ( /obj/structure/machinery/light{ @@ -80390,10 +66201,7 @@ pixel_x = 15; pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/processing) "xjK" = ( /obj/structure/sign/safety/hazard{ @@ -80403,9 +66211,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "xjW" = ( /obj/structure/sign/safety/hazard{ @@ -80426,9 +66232,7 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "xkc" = ( /turf/open/floor/plating/plating_catwalk, @@ -80441,9 +66245,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xkN" = ( /obj/structure/machinery/door_control{ @@ -80454,10 +66256,7 @@ throw_range = 15 }, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/almayer/hallways/lower/starboard_fore_hallway) "xlk" = ( /obj/structure/surface/table/almayer, @@ -80467,10 +66266,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/ce_room) "xlO" = ( /obj/structure/filingcabinet, @@ -80478,10 +66274,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "xmg" = ( /obj/structure/surface/table/almayer, @@ -80491,9 +66284,7 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/almayer/shipboard/brig/cic_hallway) "xmn" = ( /obj/structure/surface/rack, @@ -80506,9 +66297,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "xmJ" = ( /obj/structure/closet, @@ -80516,18 +66305,14 @@ pixel_x = -16; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) "xmP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/almayer/hallways/upper/aft_hallway) "xmT" = ( /obj/structure/machinery/cryopod{ @@ -80536,27 +66321,20 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/medical/lower_medical_medbay) "xnh" = ( /obj/structure/closet, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "xnz" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/command/lifeboat) "xnI" = ( /obj/effect/landmark/start/requisition, @@ -80566,9 +66344,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "xoe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -80580,10 +66356,7 @@ /obj/structure/machinery/status_display{ pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/squads/delta) "xoj" = ( /turf/open/floor/almayer, @@ -80601,24 +66374,17 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/port_point_defense) "xoO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/port) "xpc" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) "xpi" = ( /obj/structure/sink{ @@ -80633,9 +66399,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/commandbunks) "xpl" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -80650,18 +66414,13 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/hallways/lower/port_midship_hallway) "xpw" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/shipboard/brig/medical) "xpL" = ( /obj/structure/machinery/light/small{ @@ -80673,9 +66432,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "xpZ" = ( /obj/structure/stairs/perspective{ @@ -80684,10 +66441,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) "xqh" = ( /obj/structure/surface/table/almayer, @@ -80706,16 +66460,11 @@ pixel_y = 28 }, /obj/structure/machinery/xenoanalyzer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "xqv" = ( /obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/lower_medical_lobby) "xqy" = ( /obj/structure/window/framed/almayer/white, @@ -80740,9 +66489,7 @@ layer = 3.1; name = "\improper Room Divider" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "xrg" = ( /obj/structure/sign/safety/hazard{ @@ -80753,17 +66500,13 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "xrq" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/lifeboat) "xrt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -80773,9 +66516,7 @@ pixel_x = 12; pixel_y = -24 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/chief_mp_office) "xry" = ( /obj/effect/decal/warning_stripes{ @@ -80797,18 +66538,13 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/lower/starboard_fore_hallway) "xrI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) "xrT" = ( /obj/effect/decal/warning_stripes{ @@ -80835,10 +66571,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering) "xss" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -80852,24 +66585,16 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "xsw" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_medbay) "xsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) "xsQ" = ( /obj/structure/surface/table/almayer, @@ -80887,10 +66612,7 @@ /area/almayer/maint/lower/constr) "xtM" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) "xub" = ( /obj/structure/disposalpipe/segment{ @@ -80920,10 +66642,7 @@ /obj/structure/machinery/status_display{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/hallways/lower/port_fore_hallway) "xuE" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ @@ -80946,9 +66665,7 @@ }, /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell) "xuQ" = ( /obj/structure/bed/chair{ @@ -80966,44 +66683,32 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) "xuZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) "xvE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) "xvQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "xvX" = ( /obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/bravo) "xwd" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "xwl" = ( /obj/structure/window/reinforced{ @@ -81014,9 +66719,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha_bravo_shared) "xwm" = ( /obj/structure/sign/safety/security{ @@ -81026,9 +66729,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) "xwp" = ( /obj/item/storage/box/matches{ @@ -81049,31 +66750,22 @@ pixel_x = -8; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "xwE" = ( /obj/structure/bed/chair/comfy/alpha, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xwU" = ( /obj/structure/pipes/vents/pump/no_boom/gas{ vent_tag = "Comms"; dir = 1 }, -/turf/open/floor/almayer/aicore/no_build{ - icon_state = "ai_plates" - }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, /area/almayer/command/airoom) "xwX" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south2) "xxa" = ( /obj/item/stack/sheet/cardboard{ @@ -81081,10 +66773,7 @@ }, /obj/structure/surface/rack, /obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "xxh" = ( /obj/structure/machinery/light/small{ @@ -81099,9 +66788,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/living/commandbunks) "xxi" = ( /obj/structure/desertdam/decals/road_edge{ @@ -81163,9 +66850,7 @@ pixel_x = -2; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "xxI" = ( /obj/structure/cargo_container/wy/mid, @@ -81203,15 +66888,11 @@ dir = 1; pixel_y = 42 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "xxZ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "xyk" = ( /obj/structure/disposalpipe/segment, @@ -81225,10 +66906,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/upper/midship_hallway) "xyt" = ( /obj/structure/surface/table/almayer, @@ -81246,14 +66924,10 @@ /obj/structure/machinery/computer/working_joe{ pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "xyw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "xyB" = ( /obj/effect/decal/warning_stripes{ @@ -81270,18 +66944,13 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) "xyN" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution_storage) "xyQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/hallways/lower/repair_bay) "xyY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -81289,10 +66958,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) "xyZ" = ( /obj/structure/machinery/light/small, @@ -81304,10 +66970,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/almayer/living/basketball) "xzh" = ( /turf/open/floor/plating/plating_catwalk, @@ -81316,9 +66979,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "xzB" = ( /turf/open/floor/plating/plating_catwalk, @@ -81327,10 +66988,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/hallways/lower/port_midship_hallway) "xAe" = ( /turf/closed/wall/almayer/research/containment/wall/corner, @@ -81339,9 +66997,7 @@ /obj/structure/bed/chair/comfy/charlie{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "xAu" = ( /obj/structure/sign/safety/restrictedarea{ @@ -81354,10 +67010,7 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) "xAI" = ( /obj/structure/platform{ @@ -81370,10 +67023,7 @@ dir = 5; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "xAY" = ( /obj/effect/decal/warning_stripes{ @@ -81390,15 +67040,11 @@ linked_dock = "almayer-lifeboat1"; throw_dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) "xBK" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ @@ -81411,15 +67057,11 @@ /obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "xBV" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) "xBW" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -81445,15 +67087,11 @@ /obj/structure/closet/coffin/woodencrate, /obj/item/frame/table/wood/poor, /obj/item/frame/table/wood/poor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "xCb" = ( /obj/structure/closet/secure_closet/fridge/dry, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "xCf" = ( /obj/structure/bed/chair/comfy/orange{ @@ -81462,10 +67100,7 @@ /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "xCs" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/almayer/hallways/upper/midship_hallway) "xCy" = ( /obj/structure/sign/safety/maint{ @@ -81493,21 +67128,14 @@ vector_x = 19; vector_y = -104 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, +/turf/open/floor/almayer/no_build, /area/almayer/hallways/upper/port) "xDn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "xDy" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/u_f_p) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, @@ -81515,20 +67143,14 @@ /area/almayer/command/airoom) "xDF" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "xDV" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) "xEe" = ( /obj/structure/prop/invuln/joey, @@ -81544,21 +67166,14 @@ /obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/operating_room_two) "xEO" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering) "xEX" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) "xFt" = ( /turf/open/floor/plating/plating_catwalk, @@ -81566,32 +67181,22 @@ "xFx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "xFP" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/starboard_missiles) "xFZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) "xGh" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/goldappleseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/shipboard/brig/cells) "xGm" = ( /obj/structure/platform_decoration{ @@ -81601,9 +67206,7 @@ /area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "xGE" = ( /obj/structure/disposalpipe/segment, @@ -81622,18 +67225,14 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/bravo) "xGF" = ( /obj/structure/machinery/vending/snack{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_f_p) "xGI" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -81644,19 +67243,14 @@ /obj/item/weapon/gun/rifle/l42a{ pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_m_s) "xGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_x = -13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) "xGK" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -81667,17 +67261,13 @@ /obj/effect/decal/cleanable/ash{ pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "xGT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "xHa" = ( /obj/structure/surface/rack, @@ -81689,14 +67279,10 @@ /area/almayer/maint/hull/lower/l_a_p) "xHl" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "xHp" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/alpha_bravo_shared) "xHt" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -81709,9 +67295,7 @@ req_one_access = null; req_one_access_txt = "2;7" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering) "xHS" = ( /obj/structure/reagent_dispensers/fueltank/oxygentank{ @@ -81721,26 +67305,20 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) "xHX" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/p_bow) "xId" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/he, /obj/item/mortar_shell/he, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) "xIj" = ( /turf/open/floor/almayer, @@ -81749,9 +67327,7 @@ /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/medical/lower_medical_medbay) "xIq" = ( /obj/structure/machinery/firealarm{ @@ -81772,10 +67348,7 @@ pixel_x = -14; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) "xIQ" = ( /obj/effect/decal/warning_stripes{ @@ -81807,29 +67380,20 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) "xJe" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/almayer/shipboard/brig/cells) "xJh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, /obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "xJp" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "xJH" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie_delta_shared) "xJR" = ( /obj/effect/decal/warning_stripes{ @@ -81858,10 +67422,7 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower) "xKG" = ( /obj/effect/decal/warning_stripes{ @@ -81883,9 +67444,7 @@ /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) "xKT" = ( /obj/effect/decal/cleanable/cobweb, @@ -81901,9 +67460,7 @@ pixel_x = -7; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xLl" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ @@ -81917,24 +67474,18 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/general_equipment) "xLn" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) "xLu" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_s) "xLw" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/hallways/upper/midship_hallway) "xLX" = ( /obj/structure/disposalpipe/junction{ @@ -81944,9 +67495,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_midship_hallway) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -81962,9 +67511,7 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) "xMl" = ( /obj/structure/disposalpipe/segment{ @@ -81981,9 +67528,7 @@ dir = 4 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, @@ -81993,10 +67538,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/hallways/upper/starboard) "xMA" = ( /obj/structure/machinery/computer/med_data, @@ -82004,14 +67546,10 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) "xMB" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, +/turf/open/floor/almayer/uscm/directional/southeast, /area/almayer/command/cic) "xMG" = ( /obj/structure/machinery/door_control{ @@ -82029,9 +67567,7 @@ pixel_y = 5; req_one_access_txt = "1;3" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/panic) "xML" = ( /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ @@ -82039,10 +67575,7 @@ pixel_y = 2 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) "xMO" = ( /obj/effect/decal/warning_stripes{ @@ -82070,9 +67603,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "xNf" = ( /obj/structure/disposalpipe/segment{ @@ -82087,36 +67618,27 @@ /obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/lower) "xNj" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access = null; req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) "xNu" = ( /obj/structure/toilet{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, +/turf/open/floor/almayer/sterile, /area/almayer/medical/upper_medical) "xNv" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/computerlab) "xNz" = ( /obj/structure/surface/table/almayer, @@ -82129,15 +67651,11 @@ /obj/item/storage/box/donkpockets{ pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/auxiliary_officer_office) "xNM" = ( /obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/vehiclehangar) "xOs" = ( /obj/effect/decal/warning_stripes{ @@ -82147,9 +67665,7 @@ /obj/structure/sign/poster/pinup{ pixel_x = -30 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/command/corporateliaison) "xOL" = ( /obj/structure/machinery/disposal, @@ -82161,9 +67677,7 @@ /area/almayer/living/grunt_rnr) "xOT" = ( /obj/structure/closet/secure_closet/fridge/meat/stock, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "xOY" = ( /obj/structure/surface/table/reinforced/prison, @@ -82176,9 +67690,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell) "xPn" = ( /obj/effect/decal/warning_stripes{ @@ -82195,27 +67707,18 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/almayer/hallways/lower/repair_bay) "xPq" = ( /obj/structure/filingcabinet, /obj/item/folder/yellow, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/lower/workshop/hangar) "xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/port) "xQa" = ( /obj/structure/bed/chair/office/dark{ @@ -82228,27 +67731,20 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) "xQe" = ( /obj/structure/machinery/vending/cigarette{ density = 0; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "xQg" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/almayer/living/pilotbunks) "xQj" = ( /obj/item/pipe{ @@ -82258,17 +67754,13 @@ /turf/open/floor/plating, /area/almayer/maint/lower/constr) "xQm" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) "xQz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) "xQV" = ( /obj/effect/step_trigger/clone_cleaner, @@ -82278,9 +67770,7 @@ /obj/structure/sign/safety/bathunisex{ pixel_x = -18 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "xRj" = ( /obj/structure/bed/chair{ @@ -82298,9 +67788,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner, /area/almayer/squads/charlie) "xRk" = ( /obj/structure/machinery/light{ @@ -82310,15 +67798,10 @@ /obj/structure/machinery/computer/view_objectives{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) "xRw" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/north, /area/almayer/living/briefing) "xRH" = ( /obj/structure/sign/safety/fibre_optics{ @@ -82328,17 +67811,13 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "xRJ" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -82351,20 +67830,14 @@ /turf/open/floor/plating, /area/almayer/squads/charlie) "xSx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/hallways/lower/starboard_midship_hallway) "xSz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) "xSM" = ( /obj/structure/machinery/light{ @@ -82378,10 +67851,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) "xSW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/almayer/squads/alpha) "xSY" = ( /obj/structure/machinery/light{ @@ -82391,10 +67861,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/containment) "xTu" = ( /obj/structure/pipes/vents/scrubber{ @@ -82409,16 +67876,12 @@ /obj/structure/closet/emcloset, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "xTH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) "xTR" = ( /obj/structure/window/framed/almayer, @@ -82454,10 +67917,7 @@ /obj/item/bedsheet/red{ pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/almayer/living/port_emb) "xUa" = ( /obj/structure/machinery/light{ @@ -82468,9 +67928,7 @@ "xUy" = ( /obj/item/reagent_container/food/snacks/wrapped/barcardine, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) "xUA" = ( /obj/structure/surface/table/almayer, @@ -82478,23 +67936,17 @@ /obj/structure/sign/safety/life_support{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) "xUB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cic) "xUV" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/combat_correspondent) "xUY" = ( /obj/structure/disposalpipe/segment{ @@ -82503,9 +67955,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, @@ -82526,9 +67976,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/hallways/upper/starboard) "xVk" = ( /turf/open/space, @@ -82541,10 +67989,7 @@ /area/almayer/lifeboat_pumps/south1) "xVI" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/almayer/lifeboat_pumps/north1) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -82564,15 +68009,11 @@ /area/almayer/living/tankerbunks) "xVY" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) "xWd" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/squads/alpha_bravo_shared) "xWo" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -82580,9 +68021,7 @@ req_one_access = null; req_one_access_txt = "19;21" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) "xWp" = ( /turf/open/floor/almayer, @@ -82598,9 +68037,7 @@ pixel_y = -25 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) "xWT" = ( /obj/structure/machinery/shower{ @@ -82617,16 +68054,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) "xXa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/port) "xXd" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/hallways/upper/midship_hallway) "xXh" = ( /turf/closed/wall/almayer/research/containment/wall/west, @@ -82641,9 +68072,7 @@ dir = 2; name = "\improper Isolation Cell" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) "xXl" = ( /obj/effect/decal/warning_stripes{ @@ -82658,31 +68087,22 @@ "xXr" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) "xXT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/hallways/upper/starboard) "xXW" = ( /obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xYf" = ( /obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/sea_office) "xYr" = ( /obj/effect/decal/warning_stripes{ @@ -82708,9 +68128,7 @@ /area/almayer/living/cryo_cells) "xYQ" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "xYZ" = ( /obj/structure/disposalpipe/segment{ @@ -82744,9 +68162,7 @@ }, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xZt" = ( /obj/structure/sign/safety/refridgeration{ @@ -82760,9 +68176,7 @@ dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "xZG" = ( /obj/structure/machinery/light{ @@ -82789,10 +68203,7 @@ /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/hallways/lower/starboard_midship_hallway) "xZU" = ( /obj/structure/machinery/cryopod{ @@ -82801,18 +68212,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "yac" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/south1) "yap" = ( /obj/effect/decal/warning_stripes{ @@ -82822,9 +68228,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) "yat" = ( /turf/closed/wall/almayer, @@ -82836,9 +68240,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/officer_study) "yaF" = ( /obj/structure/pipes/standard/simple/visible{ @@ -82851,9 +68253,7 @@ pixel_x = 14; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/lower) "yaQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ @@ -82869,10 +68269,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/hallways/lower/vehiclehangar) "yaZ" = ( /obj/effect/decal/warning_stripes{ @@ -82922,9 +68319,7 @@ phone_id = "Port Railgun Control"; pixel_x = -26 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) "ycd" = ( /obj/structure/bed/chair{ @@ -82947,45 +68342,33 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "ycH" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox/margherita{ pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) "ycM" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_p) "ycZ" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) "ydf" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) "ydh" = ( /obj/structure/pipes/vents/pump{ @@ -82993,17 +68376,13 @@ }, /obj/structure/surface/table/reinforced/black, /obj/item/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) "ydz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) "ydA" = ( /obj/structure/stairs{ @@ -83014,18 +68393,14 @@ vector_x = -1; vector_y = 102 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, +/turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_fore_hallway) "ydE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "ydI" = ( /obj/effect/decal/warning_stripes{ @@ -83042,9 +68417,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) "ydO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -83053,17 +68426,13 @@ /obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) "ydY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "yeg" = ( /obj/structure/sign/safety/escapepod{ @@ -83073,9 +68442,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/almayer/hallways/upper/fore_hallway) "yei" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -83111,9 +68478,7 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ @@ -83125,9 +68490,7 @@ /area/almayer/shipboard/brig/chief_mp_office) "yfd" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/lower/vehiclehangar) "yff" = ( /obj/structure/machinery/cm_vending/clothing/dress{ @@ -83137,9 +68500,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/command/cic) "yfg" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -83151,15 +68512,11 @@ "yfm" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "yfn" = ( /obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) "yfy" = ( /obj/structure/barricade/handrail{ @@ -83192,9 +68549,7 @@ /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) "ygp" = ( /obj/structure/disposalpipe/segment, @@ -83219,10 +68574,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/almayer/hallways/lower/starboard_midship_hallway) "ygP" = ( /obj/item/fuel_cell, @@ -83230,9 +68582,7 @@ /obj/item/fuel_cell, /obj/structure/surface/table/almayer, /obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) "yhg" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -83247,15 +68597,10 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/almayer/living/cryo_cells) "yhI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/almayer/lifeboat_pumps/south1) "yhR" = ( /obj/structure/machinery/light/small{ @@ -83268,9 +68613,7 @@ dir = 1; name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/mp_bunks) "yhZ" = ( /turf/closed/wall/almayer/reinforced, @@ -83283,9 +68626,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) "yiu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -83301,9 +68642,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) "yiX" = ( /obj/structure/machinery/camera/autoname/almayer{ @@ -83322,19 +68661,14 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/morgue) "yjq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "n_engi_ext" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/notunnel) "yjr" = ( /obj/docking_port/stationary/escape_pod/north, @@ -83345,9 +68679,7 @@ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ @@ -83362,15 +68694,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/pilotbunks) "yjU" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) "ykj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -83379,9 +68706,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Rest and Relaxation Area" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) "yko" = ( /obj/vehicle/powerloader, @@ -83391,18 +68716,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/lower/repair_bay) "ykv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "InnerShutter"; name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/panic) "ykI" = ( /obj/effect/decal/warning_stripes{ @@ -83413,15 +68734,11 @@ "yle" = ( /obj/effect/landmark/start/marine/engineer/delta, /obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) "ylh" = ( /obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/almayer/engineering/lower/engine_core) "ylN" = ( /obj/structure/sign/safety/galley{ @@ -83436,9 +68753,7 @@ layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) (1,1,1) = {" diff --git a/maps/map_files/USS_Runtime/USS_Runtime.dmm b/maps/map_files/USS_Runtime/USS_Runtime.dmm index 3ffdaf8a1814..6dae65b01699 100644 --- a/maps/map_files/USS_Runtime/USS_Runtime.dmm +++ b/maps/map_files/USS_Runtime/USS_Runtime.dmm @@ -3,201 +3,135 @@ /turf/closed/wall/r_wall/bunker, /area/event) "b" = ( -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "c" = ( /obj/effect/landmark/start/engineering, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "d" = ( /obj/effect/landmark/start/working_joe, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "e" = ( /obj/effect/landmark/start/requisition, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "h" = ( /obj/effect/landmark/start/police, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "k" = ( /obj/effect/landmark/start/liaison, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "l" = ( /obj/effect/landmark/start/marine/medic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "n" = ( /obj/effect/landmark/start/professor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "q" = ( /obj/effect/landmark/start/warden, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "r" = ( /obj/effect/landmark/start/maint, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "s" = ( /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "t" = ( /obj/effect/landmark/start/marine/engineer, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "u" = ( /obj/effect/landmark/start/otech, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "v" = ( /obj/effect/landmark/start/marine, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "x" = ( /obj/effect/landmark/start/captain, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "z" = ( /obj/effect/landmark/start/pilot/dropship_pilot, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "A" = ( /obj/effect/landmark/start/cargo, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "C" = ( /obj/effect/landmark/start/bridge, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "D" = ( /obj/effect/landmark/start/warrant, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "F" = ( /obj/effect/landmark/start/marine/tl, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "G" = ( /obj/effect/landmark/start/marine/spec, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "I" = ( /obj/effect/landmark/start/synthetic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "J" = ( /obj/effect/landmark/start/executive, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "L" = ( /obj/effect/landmark/start/researcher, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "M" = ( /obj/effect/landmark/start/pilot/cas_pilot, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "N" = ( /obj/effect/landmark/start/nurse, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "P" = ( /obj/effect/landmark/start/doctor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "Q" = ( /obj/effect/landmark/start/senior, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "R" = ( /obj/effect/landmark/start/marine/smartgunner, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "T" = ( /obj/effect/landmark/start/marine/leader, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "U" = ( /obj/effect/landmark/start/intel, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "V" = ( /obj/effect/landmark/start/crew_chief, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "W" = ( /obj/effect/landmark/start/chef, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) (1,1,1) = {" diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index 46200d9f79e4..2d5bc23cb5a3 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -4,10 +4,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south) "ab" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "ac" = ( /turf/closed/wall/strata_ice/jungle, @@ -20,10 +17,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "ae" = ( /obj/structure/machinery/light{ @@ -75,22 +69,16 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "an" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "ao" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "ap" = ( /obj/structure/surface/table/reinforced/prison, @@ -101,17 +89,13 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "aq" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "as" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -125,19 +109,13 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "at" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "au" = ( /obj/structure/closet/secure_closet/commander, @@ -146,9 +124,7 @@ "av" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "ax" = ( /obj/structure/surface/table/woodentable/fancy, @@ -167,9 +143,7 @@ /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) "aC" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "aE" = ( /obj/structure/bed, @@ -183,10 +157,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) "aG" = ( /obj/structure/curtain/black, @@ -195,15 +166,11 @@ /area/whiskey_outpost/inside/caves/caverns) "aH" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "aI" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "aJ" = ( /obj/structure/window/reinforced{ @@ -219,9 +186,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "aK" = ( /turf/open/gm/dirtgrassborder/west, @@ -253,10 +218,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "aQ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -264,50 +226,31 @@ req_access_txt = "19"; req_one_access = null }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "aS" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "aV" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "aW" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "aZ" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "ba" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bb" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "bc" = ( /obj/structure/disposalpipe/segment, @@ -329,25 +272,17 @@ pixel_x = 30; req_access = null }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "be" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "bf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "bh" = ( /obj/structure/sign/poster, @@ -355,17 +290,11 @@ /area/whiskey_outpost/outside/south/far) "bi" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "bj" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) "bl" = ( /turf/open/jungle, @@ -375,17 +304,13 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "bo" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/whiskey_outpost/outside/lane/two_south) "bp" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "bs" = ( /turf/open/floor/carpet, @@ -396,48 +321,33 @@ /obj/item/storage/backpack/marine, /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/industrial, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "bu" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bw" = ( /obj/structure/machinery/cryopod, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "bx" = ( /obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bz" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "bA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "bB" = ( /obj/structure/disposalpipe/segment{ @@ -448,10 +358,7 @@ /area/whiskey_outpost/inside/bunker) "bC" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "bD" = ( /obj/structure/disposalpipe/segment, @@ -462,10 +369,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) "bG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "bK" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -482,18 +386,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "bP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "bQ" = ( /obj/structure/curtain, @@ -549,9 +448,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "ca" = ( /obj/structure/surface/table/reinforced/prison, @@ -571,19 +468,14 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cb" = ( /obj/structure/machinery/shower{ dir = 8; layer = 3.3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "ce" = ( /turf/open/gm/dirt, @@ -602,10 +494,7 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "cm" = ( /obj/structure/machinery/light/small{ @@ -617,10 +506,7 @@ "cn" = ( /obj/effect/landmark/start/whiskey/leader, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "co" = ( /obj/structure/disposalpipe/segment{ @@ -629,10 +515,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/whiskey_outpost/inside/bunker) "cp" = ( /obj/structure/surface/table/woodentable/fancy, @@ -656,16 +539,11 @@ /area/whiskey_outpost/inside/living) "ct" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "cu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "cw" = ( /obj/structure/barricade/metal/wired, @@ -675,20 +553,14 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "cy" = ( /obj/structure/largecrate/supply/supplies/mre, /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/whiskey_outpost/inside/living) "cz" = ( /turf/open/floor/wood, @@ -702,10 +574,7 @@ /area/whiskey_outpost/outside/lane/two_south) "cB" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "cC" = ( /obj/structure/sign/poster, @@ -716,9 +585,7 @@ name = "Success Cabinet"; req_access_txt = "1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "cE" = ( /obj/structure/window/reinforced/tinted/frosted, @@ -728,17 +595,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "cF" = ( /obj/structure/mirror{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "cG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -761,9 +624,7 @@ /obj/structure/machinery/computer/card{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "cL" = ( /obj/structure/surface/table/woodentable/fancy, @@ -779,9 +640,7 @@ /area/whiskey_outpost/inside/cic) "cO" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "cP" = ( /obj/structure/bed/chair{ @@ -794,9 +653,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cR" = ( /turf/open/gm/dirtgrassborder/west, @@ -809,18 +666,14 @@ /area/whiskey_outpost/inside/living) "cT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital) "cX" = ( /obj/structure/machinery/optable, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cY" = ( /obj/structure/machinery/colony_floodlight, @@ -833,15 +686,11 @@ /area/whiskey_outpost/outside/lane/two_south) "da" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "dc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/living) "dd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -901,9 +750,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "ds" = ( /obj/structure/machinery/door/window/westright{ @@ -912,15 +759,10 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "du" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker/bunker/front) "dv" = ( /obj/structure/flora/jungle/plantbot1, @@ -934,9 +776,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "dA" = ( /obj/structure/surface/table, @@ -967,9 +807,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "dF" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -986,9 +824,7 @@ /area/whiskey_outpost/outside/lane/three_south) "dJ" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/whiskey_outpost/inside/bunker/bunker/front) "dM" = ( /turf/closed/shuttle/dropship{ @@ -997,18 +833,14 @@ /area/whiskey_outpost/outside/lane/four_north) "dN" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "dO" = ( /obj/structure/safe, /obj/item/moneybag, /obj/item/clothing/glasses/monocle, /obj/item/weapon/telebaton, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "dP" = ( /obj/structure/surface/table/reinforced/prison, @@ -1021,10 +853,7 @@ /obj/item/storage/box/gloves, /obj/item/tool/hand_labeler, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "dQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -1044,10 +873,7 @@ /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "dS" = ( /obj/structure/window/framed/colony/reinforced, @@ -1068,10 +894,7 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "dU" = ( /obj/structure/machinery/light{ @@ -1081,9 +904,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "dW" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "dY" = ( /obj/structure/surface/table/reinforced/prison, @@ -1106,18 +927,13 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "ea" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "eb" = ( /obj/structure/machinery/light/small{ @@ -1126,16 +942,10 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) "ed" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "ee" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/whiskey_outpost/inside/cic) "eg" = ( /obj/structure/sign/safety/medical{ @@ -1152,20 +962,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "ej" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/four_south) "ek" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "eo" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -1223,9 +1027,7 @@ /area/whiskey_outpost/inside/bunker) "eD" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "eF" = ( /obj/structure/machinery/power/apc/almayer{ @@ -1240,19 +1042,14 @@ /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/m56d, /obj/effect/landmark/wo_supplies/storage/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "eJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "eK" = ( /turf/open/gm/river, @@ -1261,24 +1058,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "eN" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "eO" = ( /obj/structure/bed/stool, /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "eP" = ( /obj/structure/bed/chair{ @@ -1295,10 +1085,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) "eS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "eT" = ( /obj/structure/window/reinforced{ @@ -1314,17 +1101,12 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "eU" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox/emergency, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "eW" = ( /obj/structure/surface/rack, @@ -1332,9 +1114,7 @@ dir = 1 }, /obj/structure/largecrate/supply/ammo/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "eX" = ( /obj/structure/machinery/light{ @@ -1349,20 +1129,14 @@ "eZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/curtain, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fb" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/three_north) "fc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fd" = ( /obj/effect/landmark/start/whiskey/leader, @@ -1380,9 +1154,7 @@ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "fh" = ( /obj/structure/surface/table/reinforced/prison, @@ -1393,9 +1165,7 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fi" = ( /obj/structure/sign/safety/chem_lab, @@ -1407,9 +1177,7 @@ "fl" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "fo" = ( /obj/structure/curtain, @@ -1421,10 +1189,7 @@ /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "fq" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -1435,10 +1200,7 @@ icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fr" = ( /obj/effect/landmark/start/whiskey/marine, @@ -1449,10 +1211,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) "fu" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/whiskey_outpost/outside/north/northeast) "fv" = ( /obj/structure/barricade/handrail/wire{ @@ -1464,9 +1223,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "fx" = ( /turf/open/floor/prison, @@ -1476,16 +1233,12 @@ /area/whiskey_outpost/outside/north/beach) "fA" = ( /obj/effect/landmark/start/whiskey/executive, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fB" = ( /obj/structure/bed/chair/comfy, /obj/effect/landmark/start/whiskey/commander, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fC" = ( /obj/structure/barricade/handrail{ @@ -1499,32 +1252,22 @@ dir = 8 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fF" = ( /obj/effect/landmark/start/whiskey/warrant, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fG" = ( /obj/effect/landmark/start/whiskey/engineering, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "fH" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "Hypersleep Room"; req_one_access_txt = "2;8;19" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fI" = ( /obj/structure/platform{ @@ -1545,10 +1288,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fQ" = ( /obj/structure/flora/jungle/planttop1, @@ -1572,31 +1312,21 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "fU" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "fV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fW" = ( /obj/structure/machinery/smartfridge/chemistry, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fX" = ( /obj/structure/barricade/sandbags/wired, @@ -1609,16 +1339,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "fZ" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "ga" = ( /obj/structure/disposalpipe/junction{ @@ -1635,10 +1360,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gh" = ( /obj/effect/decal/medical_decals{ @@ -1646,10 +1368,7 @@ icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gi" = ( /obj/effect/decal/medical_decals{ @@ -1659,19 +1378,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_north) "gl" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "gn" = ( /obj/item/stack/cable_coil/cut, @@ -1679,9 +1393,7 @@ /area/whiskey_outpost/outside/lane/two_south) "go" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "gp" = ( /obj/structure/sign/prop1, @@ -1705,10 +1417,7 @@ pixel_x = 30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "gu" = ( /turf/open/gm/dirtgrassborder/south, @@ -1734,18 +1443,14 @@ /obj/structure/machinery/computer/card{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gC" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/map_item, /obj/item/folder/black_random, /obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gE" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1753,9 +1458,7 @@ dir = 1; layer = 2.99 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gF" = ( /obj/structure/sign/poster{ @@ -1769,10 +1472,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "gH" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/lane/one_north) "gI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -1780,18 +1480,14 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "gJ" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "gL" = ( /obj/structure/disposalpipe/segment, @@ -1805,10 +1501,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) "gN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/whiskey_outpost/inside/hospital) "gO" = ( /obj/structure/machinery/conveyor_switch{ @@ -1817,9 +1510,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/whiskey_outpost/inside/supply) "gP" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -1827,10 +1518,7 @@ name = "Operating Theatre"; req_one_access_txt = "2;8;19" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/hospital) "gS" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -1839,16 +1527,12 @@ req_one_access_txt = "2;8;19" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "gT" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gU" = ( /turf/open/gm/river, @@ -1862,22 +1546,16 @@ /obj/structure/prop/almayer/computers/sensor_computer1{ name = "radar computer" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "hb" = ( /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "hd" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -1908,9 +1586,7 @@ dir = 8 }, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "hk" = ( /obj/structure/bed/chair/office/dark{ @@ -1925,10 +1601,7 @@ dir = 1; icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hm" = ( /obj/structure/machinery/light/small{ @@ -1938,10 +1611,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "hn" = ( /obj/structure/window/framed/colony/reinforced, @@ -1974,10 +1644,7 @@ /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_north) "ht" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "hu" = ( /obj/structure/surface/table/reinforced/prison, @@ -2013,10 +1680,7 @@ pixel_y = 28 }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "hy" = ( /obj/item/lightstick/red/planted, @@ -2030,10 +1694,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hA" = ( /obj/structure/disposalpipe/segment{ @@ -2056,10 +1717,7 @@ dir = 4; sortType = "Chemistry" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hC" = ( /obj/structure/sign/prop1, @@ -2067,18 +1725,10 @@ /area/whiskey_outpost/inside/caves/tunnel) "hD" = ( /obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "hE" = ( /obj/effect/decal/medical_decals{ @@ -2089,10 +1739,7 @@ dir = 4; sortType = "Hospital" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hF" = ( /obj/effect/decal/medical_decals{ @@ -2102,17 +1749,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hH" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "hI" = ( /turf/open/gm/grass/gbcorner/south_west, @@ -2143,24 +1784,17 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "hO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) "hQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) "hR" = ( /obj/structure/platform_decoration{ @@ -2169,10 +1803,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south) "hS" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/lane/one_north) "hT" = ( /obj/structure/pipes/standard/tank/oxygen, @@ -2180,19 +1811,14 @@ pixel_x = -6; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "hV" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "hW" = ( /obj/structure/machinery/light{ @@ -2204,9 +1830,7 @@ /obj/structure/machinery/sleep_console{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "hY" = ( /obj/structure/window/reinforced{ @@ -2222,9 +1846,7 @@ /obj/structure/bed{ can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "hZ" = ( /obj/structure/machinery/vending/cola, @@ -2243,9 +1865,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "ih" = ( /obj/structure/machinery/light{ @@ -2259,9 +1879,7 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "ij" = ( /obj/effect/decal/cleanable/blood/oil, @@ -2272,9 +1890,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "il" = ( /obj/structure/machinery/vending/coffee, @@ -2287,19 +1903,13 @@ /obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "in" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "io" = ( /obj/structure/flora/jungle/plantbot1, @@ -2313,10 +1923,7 @@ /area/whiskey_outpost/outside/lane/four_north) "iq" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/living) "is" = ( /obj/structure/disposalpipe/trunk, @@ -2331,10 +1938,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "iu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) "iv" = ( /obj/structure/platform{ @@ -2346,22 +1950,14 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "iw" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/northeast) "iy" = ( /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "iz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -2372,9 +1968,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iA" = ( /obj/structure/barricade/plasteel/wired, @@ -2384,9 +1978,7 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iC" = ( /obj/structure/disposalpipe/segment{ @@ -2406,18 +1998,12 @@ /area/whiskey_outpost/outside/lane/two_south) "iI" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "iJ" = ( /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/medical_supply_link/green, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "iK" = ( /obj/structure/machinery/door/poddoor{ @@ -2448,16 +2034,11 @@ "iN" = ( /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/medical_supply_link/green, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "iO" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "iP" = ( /obj/structure/disposalpipe/segment{ @@ -2465,24 +2046,16 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "iQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "iR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "iS" = ( /obj/effect/landmark/start/whiskey/police, @@ -2505,9 +2078,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iY" = ( /obj/structure/surface/table/reinforced/prison, @@ -2520,9 +2091,7 @@ }, /obj/item/tool/pen, /obj/item/paper_bin, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "iZ" = ( /obj/structure/machinery/autodoc_console, @@ -2530,10 +2099,7 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "jb" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -2541,20 +2107,14 @@ icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "je" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "jf" = ( /obj/effect/spawner/gibspawner/human, @@ -2577,10 +2137,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "jj" = ( /obj/structure/machinery/medical_pod/bodyscanner{ @@ -2590,9 +2147,7 @@ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "jk" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, @@ -2600,9 +2155,7 @@ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "jl" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -2612,9 +2165,7 @@ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "jm" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -2623,9 +2174,7 @@ "jn" = ( /obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "jo" = ( /obj/structure/bed/chair/office/dark{ @@ -2663,20 +2212,14 @@ pixel_x = -30; req_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "jt" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/whiskey_outpost/inside/cic) "ju" = ( /obj/item/toy/beach_ball/holoball, @@ -2684,42 +2227,30 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "jv" = ( /obj/structure/surface/rack, /obj/structure/largecrate/supply/ammo/sentry, /obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "jA" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "jB" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker/bunker/front) "jD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "jE" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "jF" = ( /obj/structure/surface/table/reinforced/prison, @@ -2735,58 +2266,38 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "jG" = ( /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "jH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "jI" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "jJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/whiskey_outpost/inside/hospital) "jL" = ( /obj/structure/platform_decoration, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) "jM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/living) "jN" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/whiskey_outpost/inside/cic) "jP" = ( /turf/closed/shuttle/dropship{ @@ -2847,15 +2358,11 @@ layer = 3.2; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "jZ" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "ka" = ( /obj/structure/sign/poster{ @@ -2867,9 +2374,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "ke" = ( /obj/item/lightstick/red/planted, @@ -2881,26 +2386,17 @@ icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "kh" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kk" = ( /obj/structure/machinery/disposal, @@ -2932,45 +2428,32 @@ dir = 4 }, /obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "kq" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "ks" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) "kt" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "kv" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kw" = ( /obj/effect/decal/medical_decals{ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kx" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "ky" = ( /obj/structure/disposalpipe/segment{ @@ -2980,18 +2463,12 @@ /area/whiskey_outpost/outside/lane/two_north) "kz" = ( /obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "kA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/bodybags, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kB" = ( /obj/structure/flora/jungle/plantbot1, @@ -3008,15 +2485,11 @@ id = "WOlineshutters2"; name = "\improper Supply Depo Line 2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "kE" = ( /obj/structure/machinery/computer/cryopod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "kG" = ( /obj/structure/bed/chair{ @@ -3026,28 +2499,21 @@ /area/whiskey_outpost/inside/living) "kI" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "kJ" = ( /obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kK" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/whiskey_outpost/inside/cic) "kM" = ( /obj/structure/machinery/sleep_console, @@ -3055,23 +2521,16 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "kN" = ( /obj/structure/machinery/iv_drip, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kO" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kP" = ( /obj/structure/machinery/sleep_console{ @@ -3082,10 +2541,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "kQ" = ( /obj/structure/platform{ @@ -3097,10 +2553,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) "kV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "kX" = ( /obj/structure/machinery/medical_pod/sleeper{ @@ -3110,34 +2563,23 @@ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kY" = ( /obj/effect/landmark/start/whiskey/cmo, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "la" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "lc" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/north/northeast) "ld" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "le" = ( /obj/structure/surface/table, @@ -3156,9 +2598,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lj" = ( /obj/structure/disposalpipe/segment{ @@ -3171,29 +2611,21 @@ /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/south) "lm" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lo" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lp" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) "lq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker) "lr" = ( /obj/structure/disposalpipe/segment, @@ -3210,9 +2642,7 @@ "lt" = ( /obj/structure/bed/roller, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "lu" = ( /obj/structure/surface/table, @@ -3226,18 +2656,14 @@ /obj/item/device/flashlight/lamp, /obj/item/tool/extinguisher, /obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lw" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) "lx" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "lA" = ( /turf/closed/wall/rock/brown, @@ -3245,10 +2671,7 @@ "lB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/facepaint/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lC" = ( /obj/structure/disposalpipe/segment{ @@ -3288,10 +2711,7 @@ pixel_x = -30; req_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "lH" = ( /obj/structure/disposalpipe/segment{ @@ -3326,10 +2746,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lP" = ( /obj/structure/surface/table, @@ -3338,10 +2755,7 @@ /area/whiskey_outpost/inside/living) "lS" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "lU" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -3362,9 +2776,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "lX" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -3381,12 +2793,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"mb" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "mc" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ @@ -3395,9 +2801,7 @@ /turf/open/floor/prison, /area/whiskey_outpost) "md" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "mf" = ( /turf/open/jungle, @@ -3406,9 +2810,7 @@ /turf/open/floor/prison, /area/whiskey_outpost) "mi" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "mj" = ( /obj/effect/spawner/gibspawner/human, @@ -3416,25 +2818,17 @@ /area/whiskey_outpost/outside/lane/one_south) "ml" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "mn" = ( /obj/structure/surface/rack, /obj/item/storage/large_holster/machete/full, /obj/item/storage/large_holster/machete/full, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "mo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "mp" = ( /obj/structure/barricade/sandbags/wired{ @@ -3462,9 +2856,7 @@ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "mw" = ( /turf/open/gm/dirtgrassborder/west, @@ -3474,9 +2866,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "my" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -3492,9 +2882,7 @@ }, /obj/item/weapon/gun/rifle/lmg, /obj/item/weapon/gun/rifle/lmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "mC" = ( /obj/structure/machinery/power/apc/almayer{ @@ -3504,10 +2892,7 @@ /area/whiskey_outpost) "mD" = ( /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "mE" = ( /obj/structure/machinery/autodoc_console{ @@ -3518,10 +2903,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "mF" = ( /obj/structure/surface/table, @@ -3550,10 +2932,7 @@ /obj/item/device/whistle{ pixel_y = 14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "mI" = ( /obj/structure/sign/poster, @@ -3565,31 +2944,23 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "mL" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mM" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; name = "\improper Combat Information Center" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mN" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mQ" = ( /obj/structure/disposalpipe/segment, @@ -3611,10 +2982,7 @@ }, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "mT" = ( /turf/closed/wall/rock/brown, @@ -3624,9 +2992,7 @@ dir = 8; id = "crate" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "mV" = ( /obj/structure/sign/poster{ @@ -3656,9 +3022,7 @@ pixel_x = 20 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "nb" = ( /obj/structure/machinery/autodoc_console, @@ -3666,10 +3030,7 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "nc" = ( /obj/structure/disposalpipe/trunk, @@ -3677,25 +3038,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nd" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/whiskey_outpost/inside/hospital/triage) "nf" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "ng" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -3709,10 +3062,7 @@ dir = 1 }, /obj/structure/medical_supply_link, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nj" = ( /turf/open/gm/grass/gbcorner/south_west, @@ -3729,29 +3079,20 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "nn" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "no" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "np" = ( /obj/structure/sign/safety/medical{ @@ -3772,10 +3113,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "nt" = ( /obj/structure/barricade/sandbags/wired{ @@ -3783,47 +3121,30 @@ icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "nv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost) "nw" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost) "ny" = ( /obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nz" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "nA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Hospital"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "nB" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -3890,10 +3211,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nO" = ( /obj/structure/sign/safety/medical, @@ -3902,10 +3220,7 @@ "nR" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /obj/structure/medical_supply_link, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nS" = ( /obj/structure/disposalpipe/segment{ @@ -3918,17 +3233,11 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Mortar Pit" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "nW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "nY" = ( /obj/structure/machinery/light/small{ @@ -3936,15 +3245,10 @@ }, /obj/item/storage/belt/medical/lifesaver/full, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "oa" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "ob" = ( /obj/structure/barricade/plasteel/wired, @@ -3952,9 +3256,7 @@ /area/whiskey_outpost/outside/lane/two_north) "od" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/whiskey_outpost/inside/living) "oe" = ( /obj/structure/sign/safety/medical{ @@ -3963,10 +3265,7 @@ /turf/closed/wall/r_wall, /area/whiskey_outpost) "of" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "oi" = ( /obj/structure/sign/poster, @@ -3974,10 +3273,7 @@ /area/whiskey_outpost/inside/hospital/triage) "om" = ( /obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "oo" = ( /obj/structure/machinery/light/small{ @@ -3987,16 +3283,11 @@ /area/whiskey_outpost/inside/living) "oq" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "or" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) "os" = ( /obj/structure/shuttle/engine/propulsion{ @@ -4012,35 +3303,24 @@ /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "ow" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "ox" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "oy" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "oz" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -4059,18 +3339,12 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "oD" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "oE" = ( /obj/structure/largecrate/supply/explosives/mortar_he, @@ -4078,60 +3352,42 @@ /area/whiskey_outpost/inside/caves/caverns) "oF" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "oG" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; sortType = "CIC" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oH" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "11" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oK" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oO" = ( /obj/structure/largecrate/supply/explosives/mortar_incend, @@ -4142,15 +3398,10 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oQ" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital) "oS" = ( /obj/structure/curtain/black, @@ -4162,19 +3413,13 @@ /area/whiskey_outpost/inside/hospital) "oW" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "oY" = ( /obj/structure/disposalpipe/segment{ @@ -4186,18 +3431,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "pc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "pe" = ( /obj/effect/landmark/start/whiskey/pilot, @@ -4213,10 +3453,7 @@ /area/whiskey_outpost/outside/lane/two_south) "pk" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "pm" = ( /obj/effect/decal/cleanable/blood/writing, @@ -4229,10 +3466,7 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "pq" = ( /turf/closed/wall/r_wall, @@ -4255,19 +3489,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "px" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "py" = ( /obj/structure/barricade/sandbags/wired{ @@ -4281,18 +3509,14 @@ dir = 1; name = "\improper Mortar Pit" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "pA" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "pD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -4302,10 +3526,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "pF" = ( /obj/structure/machinery/light/small{ @@ -4331,26 +3552,17 @@ dir = 1; sortType = "Engineering" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "pJ" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "pK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "pL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -4380,10 +3592,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "pR" = ( /obj/structure/surface/rack, @@ -4446,16 +3655,11 @@ pixel_x = -30 }, /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "qf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/living) "qg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -4486,20 +3690,14 @@ dir = 8; name = "\improper Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "ql" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "qn" = ( /obj/structure/extinguisher_cabinet, @@ -4510,41 +3708,29 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "qp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "qq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "qs" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "qt" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_south) "qu" = ( /obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qv" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -4564,67 +3750,44 @@ }, /obj/item/roller/surgical, /obj/item/roller/surgical, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "qx" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qz" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) "qB" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "qC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qE" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qF" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "qG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qH" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qI" = ( /obj/structure/barricade/metal/wired, @@ -4632,10 +3795,7 @@ icon_state = "cartridge_2_1"; layer = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "qJ" = ( /obj/structure/disposalpipe/segment{ @@ -4648,17 +3808,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "qK" = ( /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "qL" = ( /obj/structure/disposalpipe/segment{ @@ -4666,29 +3820,21 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "qM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "qN" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "qO" = ( /obj/structure/barricade/sandbags/wired{ @@ -4702,19 +3848,13 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "qP" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/whiskey_outpost) "qR" = ( /obj/structure/disposalpipe/segment{ @@ -4728,16 +3868,10 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "qU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "qW" = ( /obj/structure/machinery/power/apc/almayer{ @@ -4750,10 +3884,7 @@ dir = 1; id = "WOline2" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "qY" = ( /turf/open/gm/grass/grassbeach/west, @@ -4786,17 +3917,11 @@ /area/whiskey_outpost/inside/engineering) "rf" = ( /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "ri" = ( /obj/item/storage/toolbox/mechanical, @@ -4806,22 +3931,15 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "rk" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "rl" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/whiskey_outpost/outside/north/northeast) "rm" = ( /obj/structure/window/framed/colony/reinforced, @@ -4840,10 +3958,7 @@ /area/whiskey_outpost/inside/engineering) "rt" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/lane/one_north) "ru" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -4851,17 +3966,11 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -4874,19 +3983,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "rA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "rB" = ( /obj/structure/disposalpipe/segment{ @@ -4895,9 +3998,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) "rC" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "rD" = ( /obj/structure/window/reinforced{ @@ -4916,9 +4017,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "rE" = ( /obj/structure/machinery/light/small, @@ -4929,32 +4028,20 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "rG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "rI" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "rJ" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "rL" = ( /obj/structure/disposalpipe/segment, @@ -4969,9 +4056,7 @@ not_weldable = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "rN" = ( /obj/structure/mortar/wo, @@ -4996,35 +4081,26 @@ /area/whiskey_outpost/outside/north/beach) "rS" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "rT" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_south) "rV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rW" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "rX" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "rY" = ( /obj/structure/disposalpipe/segment{ @@ -5039,10 +4115,7 @@ "sa" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "sb" = ( /obj/structure/disposalpipe/segment{ @@ -5059,19 +4132,13 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "se" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Generator Hatch" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sg" = ( /obj/item/storage/box/lightstick, @@ -5100,9 +4167,7 @@ /area/whiskey_outpost/inside/engineering) "sh" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "si" = ( /obj/effect/spawner/gibspawner/human, @@ -5110,26 +4175,18 @@ /area/whiskey_outpost/outside/lane/four_south) "sk" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "sl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sn" = ( /turf/closed/wall/r_wall, @@ -5143,10 +4200,7 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sq" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -5156,10 +4210,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/whiskey_outpost/inside/engineering) "ss" = ( /obj/structure/platform_decoration{ @@ -5177,19 +4228,14 @@ /area/whiskey_outpost/inside/supply) "sx" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "sA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/two_south) "sC" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "sD" = ( /obj/structure/barricade/handrail{ @@ -5198,9 +4244,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) "sI" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/living) "sJ" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/wo, @@ -5210,9 +4254,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "sL" = ( /obj/structure/disposalpipe/segment, @@ -5246,19 +4288,13 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sR" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sU" = ( /turf/closed/wall/r_wall/unmeltable, @@ -5272,27 +4308,18 @@ }, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "sX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "sY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) "tc" = ( /obj/structure/disposalpipe/segment{ @@ -5318,19 +4345,13 @@ /area/whiskey_outpost/outside/south) "tj" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "tk" = ( /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/whiskey_outpost/inside/bunker) "tl" = ( /obj/structure/sign/nosmoking_1, @@ -5341,10 +4362,7 @@ /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital/triage) "to" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "tp" = ( /obj/structure/surface/table/almayer, @@ -5377,15 +4395,10 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "tv" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/engineering) "tw" = ( /obj/structure/window/reinforced{ @@ -5399,16 +4412,10 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "tz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) "tA" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -5445,27 +4452,19 @@ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "tG" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "tH" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "crate0" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "tI" = ( /obj/structure/extinguisher_cabinet, @@ -5486,10 +4485,7 @@ /area/whiskey_outpost/outside/north) "tL" = ( /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "tN" = ( /obj/structure/sign/prop3, @@ -5521,30 +4517,21 @@ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "tV" = ( /obj/structure/holohoop{ density = 0; pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "tY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northeast, /area/whiskey_outpost/inside/cic) "ua" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -5567,9 +4554,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "ue" = ( /obj/structure/window/reinforced{ @@ -5588,15 +4573,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "uf" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "ug" = ( /obj/structure/surface/table/almayer, @@ -5613,9 +4594,7 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uh" = ( /obj/structure/bed/chair/office/dark{ @@ -5641,24 +4620,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "um" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north) "uo" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "uq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/whiskey_outpost/inside/caves/caverns/west) "ur" = ( /obj/structure/machinery/conveyor{ @@ -5672,10 +4644,7 @@ /obj/structure/machinery/recycler/whiskey{ recycle_dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "us" = ( /obj/structure/machinery/door/window/northright, @@ -5684,10 +4653,7 @@ icon_state = "pipe-c" }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "ut" = ( /obj/structure/machinery/light{ @@ -5707,9 +4673,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) "uw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "ux" = ( /obj/structure/surface/table/woodentable/poor, @@ -5732,10 +4696,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "uB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "uC" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -5746,19 +4707,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "uD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "uE" = ( /turf/open/gm/dirt, @@ -5811,10 +4766,7 @@ /area/whiskey_outpost/inside/supply) "uM" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "uN" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ @@ -5829,35 +4781,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uR" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "uT" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uU" = ( /obj/effect/landmark/start/whiskey/liaison, @@ -5875,22 +4818,14 @@ /area/whiskey_outpost/outside/north) "uZ" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "vb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "vc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "ve" = ( /turf/closed/wall, @@ -5900,9 +4835,7 @@ /area/whiskey_outpost/outside/north/beach) "vi" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "vk" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -5910,9 +4843,7 @@ icon_state = "shuttle_chair" }, /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_south) "vl" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -5924,10 +4855,7 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vm" = ( /obj/structure/machinery/conveyor{ @@ -5939,10 +4867,7 @@ "vn" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "vp" = ( /obj/structure/disposalpipe/segment, @@ -5950,9 +4875,7 @@ /area/whiskey_outpost/inside/bunker) "vq" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "vr" = ( /obj/structure/sign/poster{ @@ -5963,19 +4886,13 @@ "vv" = ( /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "vw" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "trash" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -5983,10 +4900,7 @@ not_weldable = 1; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/supply) "vy" = ( /obj/structure/disposalpipe/segment, @@ -5995,28 +4909,21 @@ /area/whiskey_outpost/inside/bunker/pillbox/three) "vA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "vB" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_south) "vC" = ( /obj/vehicle/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "vE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Storage" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "vF" = ( /obj/item/lightstick/red/planted, @@ -6031,19 +4938,14 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "vK" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) "vL" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "vN" = ( /obj/structure/machinery/light{ @@ -6069,26 +4971,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vS" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "Engineering Dorms"; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/whiskey_outpost/inside/supply) "vW" = ( /obj/structure/bed/chair/office/dark{ @@ -6096,9 +4989,7 @@ layer = 3.25 }, /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "vX" = ( /obj/structure/machinery/door/window/southleft{ @@ -6109,22 +5000,15 @@ /obj/structure/machinery/door/window/northleft{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "vY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north) "vZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker) "wb" = ( /obj/structure/flora/jungle/alienplant1, @@ -6132,21 +5016,14 @@ /area/whiskey_outpost/outside/river/east) "wc" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "we" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, +/turf/open/shuttle/dropship/light_grey_middle, /area/whiskey_outpost/outside/lane/four_north) "wf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/supply) "wh" = ( /obj/structure/window/reinforced{ @@ -6160,10 +5037,7 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wi" = ( /obj/structure/window/reinforced{ @@ -6178,10 +5052,7 @@ /obj/item/bedsheet/hos, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wj" = ( /obj/structure/disposalpipe/segment{ @@ -6203,10 +5074,7 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wl" = ( /obj/structure/disposaloutlet{ @@ -6219,10 +5087,7 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wn" = ( /obj/item/storage/box/m94, @@ -6230,15 +5095,11 @@ /area/whiskey_outpost/outside/lane/four_north) "wp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wq" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "ws" = ( /turf/open/gm/river, @@ -6248,24 +5109,16 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wv" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_south) "ww" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "wx" = ( /obj/structure/platform_decoration{ @@ -6282,10 +5135,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wA" = ( /obj/structure/machinery/conveyor{ @@ -6299,15 +5149,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wC" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -6316,10 +5161,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "wI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6331,18 +5173,13 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital/triage) "wJ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "wK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -6360,16 +5197,11 @@ dir = 1; id = "WOline1" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "wN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "wO" = ( /obj/structure/disposalpipe/segment, @@ -6380,29 +5212,20 @@ /area/whiskey_outpost/inside/bunker) "wP" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "wQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "wR" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "wS" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wT" = ( /turf/open/jungle, @@ -6413,10 +5236,7 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "wV" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -6425,9 +5245,7 @@ no_panel = 1; not_weldable = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "wW" = ( /obj/effect/landmark/start/whiskey/marine, @@ -6445,19 +5263,14 @@ /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "xa" = ( /obj/structure/machinery/light/small{ @@ -6465,9 +5278,7 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/belts/grenade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xb" = ( /turf/closed/wall/r_wall/unmeltable, @@ -6475,22 +5286,14 @@ "xc" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "xg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "xj" = ( /obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "xk" = ( /obj/structure/surface/rack, @@ -6514,9 +5317,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "xm" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -6532,38 +5333,25 @@ /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xt" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Entrance Pillbox" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xx" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin9" }, /area/whiskey_outpost/outside/lane/four_north) -"xy" = ( -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "xB" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4ra, /obj/item/ammo_box/magazine/m4ra, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xC" = ( /turf/open/gm/dirt, @@ -6573,9 +5361,7 @@ /obj/item/ammo_box/magazine/shotgun/buckshot, /obj/item/ammo_box/magazine/shotgun/flechette, /obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xE" = ( /obj/structure/machinery/light/small{ @@ -6583,19 +5369,14 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "xF" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "xG" = ( /obj/structure/cargo_container/grant/left, @@ -6613,9 +5394,7 @@ /obj/item/ammo_box/magazine/m4a3, /obj/item/ammo_box/magazine/m44, /obj/item/ammo_box/magazine/mod88, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xK" = ( /obj/item/lightstick/red/planted, @@ -6625,9 +5404,7 @@ /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, +/turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) "xM" = ( /obj/structure/barricade/metal/wired{ @@ -6639,10 +5416,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "xO" = ( /turf/open/jungle, @@ -6659,10 +5433,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "xR" = ( /obj/structure/platform{ @@ -6678,19 +5449,14 @@ /area/whiskey_outpost/outside/north/beach) "xT" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "xV" = ( /obj/effect/landmark/start/whiskey/spec, /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "xX" = ( /obj/structure/window/reinforced{ @@ -6706,19 +5472,14 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "xZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) "ya" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "yd" = ( /obj/structure/barricade/sandbags/wired{ @@ -6733,10 +5494,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "yf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/whiskey_outpost/inside/supply) "yg" = ( /obj/structure/barricade/sandbags/wired, @@ -6749,26 +5507,18 @@ "yh" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "yj" = ( /obj/effect/landmark/start/whiskey/cargo, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) "yk" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -6779,10 +5529,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "yo" = ( /obj/structure/barricade/sandbags/wired{ @@ -6795,10 +5542,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yr" = ( /obj/structure/machinery/m56d_hmg/mg_turret, @@ -6813,16 +5557,12 @@ /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) "yw" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker) "yx" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/thunderdome/observer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yy" = ( /obj/structure/machinery/light/small{ @@ -6835,19 +5575,13 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yA" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yB" = ( /obj/structure/machinery/light{ @@ -6856,27 +5590,19 @@ }, /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) "yD" = ( /obj/item/storage/box/m94, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "yF" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yG" = ( /obj/structure/closet/secure_closet/req_officer, @@ -6893,10 +5619,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "yH" = ( /turf/closed/wall/r_wall, @@ -6908,26 +5631,20 @@ req_access = null }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yN" = ( /turf/closed/shuttle/dropship{ @@ -6940,9 +5657,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6951,28 +5666,20 @@ req_access = null }, /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yQ" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital/triage) "yR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "yS" = ( /obj/structure/platform{ @@ -6995,24 +5702,18 @@ /area/whiskey_outpost/outside/river/east) "yV" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "yW" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "yX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "yY" = ( /obj/structure/sign/poster/hero/voteno{ @@ -7024,23 +5725,15 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "zc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "zd" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "zf" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zg" = ( /obj/structure/platform{ @@ -7052,10 +5745,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -7064,10 +5754,7 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Eastern Entrance Pillbox" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "zj" = ( /obj/structure/disposalpipe/segment{ @@ -7077,23 +5764,15 @@ /area/whiskey_outpost/outside/north) "zl" = ( /obj/structure/machinery/power/apc/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "zm" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "zo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "zq" = ( /turf/open/gm/river, @@ -7111,17 +5790,11 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) "zt" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "zu" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "zw" = ( /turf/open/gm/coast/west, @@ -7135,25 +5808,17 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "zB" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "zC" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "zD" = ( /obj/structure/disposalpipe/segment{ @@ -7170,10 +5835,7 @@ /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/blue, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "zG" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ @@ -7204,10 +5866,7 @@ "zM" = ( /obj/effect/landmark/start/whiskey/smartgunner, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zP" = ( /obj/structure/stairs/perspective{ @@ -7230,9 +5889,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "zR" = ( /obj/structure/barricade/sandbags/wired{ @@ -7246,10 +5903,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "zU" = ( /turf/open/gm/dirtgrassborder/west, @@ -7266,9 +5920,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "zX" = ( /turf/open/gm/coast/south, @@ -7284,10 +5936,7 @@ /area/whiskey_outpost/outside/lane/three_north) "Ab" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "Ac" = ( /obj/structure/platform{ @@ -7297,10 +5946,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Ad" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Ae" = ( /turf/closed/wall/rock/brown, @@ -7315,10 +5961,7 @@ "Am" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "An" = ( /turf/closed/wall/r_wall, @@ -7331,10 +5974,7 @@ /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_south) "Ar" = ( /obj/structure/barricade/plasteel/wired{ @@ -7348,9 +5988,7 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "Au" = ( /obj/structure/barricade/metal/wired{ @@ -7366,10 +6004,7 @@ /area/whiskey_outpost/inside/bunker) "Ay" = ( /obj/structure/machinery/gel_refiller, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "AA" = ( /turf/open/jungle, @@ -7379,17 +6014,11 @@ dir = 8; icon_state = "towergun" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "AC" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "AD" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -7405,10 +6034,7 @@ "AF" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "AH" = ( /obj/structure/barricade/sandbags/wired{ @@ -7425,10 +6051,7 @@ /area/whiskey_outpost/outside/south/very_far) "AJ" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "AK" = ( /turf/open/gm/dirtgrassborder/north, @@ -7454,10 +6077,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "AS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -7471,10 +6091,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "AV" = ( /turf/open/gm/coast/north, @@ -7496,10 +6113,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Bb" = ( /obj/structure/platform_decoration{ @@ -7509,10 +6123,7 @@ /area/whiskey_outpost/outside/south) "Bc" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bd" = ( /obj/structure/sign/poster, @@ -7523,10 +6134,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Bf" = ( /obj/structure/disposalpipe/segment, @@ -7540,10 +6148,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Bh" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -7558,36 +6163,25 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Bm" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Bn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bo" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bq" = ( /obj/structure/barricade/sandbags/wired{ @@ -7598,28 +6192,20 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northeast, /area/whiskey_outpost/outside/north/platform) "Br" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Bs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Bt" = ( /obj/structure/barricade/plasteel/wired{ @@ -7633,9 +6219,7 @@ "Bu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Bv" = ( /obj/effect/decal/cleanable/blood/writing, @@ -7666,10 +6250,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "BC" = ( /obj/structure/barricade/sandbags/wired, @@ -7677,10 +6258,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "BF" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -7691,20 +6269,14 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BJ" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/north/beach) "BK" = ( /turf/open/jungle/clear, @@ -7717,27 +6289,18 @@ /area/whiskey_outpost/outside/north/beach) "BM" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "BN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BP" = ( /obj/structure/machinery/shower{ @@ -7745,26 +6308,17 @@ layer = 3.3 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "BQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) "BS" = ( /obj/item/storage/box/m94, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "BT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "BU" = ( /obj/structure/barricade/sandbags/wired, @@ -7772,10 +6326,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BV" = ( /obj/structure/stairs/perspective{ @@ -7785,10 +6336,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -7799,18 +6347,13 @@ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "BY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ca" = ( /obj/structure/stairs/perspective{ @@ -7820,19 +6363,13 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cc" = ( /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/whiskey_outpost/inside/bunker/bunker/front) "Cd" = ( /obj/structure/disposalpipe/segment{ @@ -7848,19 +6385,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Cg" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 4; icon_state = "towergun" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Ch" = ( /turf/closed/wall/wood, @@ -7890,48 +6422,33 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) "Cq" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/north/northeast) "Cr" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cs" = ( /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "Ct" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cu" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cv" = ( /obj/structure/surface/table/reinforced/prison, @@ -7945,23 +6462,14 @@ /obj/item/reagent_container/glass/beaker, /obj/item/reagent_container/glass/beaker/large, /obj/item/reagent_container/glass/beaker/large, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "Cw" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "Cx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Cy" = ( /obj/structure/barricade/metal/wired, @@ -7976,30 +6484,21 @@ /area/whiskey_outpost/outside/north/northeast) "CB" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "CC" = ( /obj/structure/machinery/chem_dispenser, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "CD" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) "CE" = ( /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "CG" = ( /turf/open/gm/dirt, @@ -8020,10 +6519,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "CN" = ( /obj/structure/barricade/metal/wired, @@ -8037,10 +6533,7 @@ /area/whiskey_outpost/inside/caves/caverns) "CQ" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "CR" = ( /turf/closed/wall/rock/brown, @@ -8053,10 +6546,7 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northeast, /area/whiskey_outpost/outside/north/platform) "CY" = ( /obj/structure/platform, @@ -8112,65 +6602,42 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Do" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Dp" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "Dq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "Dr" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "Ds" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/north/northeast) "Dt" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/beach) "Du" = ( /obj/structure/disposalpipe/segment, @@ -8178,20 +6645,14 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dv" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dw" = ( /obj/structure/surface/table/woodentable/poor, @@ -8207,10 +6668,7 @@ "Dz" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DA" = ( /obj/structure/platform, @@ -8226,25 +6684,16 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DC" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DD" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "DE" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -8269,20 +6718,14 @@ /area/whiskey_outpost/outside/north/beach) "DJ" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "DK" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) "DL" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/northeast) "DM" = ( /obj/structure/machinery/floodlight{ @@ -8302,18 +6745,12 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "DO" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DP" = ( /obj/structure/platform{ @@ -8326,10 +6763,7 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "DU" = ( /obj/item/lightstick/red/planted, @@ -8344,10 +6778,7 @@ /area/whiskey_outpost/inside/bunker) "DW" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "DX" = ( /obj/structure/blocker/invisible_wall, @@ -8362,33 +6793,22 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "DZ" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ea" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/south) "Eb" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital/triage) "Ec" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/northeast) "Ed" = ( /obj/structure/bed/chair{ @@ -8404,29 +6824,21 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "Eg" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/west) "Eh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Ei" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "Ek" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -8444,10 +6856,7 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Er" = ( /obj/structure/platform{ @@ -8463,18 +6872,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/northwest) "Ew" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/beach) "Ex" = ( /obj/structure/disposalpipe/segment{ @@ -8482,27 +6887,18 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ey" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Platform" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ez" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/whiskey_outpost/inside/cic) "EA" = ( /obj/structure/disposalpipe/segment, @@ -8524,9 +6920,7 @@ icon_state = "pipe-c" }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "EF" = ( /turf/open/jungle, @@ -8540,29 +6934,21 @@ icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "EI" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "EJ" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) "EK" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) "EL" = ( /obj/structure/machinery/cm_vending/gear/synth, @@ -8570,10 +6956,7 @@ /area/whiskey_outpost/inside/cic) "EN" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "EO" = ( /turf/open/gm/grass/grass1, @@ -8585,10 +6968,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "ER" = ( /turf/open/gm/coast/north, @@ -8597,10 +6977,7 @@ /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) "EV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "EX" = ( /obj/structure/platform{ @@ -8617,10 +6994,7 @@ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/whiskey_outpost/inside/cic) "Fa" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -8630,20 +7004,14 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Fd" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Eastern Platform" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Fg" = ( /obj/structure/disposalpipe/segment{ @@ -8651,20 +7019,14 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Fh" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Fi" = ( /obj/structure/platform{ @@ -8688,10 +7050,7 @@ dir = 1 }, /obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -8704,10 +7063,7 @@ /area/whiskey_outpost/outside/river/west) "Fr" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fs" = ( /obj/structure/platform{ @@ -8726,10 +7082,7 @@ /obj/item/storage/beer_pack, /obj/item/storage/beer_pack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fw" = ( /obj/structure/platform, @@ -8767,10 +7120,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/whiskey_outpost/inside/bunker/pillbox/three) "FF" = ( /obj/structure/platform{ @@ -8793,55 +7143,39 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) "FL" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "FM" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "FO" = ( /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FP" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/sign/prop3{ pixel_x = 28 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "FU" = ( /obj/structure/disposalpipe/segment{ @@ -8849,10 +7183,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FV" = ( /obj/structure/barricade/metal/wired{ @@ -8899,10 +7230,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/northeast) "Ge" = ( /obj/structure/window/framed/colony/reinforced, @@ -8919,10 +7247,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/whiskey_outpost/inside/bunker/bunker/front) "Gi" = ( /turf/open/gm/grass/grassbeach/east, @@ -8956,10 +7281,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Gu" = ( /obj/structure/sign/poster, @@ -8970,9 +7292,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Gx" = ( /obj/structure/machinery/light{ @@ -8983,9 +7303,7 @@ /area/whiskey_outpost/inside/cic) "Gy" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "Gz" = ( /turf/open/floor/plating, @@ -9001,10 +7319,7 @@ /area/whiskey_outpost/outside/north/beach) "GD" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/whiskey_outpost/outside/north/northeast) "GE" = ( /obj/structure/barricade/sandbags/wired, @@ -9012,9 +7327,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "GF" = ( /obj/structure/platform{ @@ -9024,10 +7337,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "GG" = ( /obj/structure/machinery/colony_floodlight, @@ -9041,10 +7351,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "GJ" = ( /turf/open/jungle, @@ -9058,9 +7365,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "GM" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9072,18 +7377,14 @@ /area/whiskey_outpost/outside/lane/four_south) "GO" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "GQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) "GR" = ( /obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) "GS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -9094,10 +7395,7 @@ /area/whiskey_outpost/outside/river/east) "GT" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/northeast) "GU" = ( /obj/structure/cargo_container/grant/left, @@ -9123,10 +7421,7 @@ pixel_x = 4; pixel_y = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hc" = ( /obj/structure/cargo_container/grant/right, @@ -9134,28 +7429,20 @@ /area/whiskey_outpost/outside/north/northeast) "Hf" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) "Hh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/whiskey_outpost/outside/lane/four_north) "Hi" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Hj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -9172,10 +7459,7 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hn" = ( /obj/structure/barricade/sandbags/wired, @@ -9183,17 +7467,11 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Ho" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Hp" = ( /obj/structure/machinery/colony_floodlight, @@ -9201,9 +7479,7 @@ /area/whiskey_outpost/outside/lane/one_north) "Hq" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Hr" = ( /turf/open/gm/dirtgrassborder/south, @@ -9231,9 +7507,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) "Hw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/whiskey_outpost/outside/lane/four_north) "Hx" = ( /obj/structure/disposalpipe/segment{ @@ -9244,10 +7518,7 @@ /area/whiskey_outpost/outside/north/beach) "Hy" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "HA" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -9275,19 +7546,14 @@ /obj/structure/machinery/door/airlock/almayer/marine/autoname{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "HM" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) "HN" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "HP" = ( /obj/structure/machinery/light/small{ @@ -9310,10 +7576,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "HT" = ( /obj/structure/disposalpipe/segment{ @@ -9328,10 +7591,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "HV" = ( /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "HW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -9347,18 +7607,12 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/northwest) "HZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Ia" = ( /obj/structure/barricade/sandbags/wired, @@ -9370,10 +7624,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Ic" = ( /obj/structure/barricade/sandbags/wired, @@ -9382,10 +7633,7 @@ icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "If" = ( /obj/structure/barricade/sandbags/wired, @@ -9398,27 +7646,18 @@ icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Ih" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/beach) "Ii" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/northeast) "Ik" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Il" = ( /obj/structure/bed/chair{ @@ -9448,10 +7687,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Iq" = ( /obj/structure/barricade/sandbags/wired, @@ -9483,27 +7719,18 @@ /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_north) "Ix" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northwest) "Iy" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital/triage) "IA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ starting_attachment_types = list(/obj/item/attachable/stock/shotgun) }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "IB" = ( /obj/structure/disposalpipe/segment, @@ -9516,9 +7743,7 @@ "IF" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "IG" = ( /obj/structure/machinery/colony_floodlight, @@ -9552,9 +7777,7 @@ "IP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "IQ" = ( /obj/structure/platform{ @@ -9570,9 +7793,7 @@ /area/whiskey_outpost/outside/river/east) "IU" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker/bunker/front) "IV" = ( /obj/item/tool/weldpack{ @@ -9611,16 +7832,11 @@ "Jd" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "Je" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "Jf" = ( /obj/structure/disposalpipe/segment{ @@ -9636,16 +7852,10 @@ "Jh" = ( /obj/item/tool/crowbar, /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Ji" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/inside/caves/caverns/west) "Jk" = ( /obj/structure/disposalpipe/segment{ @@ -9662,10 +7872,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Jn" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9715,10 +7922,7 @@ "JA" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "JB" = ( /obj/structure/disposalpipe/sortjunction{ @@ -9735,25 +7939,18 @@ /area/whiskey_outpost/outside/south) "JE" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "JF" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "JG" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" - }, +/turf/open/shuttle/dropship/light_grey_top, /area/whiskey_outpost/outside/lane/four_north) "JH" = ( /obj/structure/platform_decoration{ @@ -9761,6 +7958,10 @@ }, /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/south) +"JJ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) "JL" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -9773,33 +7974,21 @@ dir = 1 }, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "JN" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "JO" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "JP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital/triage) "JR" = ( /obj/structure/surface/table/reinforced/prison, @@ -9807,16 +7996,10 @@ pixel_x = -3; pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "JT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital) "JU" = ( /turf/open/gm/coast/south, @@ -9858,19 +8041,14 @@ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_south) "Kn" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_north) "Ko" = ( /obj/structure/curtain, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "Kq" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9887,10 +8065,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "Kt" = ( /obj/structure/fence, @@ -9906,9 +8081,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) "Kx" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital/triage) "Ky" = ( /turf/open/gm/dirtgrassborder/south, @@ -9919,19 +8092,14 @@ /area/whiskey_outpost/outside/north/northwest) "KF" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "KG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) "KJ" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "KK" = ( /obj/structure/disposalpipe/sortjunction{ @@ -9949,10 +8117,7 @@ /area/whiskey_outpost/outside/north/northwest) "KN" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "KP" = ( /obj/structure/barricade/sandbags/wired{ @@ -9981,9 +8146,7 @@ /area/whiskey_outpost/outside/north/northwest) "KZ" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "Lb" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10011,9 +8174,7 @@ /obj/item/weapon/gun/pill{ pixel_y = 6 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Lg" = ( /turf/open/jungle, @@ -10025,26 +8186,18 @@ /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "Lj" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Ln" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Lp" = ( /obj/item/lightstick/red/planted, @@ -10080,40 +8233,27 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Ly" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) "Lz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "LB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/northeast) "LD" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/whiskey_outpost/outside/lane/four_north) "LG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "LI" = ( /obj/structure/barricade/sandbags/wired{ @@ -10124,10 +8264,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/whiskey_outpost/outside/north/beach) "LJ" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -10149,10 +8286,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/beach) "LM" = ( /obj/structure/sign/prop1, @@ -10175,9 +8309,7 @@ /area/whiskey_outpost/outside/lane/one_north) "LU" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/lane/one_north) "LX" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -10188,9 +8320,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "Ma" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "Mb" = ( /turf/open/gm/dirtgrassborder/east, @@ -10224,10 +8354,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Mh" = ( /obj/structure/machinery/conveyor{ @@ -10235,15 +8362,10 @@ id = "crate" }, /obj/structure/plasticflaps, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "Mi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/northeast) "Mj" = ( /obj/structure/platform{ @@ -10261,9 +8383,7 @@ /area/whiskey_outpost/inside/caves) "Ml" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "Mn" = ( /turf/closed/shuttle/dropship{ @@ -10273,47 +8393,30 @@ /area/whiskey_outpost/outside/lane/four_south) "Mo" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "Mp" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/beach) "Mq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Ms" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/lane/four_north) "Mt" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Mw" = ( /obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "Mx" = ( /turf/open/jungle, @@ -10364,10 +8467,7 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "MI" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -10375,18 +8475,13 @@ /area/whiskey_outpost/outside/north/beach) "ML" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "MO" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "MP" = ( /turf/open/gm/dirt, @@ -10409,17 +8504,11 @@ /area/whiskey_outpost/outside/north/beach) "MW" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "MX" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_north) "MY" = ( /obj/effect/spawner/gibspawner/human, @@ -10433,10 +8522,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Nc" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Nd" = ( /obj/structure/sign/poster{ @@ -10450,9 +8536,7 @@ /area/whiskey_outpost/outside/lane/three_north) "Nf" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Nh" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10484,10 +8568,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/beach) "Nn" = ( /obj/structure/barricade/sandbags/wired, @@ -10495,16 +8576,11 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/whiskey_outpost/outside/north/beach) "Nq" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) "Nr" = ( /obj/structure/closet/fireaxecabinet{ @@ -10518,10 +8594,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/whiskey_outpost/outside/north/beach) "Nu" = ( /obj/effect/decal/cleanable/blood/writing, @@ -10536,26 +8609,17 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/beach) "Nz" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/north/beach) "NA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital/triage) "NB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10567,17 +8631,11 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital/triage) "ND" = ( /obj/effect/decal/cleanable/blood, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "NE" = ( /obj/item/stool, @@ -10617,19 +8675,13 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "NT" = ( /obj/structure/machinery/autodoc_console{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "NV" = ( /turf/open/gm/dirt, @@ -10652,10 +8704,7 @@ /obj/structure/sign/banners/maximumeffort{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Ob" = ( /obj/structure/flora/jungle/alienplant1, @@ -10684,10 +8733,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Oj" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Ok" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -10703,9 +8749,7 @@ id = "WOlineshutters1"; name = "\improper Supply Depo Line 1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "On" = ( /obj/structure/surface/table/reinforced/prison, @@ -10724,26 +8768,18 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) "Oo" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/whiskey_outpost/inside/hospital/triage) "Op" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Oq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/two_north) "Ot" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "Ou" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -10754,17 +8790,11 @@ /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/whiskey_outpost/inside/bunker/bunker/front) "Ow" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "OA" = ( /obj/structure/flora/jungle/alienplant1, @@ -10787,9 +8817,7 @@ pixel_x = 20; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "OI" = ( /obj/structure/disposalpipe/segment{ @@ -10800,10 +8828,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "OK" = ( /turf/closed/wall/strata_ice/jungle, @@ -10824,16 +8849,11 @@ /area/whiskey_outpost/inside/caves/caverns/west) "OQ" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) "OS" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "OT" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10853,10 +8873,7 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "OY" = ( /obj/structure/platform{ @@ -10865,10 +8882,7 @@ /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) "OZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Pc" = ( /obj/structure/disposalpipe/segment, @@ -10883,22 +8897,14 @@ /area/whiskey_outpost/outside/lane/two_south) "Pe" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/beach) "Pg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/beach) "Ph" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/whiskey_outpost/outside/lane/four_north) "Pi" = ( /obj/structure/barricade/sandbags/wired, @@ -10915,10 +8921,7 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Pm" = ( /turf/closed/wall/r_wall, @@ -10927,10 +8930,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Pq" = ( /obj/structure/barricade/sandbags/wired, @@ -10953,24 +8953,16 @@ /area/whiskey_outpost/outside/river) "Pu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Pw" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/whiskey_outpost/outside/lane/two_south) "Px" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "Pz" = ( /turf/closed/shuttle/dropship{ @@ -10985,9 +8977,7 @@ /area/whiskey_outpost/outside/lane/three_north) "PB" = ( /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "PC" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -11041,32 +9031,21 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "PT" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital/triage) "PU" = ( /obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "PV" = ( /obj/structure/machinery/door/airlock/hatch{ name = "Dropship Hatch" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "PW" = ( /obj/structure/disposalpipe/segment{ @@ -11112,26 +9091,17 @@ /area/whiskey_outpost/outside/south) "Ql" = ( /obj/item/lightstick/red/planted, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Qm" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital/triage) "Qn" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Qo" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -11151,10 +9121,7 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "Qt" = ( /obj/structure/machinery/colony_floodlight, @@ -11162,28 +9129,21 @@ /area/whiskey_outpost/outside/south/far) "Qv" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Qw" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/outside/lane/two_north) "Qy" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/outside/lane/three_north) "QA" = ( /obj/structure/machinery/m56d_hmg/mg_turret, @@ -11202,19 +9162,14 @@ pixel_x = 1; pixel_y = 18 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "QG" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "QH" = ( /obj/structure/cargo_container/grant/right, @@ -11232,19 +9187,8 @@ "QO" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"QP" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 4 - }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "QR" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/whiskey_outpost/inside/caves/caverns/west) "QS" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -11303,9 +9247,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/outside/lane/three_north) "Rf" = ( /obj/structure/machinery/shower{ @@ -11313,21 +9255,15 @@ layer = 3.3 }, /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + dir = 1 }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Rg" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Rh" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -11362,20 +9298,14 @@ "Rx" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Rz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) "RA" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "RB" = ( /obj/structure/platform{ @@ -11388,10 +9318,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "RD" = ( /obj/structure/cargo_container/grant/rightmid, @@ -11428,10 +9355,7 @@ /area/whiskey_outpost/outside/south) "RR" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "RS" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -11439,26 +9363,18 @@ /area/whiskey_outpost/outside/lane/one_north) "RU" = ( /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area) "RV" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "RW" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river) "RX" = ( /obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Sa" = ( /obj/structure/platform{ @@ -11485,9 +9401,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "Sf" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Sh" = ( /obj/structure/disposalpipe/segment, @@ -11497,10 +9411,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Si" = ( /turf/open/gm/dirtgrassborder/south, @@ -11515,18 +9426,14 @@ /area/whiskey_outpost/outside/lane/two_south) "Sl" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Sm" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/outside/lane/two_north) "Sn" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -11534,18 +9441,14 @@ req_access = null; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "So" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/outside/lane/two_north) "Sp" = ( /obj/structure/filingcabinet{ @@ -11588,9 +9491,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "SC" = ( /obj/structure/closet, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "SE" = ( /turf/open/gm/dirtgrassborder/north, @@ -11603,19 +9504,13 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SH" = ( /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/whiskey_outpost/inside/bunker/pillbox/four) "SI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -11631,10 +9526,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SL" = ( /obj/structure/platform_decoration{ @@ -11651,9 +9543,7 @@ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/outside/lane/three_north) "SP" = ( /obj/structure/machinery/light/small{ @@ -11663,10 +9553,7 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "SQ" = ( /obj/structure/platform{ @@ -11681,19 +9568,13 @@ /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/whiskey_outpost/inside/bunker/pillbox/four) "ST" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SU" = ( /turf/open/gm/grass/grassbeach/west, @@ -11702,10 +9583,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "SX" = ( /turf/open/gm/river, @@ -11740,18 +9618,12 @@ /obj/structure/mirror{ pixel_x = -32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Te" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Th" = ( /obj/item/lightstick/red/planted, @@ -11767,10 +9639,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) "Tk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Tl" = ( /obj/effect/landmark/start/whiskey/leader, @@ -11779,10 +9648,7 @@ "Tm" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Tn" = ( /obj/structure/platform{ @@ -11803,10 +9669,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Tr" = ( /obj/item/stool, @@ -11814,10 +9677,7 @@ /area/whiskey_outpost/outside/lane/two_south) "Ts" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Tt" = ( /obj/structure/sign/safety/one, @@ -11831,10 +9691,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) "Tw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Tz" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -11848,23 +9705,15 @@ /obj/item/reagent_container/hypospray, /obj/item/reagent_container/hypospray, /obj/structure/machinery/power/apc/almayer, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "TC" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital/triage) "TD" = ( /obj/item/weapon/sword/machete, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "TE" = ( /obj/structure/disposalpipe/segment, @@ -11883,10 +9732,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "TL" = ( /turf/open/gm/dirtgrassborder/south, @@ -11906,9 +9752,7 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "TQ" = ( /obj/structure/largecrate/random/mini/med{ @@ -11942,10 +9786,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "TX" = ( /obj/structure/fence, @@ -11961,10 +9802,7 @@ /area/whiskey_outpost/inside/living) "TZ" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "Ua" = ( /obj/structure/flora/jungle/plantbot1, @@ -11981,9 +9819,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/outside/lane/three_north) "Uf" = ( /turf/open/gm/grass/grassbeach/east, @@ -12000,18 +9836,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "Ui" = ( /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Uk" = ( /obj/structure/disposalpipe/sortjunction{ @@ -12029,10 +9860,7 @@ /area/whiskey_outpost/outside/north) "Uo" = ( /obj/item/storage/box/explosive_mines, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "Up" = ( /obj/structure/machinery/light/small{ @@ -12040,10 +9868,7 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uq" = ( /obj/structure/disposalpipe/segment, @@ -12061,20 +9886,14 @@ /area/whiskey_outpost/outside/lane/three_north) "Ut" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uu" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uw" = ( /obj/structure/disposalpipe/segment, @@ -12093,19 +9912,13 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UF" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -12117,37 +9930,25 @@ /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/whiskey_outpost/inside/bunker/pillbox/one) "UJ" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "UK" = ( /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/whiskey_outpost/inside/bunker/pillbox/one) "UL" = ( /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/whiskey_outpost/inside/bunker/pillbox/one) "UN" = ( /obj/structure/platform{ @@ -12161,16 +9962,11 @@ /area/whiskey_outpost/outside/north/northwest) "UP" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "UR" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "US" = ( /obj/structure/flora/jungle/plantbot1, @@ -12184,10 +9980,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UY" = ( /turf/open/gm/dirtgrassborder/south, @@ -12197,9 +9990,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/outside/lane/two_north) "Va" = ( /obj/structure/barricade/sandbags/wired, @@ -12222,15 +10013,10 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/east) "Vh" = ( -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, +/turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) "Vi" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "Vj" = ( /obj/structure/disposalpipe/segment{ @@ -12247,29 +10033,18 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) "Vm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/caves/tunnel) "Vo" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_south) "Vp" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Vq" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/whiskey_outpost/inside/cic) "Vr" = ( /obj/structure/machinery/light{ @@ -12315,9 +10090,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Vy" = ( /obj/structure/machinery/cm_vending/clothing/synth, @@ -12332,10 +10105,7 @@ /area/whiskey_outpost/outside/lane/one_south) "VD" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "VE" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -12358,18 +10128,12 @@ /area/whiskey_outpost/outside/lane/two_south) "VI" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "VJ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "VK" = ( /obj/structure/disposalpipe/segment, @@ -12377,10 +10141,7 @@ /area/whiskey_outpost/outside/lane/three_south) "VL" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "VM" = ( /turf/closed/wall/r_wall, @@ -12388,24 +10149,15 @@ "VN" = ( /obj/effect/landmark/start/whiskey/marine, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "VO" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "VP" = ( /obj/item/toy/beach_ball/holoball, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "VQ" = ( /obj/structure/platform{ @@ -12428,10 +10180,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "VT" = ( /obj/structure/disposalpipe/segment{ @@ -12440,9 +10189,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) "VU" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/whiskey_outpost/inside/caves/caverns/west) "VV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -12465,10 +10212,7 @@ /area/whiskey_outpost/outside/north) "Wc" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "Wd" = ( /obj/item/weapon/gun/rifle/m41a, @@ -12480,10 +10224,7 @@ "Wf" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Wg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -12492,10 +10233,7 @@ req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Wj" = ( /obj/structure/surface/table/reinforced/prison, @@ -12562,19 +10300,13 @@ /obj/effect/landmark/wo_supplies/storage/belts/lifesaver, /obj/effect/landmark/wo_supplies/storage/belts/lifesaver, /obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "Wk" = ( /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/whiskey_outpost/inside/bunker/pillbox/two) "Wl" = ( /turf/closed/shuttle/dropship{ @@ -12583,10 +10315,7 @@ /area/whiskey_outpost/outside/lane/four_south) "Wm" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Wn" = ( /obj/structure/reagent_dispensers/fueltank, @@ -12595,10 +10324,7 @@ "Wo" = ( /obj/item/stack/cable_coil, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Wp" = ( /obj/structure/sign/safety/two, @@ -12613,10 +10339,7 @@ /area/whiskey_outpost/outside/south/very_far) "Ws" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_south) "Wu" = ( /obj/structure/disposalpipe/segment, @@ -12626,10 +10349,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Wv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -12639,16 +10359,11 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) "Wz" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/whiskey_outpost/inside/caves/caverns/west) "WA" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "WC" = ( /obj/structure/disposalpipe/segment{ @@ -12671,16 +10386,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "WJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north) "WK" = ( /obj/structure/machinery/cm_vending/own_points/experimental_tools, @@ -12713,9 +10423,7 @@ "WR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "WS" = ( /obj/structure/disposalpipe/segment{ @@ -12745,10 +10453,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "WY" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "WZ" = ( /obj/structure/disposalpipe/sortjunction{ @@ -12763,10 +10468,7 @@ /area/whiskey_outpost/outside/lane/two_south) "Xe" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Xg" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12776,20 +10478,14 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Xj" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xk" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12797,16 +10493,10 @@ /area/whiskey_outpost/outside/lane/two_south) "Xl" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Xn" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -12818,16 +10508,10 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xq" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_north) "Xr" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12852,9 +10536,7 @@ }, /obj/structure/machinery/light/small, /obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "XB" = ( /turf/closed/shuttle/dropship{ @@ -12870,37 +10552,26 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XG" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_y = -5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "XH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "XK" = ( /obj/structure/disposalpipe/segment{ @@ -12909,17 +10580,11 @@ /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/whiskey_outpost/inside/bunker/pillbox/two) "XM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "XN" = ( /obj/structure/surface/table/reinforced/prison, @@ -12928,10 +10593,7 @@ /area/whiskey_outpost/outside/lane/two_south) "XO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "XP" = ( /obj/structure/disposalpipe/segment{ @@ -12944,10 +10606,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/whiskey_outpost/inside/bunker/pillbox/two) "XR" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12962,10 +10621,7 @@ /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XW" = ( /turf/closed/shuttle/dropship{ @@ -13003,28 +10659,19 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Yj" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Yk" = ( /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/whiskey_outpost/inside/bunker/pillbox/three) "Yl" = ( /obj/structure/barricade/metal/wired, @@ -13036,10 +10683,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Yo" = ( /turf/open/gm/coast/north, @@ -13051,10 +10695,7 @@ /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) "Yq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Yr" = ( /obj/structure/flora/jungle/planttop1, @@ -13115,10 +10756,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "YE" = ( /obj/structure/bed/chair, @@ -13128,10 +10766,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "YH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -13139,25 +10774,17 @@ "YI" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "YK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "YL" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/whiskey_outpost/outside/lane/four_north) "YM" = ( /obj/effect/landmark/start/whiskey/marine, @@ -13170,16 +10797,10 @@ "YP" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "YR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "YT" = ( /obj/effect/landmark/start/whiskey/marine, @@ -13201,10 +10822,7 @@ req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Zb" = ( /obj/structure/prop/dam/truck/mining, @@ -13237,10 +10855,7 @@ req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Zf" = ( /turf/closed/wall/strata_ice/jungle, @@ -13249,10 +10864,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/whiskey_outpost/inside/bunker/bunker/front) "Zh" = ( /obj/structure/platform{ @@ -13285,9 +10897,7 @@ "Zm" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, /obj/structure/medical_supply_link, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "Zn" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -13309,17 +10919,11 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Zr" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Zs" = ( /turf/open/gm/grass/grassbeach/south, @@ -13343,10 +10947,7 @@ "Zy" = ( /obj/effect/spawner/random/tool, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Zz" = ( /obj/structure/sign/safety/north, @@ -13369,16 +10970,11 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/whiskey_outpost/outside/lane/four_north) "ZE" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "ZF" = ( /turf/open/gm/dirtgrassborder/west, @@ -13396,36 +10992,24 @@ /area/whiskey_outpost/inside/supply) "ZI" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "ZJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/lane/four_north) "ZL" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/lane/four_south) "ZN" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -13437,20 +11021,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZT" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) "ZU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZV" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -13465,10 +11043,7 @@ icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "ZW" = ( /turf/closed/shuttle/dropship{ @@ -20926,7 +18501,7 @@ uJ uJ uJ HI -mb +EP EP EP BK @@ -21330,7 +18905,7 @@ mT mT mf mf -mb +EP mf EP EP @@ -21531,10 +19106,10 @@ mT Zf Zf mf -mb +EP mf mf -mb +EP EP BK BK @@ -21732,10 +19307,10 @@ Zf Zf mf mf -mb +EP mf mf -mb +EP mf EP EP @@ -21930,13 +19505,13 @@ AA zt zt zt -mb +EP mf -mb +EP mf mf -mb -mb +EP +EP mf mf mf @@ -22134,14 +19709,14 @@ AA AA mf mf -mb +EP mf mf -mb -mb +EP +EP mf mf -mb +EP EP EP BK @@ -22335,11 +19910,11 @@ AA zt AA zt -mb -mb +EP +EP mf mf -mb +EP mf mf mf @@ -22537,14 +20112,14 @@ AA AA AA AA -mb +EP mf -mb +EP mf -mb +EP mf mf -mb +EP mf mf mf @@ -22745,14 +20320,14 @@ mf mf mf mf -mb +EP mf mf -mb +EP mf mf -mb -mb +EP +EP Zf Zf Zf @@ -22942,18 +20517,18 @@ AA zt AA AA -mb +EP mf -mb +EP mf -mb -mb +EP +EP mf mf -mb +EP mf mf -mb +EP mf EP BK @@ -23147,16 +20722,16 @@ AA AA mf mf -mb +EP mf mf mf mf mf mf -mb +EP mf -mb +EP EP BK BK @@ -23348,15 +20923,15 @@ AA zt AA mf -mb +EP mf mf mf mf mf mf -mb -mb +EP +EP mf EP EP @@ -23559,7 +21134,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -23753,7 +21328,7 @@ AA zt AA mf -mb +EP mf mf mf @@ -23955,13 +21530,13 @@ AA zt zt AA -mb +EP mf mf mf mf mf -mb +EP mf EP BK @@ -24157,12 +21732,12 @@ AA AA AA AA -mb -mb -mb +EP +EP +EP mf mf -mb +EP mf mf EP @@ -24366,7 +21941,7 @@ Yr FI mf mf -mb +EP EP BK BK @@ -24568,7 +22143,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -24770,7 +22345,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -24967,7 +22542,7 @@ zt AA zt Zf -mb +EP mf mf mf @@ -25174,7 +22749,7 @@ mf mf mf AI -mb +EP EP BK BK @@ -25372,11 +22947,11 @@ Zf Zf AA zt -mb +EP mf -mb -QP -mb +EP +Tz +EP EP BK BK @@ -25636,7 +23211,7 @@ qz qz dQ fp -ht +JJ aV qz qz @@ -25777,8 +23352,8 @@ AA AA AA AA -mb -mb +EP +EP AI mf Zf @@ -25980,7 +23555,7 @@ AA zt AA zt -mb +EP AI mf Zf @@ -26182,8 +23757,8 @@ Zf AA AA zt -mb -QP +EP +Tz mf mf Zf @@ -26386,8 +23961,8 @@ Zf Zf AA AI -mb -mb +EP +EP mf mf Zf @@ -26588,7 +24163,7 @@ Zf Zf AA AI -mb +EP mf mf mf @@ -26790,10 +24365,10 @@ Zf Zf Zf es -mb +EP mf -mb -mb +EP +EP mf Zf Zf @@ -26992,12 +24567,12 @@ Zf AA zt es -mb -mb +EP +EP mf -mb +EP mf -mb +EP mf Zf Zf @@ -27195,11 +24770,11 @@ AA AA es AA -mb +EP mf mf -mb -mb +EP +EP mf Zf Zf @@ -29616,7 +27191,7 @@ zt fQ dv zt -mb +EP mf mf mf @@ -30020,7 +27595,7 @@ nE Ts nE Bv -xy +Nu Bv Bv Bv @@ -30221,7 +27796,7 @@ zt AA zt zt -mb +EP mf mf mf @@ -30624,8 +28199,8 @@ AA zt zt AA -mb -mb +EP +EP mf mf mf @@ -30828,7 +28403,7 @@ zt mf mf mf -mb +EP mf mf EP @@ -31028,8 +28603,8 @@ AA AA AA mf -mb -mb +EP +EP mf mf EP @@ -31229,10 +28804,10 @@ AA zt AA mf -mb +EP mf mf -mb +EP mf EP BK @@ -31632,11 +29207,11 @@ AA zt AA mf -mb +EP mf -mb -mb -mb +EP +EP +EP EP EP BK @@ -31837,7 +29412,7 @@ mf mf mf mf -mb +EP mf EP BK @@ -32035,9 +29610,9 @@ AA zt AA mf -mb +EP mf -mb +EP mf mf mf @@ -32438,9 +30013,9 @@ mT Zf mT mf -mb +EP mf -mb +EP mf mf mf diff --git a/maps/map_files/generic/Admin_level.dmm b/maps/map_files/generic/Admin_level.dmm index 36538b22cb60..be0f85e60028 100644 --- a/maps/map_files/generic/Admin_level.dmm +++ b/maps/map_files/generic/Admin_level.dmm @@ -12,10 +12,7 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station) "ad" = ( -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome) "ae" = ( /obj/docking_port/stationary/vehicle_elevator/adminlevel, @@ -27,18 +24,12 @@ id = "tdome_observer"; name = "\improper Observer Shutters" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome) "aj" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/effect/spider/stickyweb, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station) "ak" = ( /turf/closed/wall/almayer/outer, @@ -51,10 +42,7 @@ pixel_y = 27 }, /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "as" = ( /turf/open/space/basic, @@ -63,19 +51,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome) "aA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome) "aB" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -83,9 +65,7 @@ id = "tdome_t2"; name = "\improper Team 2 Shutters" }, -/turf/open/floor/tdome{ - icon_state = "test_floor4" - }, +/turf/open/floor/tdome/test_floor4, /area/tdome) "aC" = ( /obj/effect/step_trigger/teleporter/random{ @@ -101,10 +81,7 @@ /turf/open/space, /area/space) "aE" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/tdome/w_y0/north, /area/tdome) "aK" = ( /obj/structure/closet/cabinet, @@ -112,36 +89,27 @@ /area/adminlevel/ert_station) "bn" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "co" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "cD" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "cK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "cU" = ( /obj/effect/step_trigger/teleporter/random{ @@ -160,10 +128,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/ert_station/shuttle_dispatch) "ds" = ( /turf/closed/wall/almayer/outer{ @@ -171,9 +136,7 @@ }, /area/centcom/living) "dw" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/supply/dock) "dy" = ( /turf/open/floor/wood, @@ -198,9 +161,7 @@ /turf/open/floor/plating/bare_catwalk, /area/supply/dock) "ev" = ( -/turf/open/floor/carpet/edge{ - dir = 9 - }, +/turf/open/floor/carpet/edge/northwest, /area/centcom/living) "ew" = ( /obj/structure/surface/table/woodentable/fancy, @@ -230,40 +191,27 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) "eE" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/centcom/living) "eF" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, +/turf/open/floor/carpet/edge/northeast, /area/centcom/living) "eG" = ( /obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "eQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station/shuttle_dispatch) "eU" = ( -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/centcom/living) "eW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/centcom/living) "eX" = ( /obj/effect/landmark/sim_target, @@ -273,9 +221,7 @@ /turf/open/floor/carpet, /area/centcom/living) "eZ" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/centcom/living) "fn" = ( /turf/closed/wall/almayer/outer{ @@ -308,46 +254,32 @@ /area/centcom/living) "fz" = ( /obj/structure/machinery/telecomms/receiver/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fA" = ( /obj/structure/machinery/telecomms/bus/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fB" = ( /obj/structure/machinery/telecomms/processor/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fC" = ( /obj/structure/machinery/telecomms/server/presets/centcomm, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fL" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, +/turf/open/floor/carpet/edge/southwest, /area/centcom/living) "fM" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/centcom/living) "fN" = ( /obj/effect/step_trigger/message/memorial, -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/centcom/living) "fO" = ( /obj/effect/step_trigger/message/memorial, @@ -358,87 +290,58 @@ /area/centcom/living) "fQ" = ( /obj/structure/machinery/telecomms/relay/preset/centcom, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fR" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "fW" = ( -/turf/open/floor/carpet/edge{ - dir = 6 - }, +/turf/open/floor/carpet/edge/southeast, /area/centcom/living) "gb" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "gd" = ( /obj/structure/machinery/telecomms/allinone/interceptor, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "ge" = ( /obj/structure/machinery/telecomms/broadcaster/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "gf" = ( /obj/structure/machinery/telecomms/hub/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "gg" = ( /obj/structure/machinery/computer/rdservercontrol{ name = "Master R&D Server Controller" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "gh" = ( /obj/structure/machinery/r_n_d/server/centcom, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "gu" = ( /turf/open/floor/plating, /area/admin/droppod/holding) "gA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "gR" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/ert_station) "gX" = ( -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "hp" = ( /turf/closed/wall/indestructible, /area/start) "hH" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) "hP" = ( /obj/docking_port/stationary/emergency_response/idle_port1, @@ -450,24 +353,17 @@ /area/adminlevel/ert_station) "il" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "iz" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "iL" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "iR" = ( /obj/structure/disposalpipe/segment{ @@ -497,30 +393,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "me" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "nP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/adminlevel/ert_station/shuttle_dispatch) "nU" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "oa" = ( /obj/structure/surface/table/reinforced/prison, @@ -532,17 +418,13 @@ pixel_x = -9; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "ob" = ( /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "op" = ( /obj/structure/machinery/cryopod, @@ -555,17 +437,11 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station) "oB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "oQ" = ( /obj/effect/step_trigger/teleporter/random{ @@ -587,25 +463,17 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "oW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/almayer/w_y0/north, /area/adminlevel/ert_station) "oZ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "pc" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station) "ph" = ( /obj/structure/disposalpipe/junction{ @@ -614,39 +482,26 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "pm" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) "pq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "pP" = ( /obj/item/newspaper, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "pQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "qi" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "ql" = ( /obj/effect/step_trigger/teleporter/random{ @@ -668,9 +523,7 @@ phone_id = "Unknown Signal"; pixel_x = 14 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "qz" = ( /obj/structure/surface/table/almayer, @@ -683,34 +536,24 @@ /obj/item/device/binoculars{ pixel_y = 4 }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "rf" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/ert_station) "rR" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "sj" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "sy" = ( /obj/effect/step_trigger/teleporter/random{ @@ -733,9 +576,7 @@ /area/adminlevel/ert_station) "th" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "tx" = ( /obj/structure/machinery/hologram/holopad, @@ -754,9 +595,7 @@ /area/adminlevel/ert_station) "tY" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "uf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -766,18 +605,14 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "ug" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "uk" = ( /obj/structure/surface/table/reinforced, @@ -789,18 +624,14 @@ pixel_x = -8 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "ur" = ( /obj/docking_port/stationary/emergency_response/idle_port6, /turf/open/floor/plating, /area/adminlevel/ert_station) "uI" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "uJ" = ( /obj/effect/step_trigger/teleporter/random{ @@ -816,19 +647,13 @@ /turf/open/space/transit/east/shuttlespace_ew13, /area/space) "uK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station) "uN" = ( /obj/structure/sign/goldenplaque{ pixel_y = 27 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "uY" = ( /obj/structure/janitorialcart, @@ -840,30 +665,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "va" = ( /obj/structure/toilet, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "vB" = ( /obj/structure/surface/table/reinforced/black, /obj/effect/spawner/random/toy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/ert_station/shuttle_dispatch) -"vD" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/ert_station) "vE" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ hacked = 1; @@ -871,10 +683,7 @@ use_power = 0; use_snowflake_points = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "vH" = ( /obj/effect/step_trigger/teleporter/random{ @@ -891,40 +700,25 @@ /area/space) "vN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station/shuttle_dispatch) "wj" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/tdome/w_y2/north, /area/tdome) "wp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station/shuttle_dispatch) "wr" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station) "wu" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "wv" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "wA" = ( /obj/structure/surface/table/reinforced/prison, @@ -932,9 +726,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "wL" = ( /obj/structure/machinery/disposal/deliveryChute, @@ -954,9 +746,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "xw" = ( /obj/effect/step_trigger/teleporter/random{ @@ -992,19 +782,14 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station) "xU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/almayer/w_y2/north, /area/adminlevel/ert_station) "yk" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "ym" = ( /obj/effect/decal/warning_stripes{ @@ -1028,18 +813,14 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "yQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "zg" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -1047,9 +828,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "zk" = ( /obj/structure/machinery/chem_dispenser/soda/beer{ @@ -1057,47 +836,32 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "zn" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/ert_station) "zr" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/ert_station) "zt" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station) "zB" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/ert_station/shuttle_dispatch) "zN" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "zO" = ( /obj/structure/surface/table/reinforced/prison, @@ -1105,24 +869,17 @@ /obj/item/device/defibrillator/upgraded, /obj/item/clothing/glasses/hud/health, /obj/item/roller, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) "AI" = ( /obj/structure/sign/poster{ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "AL" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "AS" = ( /turf/closed/wall/almayer/outer, @@ -1131,9 +888,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Bw" = ( /obj/effect/decal/warning_stripes{ @@ -1147,10 +902,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdome2) "BO" = ( /obj/effect/decal/warning_stripes{ @@ -1163,27 +915,18 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_20" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "BV" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Cc" = ( /obj/effect/landmark/sim_camera, -/turf/open/floor/engine{ - color = "#AAAAAA" - }, +/turf/open/floor/engine/simulator_center, /area/adminlevel/simulation) "Cf" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/ert_station) "Ch" = ( /obj/structure/sign/poster/ad, @@ -1192,19 +935,14 @@ "Cm" = ( /obj/structure/machinery/cm_vending/sorted/walkman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/ert_station/shuttle_dispatch) "CI" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "CK" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -1215,9 +953,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "CN" = ( /obj/structure/sign/safety/bathunisex{ @@ -1226,9 +962,7 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station) "CU" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Do" = ( /obj/structure/mirror, @@ -1245,30 +979,21 @@ pixel_x = -17 }, /obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Dt" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Dv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Dw" = ( /obj/structure/closet/secure_closet/brig, /obj/item/book/manual/marine_law, /obj/item/restraint/handcuffs, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) "DD" = ( /obj/effect/decal/warning_stripes{ @@ -1277,16 +1002,11 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) "DV" = ( -/turf/open/floor/tdome{ - icon_state = "tcomms" - }, +/turf/open/floor/tdome/tcomms, /area/tdome) "Ee" = ( /obj/effect/landmark/thunderdome/one, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdome1) "Ef" = ( /obj/effect/step_trigger/teleporter/random{ @@ -1316,10 +1036,7 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) "Ez" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) "EG" = ( /obj/effect/decal/warning_stripes{ @@ -1347,24 +1064,17 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "EY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station/shuttle_dispatch) "Fd" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "Fo" = ( /obj/effect/decal/warning_stripes{ @@ -1375,10 +1085,7 @@ "Fw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigar, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "FB" = ( /turf/open/floor/plating, @@ -1398,14 +1105,10 @@ id = "ERT Lock 1"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "FT" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station/shuttle_dispatch) "Ge" = ( /obj/structure/bed/chair{ @@ -1424,10 +1127,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/ert_station) "Gm" = ( /obj/effect/step_trigger/teleporter/random{ @@ -1443,22 +1143,15 @@ /turf/open/space/transit/east/shuttlespace_ew12, /area/space) "Gq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "Gr" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Gs" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Gv" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1477,10 +1170,7 @@ /turf/open/floor/carpet, /area/adminlevel/ert_station) "GB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "GC" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1510,27 +1200,19 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "Restroom" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "HL" = ( /obj/structure/sign/catclock{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station/shuttle_dispatch) "HQ" = ( /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "HW" = ( /obj/docking_port/stationary/emergency_response/idle_port4, @@ -1544,18 +1226,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "Il" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Io" = ( /obj/structure/flora/pottedplant{ @@ -1568,19 +1245,14 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station) "Is" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station) "ID" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "IE" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1596,10 +1268,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station) "IR" = ( /turf/closed/wall/r_wall/unmeltable, @@ -1617,19 +1286,14 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) "Jy" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station) "JT" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "JW" = ( /obj/structure/machinery/cm_vending/sorted/walkman, @@ -1639,24 +1303,16 @@ /turf/closed/wall/mineral/gold, /area/adminlevel/ert_station) "Kq" = ( -/turf/open/floor/tdome{ - icon_state = "redfull" - }, +/turf/open/floor/tdome/redfull, /area/tdome/tdome2) "Kv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/ert_station) "KA" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/ert_station) "KM" = ( /obj/structure/bed/chair{ @@ -1679,18 +1335,13 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "Lt" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/adminlevel/ert_station) "Ly" = ( /obj/effect/decal/warning_stripes{ @@ -1715,15 +1366,10 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "LE" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/ert_station) "LF" = ( /obj/structure/sign/nosmoking_1, @@ -1738,18 +1384,12 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "LR" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/ert_station) "LU" = ( /obj/structure/sign/poster{ @@ -1758,9 +1398,7 @@ name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "LZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1771,37 +1409,27 @@ dir = 4; unacidable = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Mk" = ( /obj/structure/sign/safety, /turf/closed/wall, /area/adminlevel/ert_station) "MB" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/ert_station) "MG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "ML" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "MQ" = ( /obj/structure/disposalpipe/segment{ @@ -1828,9 +1456,7 @@ id = "ERT Lock 4"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "Nk" = ( /obj/structure/flora/pottedplant{ @@ -1844,10 +1470,7 @@ name = "departures board"; pixel_y = 34 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "Nx" = ( /obj/structure/barricade/handrail{ @@ -1861,9 +1484,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "NH" = ( /obj/structure/sign/nosmoking_2, @@ -1871,10 +1492,7 @@ /area/adminlevel/ert_station) "NU" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "NZ" = ( /turf/open/floor/carpet, @@ -1890,17 +1508,13 @@ id = "ERT Lock 3"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "Oi" = ( /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station/shuttle_dispatch) "Oj" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "On" = ( /obj/structure/disposaloutlet{ @@ -1914,9 +1528,7 @@ "OC" = ( /obj/structure/sign/poster/hunk, /obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "OD" = ( /obj/structure/machinery/vending/dinnerware, @@ -1928,19 +1540,14 @@ /area/adminlevel/ert_station) "OI" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "OK" = ( /obj/effect/landmark/thunderdome/one, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdome1) "OT" = ( /turf/closed/wall/almayer/outer, @@ -1957,32 +1564,21 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) "Pr" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "PE" = ( /turf/open/floor/engine, /area/adminlevel/simulation) "PF" = ( /obj/effect/landmark/thunderdome/two, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdome2) "PJ" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/tdome/w_y1/north, /area/tdome) "PS" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "PT" = ( /obj/structure/sign/safety/debark_lounge{ @@ -2005,65 +1601,43 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Qq" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Qr" = ( -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Qz" = ( /obj/item/prop/helmetgarb/rosary, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "QA" = ( /obj/structure/machinery/chem_storage/misc, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "QJ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "QL" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/tdome{ - icon_state = "tcomms" - }, +/turf/open/floor/tdome/tcomms, /area/tdome/tdomeobserve) "Rj" = ( /obj/structure/window/framed/colony, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "RF" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station) "RK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "RL" = ( /obj/structure/surface/table/reinforced/prison, @@ -2072,18 +1646,13 @@ pixel_x = 11; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station) "RV" = ( /obj/structure/closet{ name = "boxing attire" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "RW" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess, @@ -2095,9 +1664,7 @@ id = "tdome_t1"; name = "\improper Team 1 Shutters" }, -/turf/open/floor/tdome{ - icon_state = "test_floor4" - }, +/turf/open/floor/tdome/test_floor4, /area/tdome) "Sk" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -2110,10 +1677,7 @@ /obj/structure/machinery/cm_vending/clothing/antag{ name = "\improper Response Team Automated Equipment Rack" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Sw" = ( /obj/structure/machinery/newscaster/security_unit, @@ -2129,24 +1693,17 @@ /obj/structure/sign/safety/med_cryo{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Tg" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Ti" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/almayer/w_y1/north, /area/adminlevel/ert_station) "Tm" = ( /obj/structure/surface/table/almayer, @@ -2165,16 +1722,10 @@ name = "Observer Shutters"; pixel_y = 9 }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "TD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/ert_station) "TH" = ( /obj/effect/step_trigger/teleporter/random{ @@ -2208,10 +1759,7 @@ }, /obj/structure/bed/sofa/south/grey/right, /obj/item/trash/buritto, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "TX" = ( /obj/structure/surface/table/gamblingtable, @@ -2224,9 +1772,7 @@ pixel_x = -3; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Ua" = ( /obj/structure/machinery/cm_vending/gear/antag{ @@ -2234,10 +1780,7 @@ name = "\improper Response Team Automated Gear Rack"; use_snowflake_points = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Uf" = ( /obj/structure/sign/safety/medical, @@ -2247,22 +1790,14 @@ /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) "Uk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station/shuttle_dispatch) "Ur" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Ut" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/adminlevel/ert_station) "UI" = ( /obj/structure/surface/table/gamblingtable, @@ -2270,9 +1805,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "UQ" = ( /obj/effect/decal/warning_stripes{ @@ -2284,9 +1817,7 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "UW" = ( /obj/effect/step_trigger/teleporter/random{ @@ -2313,15 +1844,10 @@ /area/adminlevel/ert_station) "VD" = ( /obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "VI" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/ert_station/shuttle_dispatch) "VQ" = ( /obj/effect/step_trigger/teleporter/random{ @@ -2338,15 +1864,10 @@ /area/space) "VS" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Wn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "Wp" = ( /obj/effect/decal/warning_stripes{ @@ -2374,9 +1895,7 @@ /area/adminlevel/ert_station) "WH" = ( /obj/structure/machinery/chem_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/centcom/control) "WK" = ( /obj/structure/bed/chair{ @@ -2389,10 +1908,7 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station/shuttle_dispatch) "WQ" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -2422,71 +1938,48 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "XR" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/ert_station) "Ya" = ( /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) "Yn" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station) "Ys" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Yu" = ( /obj/structure/bed/sofa/vert/grey, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) "Yy" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "YE" = ( /obj/structure/machinery/chem_master, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "YJ" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "YO" = ( /obj/structure/surface/table/woodentable, /obj/item/pizzabox/meat{ pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "YP" = ( -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) "YU" = ( /turf/closed/wall, @@ -2498,9 +1991,7 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "Zd" = ( -/turf/open/floor/tdome{ - icon_state = "bluefull" - }, +/turf/open/floor/tdome/bluefull, /area/tdome/tdome1) "Zh" = ( /obj/structure/surface/table/reinforced/prison, @@ -2510,10 +2001,7 @@ name = "Surgery Cleaner" }, /obj/item/storage/box/monkeycubes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) "Zp" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2526,16 +2014,11 @@ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "Zv" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Zw" = ( /obj/structure/sign/safety/debark_lounge, @@ -2543,10 +2026,7 @@ /area/adminlevel/ert_station) "Zy" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station) "ZD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -2563,9 +2043,7 @@ id = "ERT Lock 2"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "ZI" = ( /obj/structure/barricade/handrail, @@ -2573,9 +2051,7 @@ /area/adminlevel/ert_station) "ZJ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "ZU" = ( /obj/structure/bed/chair/comfy, @@ -5568,8 +5044,8 @@ ao an QJ pP -vD -vD +NZ +NZ GB oS Qr @@ -5719,9 +5195,9 @@ YU co an QJ -vD -vD -vD +NZ +NZ +NZ GB oS Qr @@ -5871,7 +5347,7 @@ YU TU Qr QJ -vD +NZ Kk uN GB @@ -6023,8 +5499,8 @@ Rj YO an QJ -vD -vD +NZ +NZ Qz GB oS @@ -6175,9 +5651,9 @@ Rj GB an QJ -vD -vD -vD +NZ +NZ +NZ GB oS QJ diff --git a/maps/predship/huntership.dmm b/maps/predship/huntership.dmm index 8a2019b55d76..2931fd42b111 100644 --- a/maps/predship/huntership.dmm +++ b/maps/predship/huntership.dmm @@ -7,10 +7,7 @@ color = "#6b675e" }, /obj/item/stack/sheet/animalhide/xeno/kinghide, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ac" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ @@ -123,10 +120,7 @@ /obj/structure/machinery/medical_pod/autodoc{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ao" = ( /obj/item/clothing/yautja_cape/ceremonial{ @@ -153,10 +147,7 @@ icon_state = "pred_mask_elder_n"; pixel_y = 29 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ap" = ( /obj/structure/stairs/perspective{ @@ -189,10 +180,7 @@ icon_state = "pred_mask_elder_joshuu"; pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ar" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -205,20 +193,14 @@ /obj/structure/pipes/standard/simple/hidden{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "at" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "au" = ( /obj/structure/surface/table/reinforced/prison{ @@ -233,20 +215,14 @@ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "av" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aw" = ( /obj/structure/curtain/red, @@ -288,10 +264,7 @@ "aB" = ( /obj/structure/closet/crate/critter, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "aC" = ( /obj/structure/surface/rack{ @@ -306,17 +279,11 @@ /obj/item/hunting_trap, /obj/item/hunting_trap, /obj/item/hunting_trap, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aD" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aE" = ( /obj/structure/surface/table/reinforced/prison{ @@ -327,10 +294,7 @@ /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aF" = ( /obj/item/clothing/gloves/yautja/hunter{ @@ -343,10 +307,7 @@ desc = "The ship's on-board self destruct system, let's hope you never have to use it."; name = "Self Destruct System" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "aG" = ( /obj/structure/machinery/power/smes/magical{ @@ -355,10 +316,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aI" = ( /obj/structure/shuttle/engine/heater{ @@ -370,10 +328,7 @@ dir = 8; icon_state = "phoronrwindow" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aK" = ( /obj/structure/shuttle/engine/heater{ @@ -385,26 +340,17 @@ dir = 4; icon_state = "phoronrwindow" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aL" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aN" = ( /obj/structure/machinery/computer/cryopod/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aP" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -421,10 +367,7 @@ /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/bonesetter/predatorbonesetter, /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aT" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -440,17 +383,11 @@ /obj/item/weapon/yautja/knife, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aW" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "aX" = ( /obj/structure/surface/table/reinforced/prison{ @@ -467,20 +404,14 @@ name = "Radar Console"; pixel_x = -7 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "aY" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /obj/structure/pipes/portables_connector{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bb" = ( /obj/structure/pipes/standard/simple/hidden{ @@ -489,19 +420,13 @@ /obj/structure/machinery/computer/crew/alt/yautja{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bc" = ( /obj/structure/machinery/cryopod{ dir = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "bd" = ( /obj/effect/step_trigger/teleporter/yautja_ship, @@ -511,9 +436,7 @@ /obj/structure/machinery/door/airlock/yautja{ name = "\improper Blooded Teleporter" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/yautja) "bg" = ( /obj/structure/surface/rack{ @@ -530,10 +453,7 @@ /obj/item/stack/sheet/mineral/sandstone/large_stack, /obj/item/stack/sheet/mineral/sandstone/large_stack, /obj/item/stack/sheet/mineral/sandstone/large_stack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bj" = ( /turf/closed/wall/huntership, @@ -559,19 +479,13 @@ /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bo" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bp" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -589,10 +503,7 @@ desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; name = "damaged plasma caster" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "br" = ( /obj/item/stool, @@ -602,10 +513,7 @@ /obj/structure/machinery/medical_pod/bodyscanner{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bu" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -616,10 +524,7 @@ /area/yautja) "bv" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bw" = ( /obj/structure/pipes/standard/simple/hidden, @@ -642,10 +547,7 @@ anchored = 1; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bz" = ( /obj/structure/surface/table/reinforced/prison{ @@ -655,23 +557,13 @@ dir = 4; health = 80 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bA" = ( /obj/structure/machinery/chem_dispenser{ req_skill_level = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bC" = ( /obj/structure/surface/table/reinforced/prison{ @@ -682,10 +574,7 @@ desc = "Won by an Elder during their youthful hunting days. None are allowed to touch it."; name = "\improper Dutch's Machete" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bD" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -700,10 +589,7 @@ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bG" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -713,10 +599,7 @@ /area/yautja) "bH" = ( /obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bI" = ( /obj/structure/stairs/perspective{ @@ -724,19 +607,13 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bJ" = ( /obj/structure/pipes/unary/freezer{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bK" = ( /obj/structure/pipes/standard/simple/hidden{ @@ -745,10 +622,7 @@ /turf/open/shuttle/predship, /area/yautja) "bL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bM" = ( /obj/structure/surface/table/reinforced/prison{ @@ -767,10 +641,7 @@ /obj/structure/bed/alien{ color = "#aba9a9" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bQ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -781,10 +652,7 @@ desc = "Claws from a creature that defies nature, you dare not touch it."; force = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bS" = ( /obj/structure/pipes/standard/simple/hidden{ @@ -842,25 +710,17 @@ }, /obj/item/stack/sheet/xenochitin, /obj/item/stack/sheet/xenochitin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bZ" = ( /obj/item/storage/fancy/candle_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ca" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "cb" = ( /obj/structure/machinery/door_control{ @@ -886,10 +746,7 @@ color = "#6b675e" }, /obj/effect/spawner/random/toy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ce" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -937,20 +794,14 @@ /area/yautja) "cj" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cl" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/alienjar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cm" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -985,19 +836,13 @@ dir = 8; icon_state = "phoronrwindow" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cq" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cr" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1051,10 +896,7 @@ /obj/item/reagent_container/food/snacks/xemeatpie{ name = "Elite Hunter's Xenopie" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/yautja) "cv" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1089,10 +931,7 @@ /area/yautja) "cx" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cy" = ( /obj/structure/machinery/gravity_generator, @@ -1103,10 +942,7 @@ dir = 4; icon_state = "phoronrwindow" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cz" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1117,19 +953,13 @@ desc = "A strange hide from an enigmatic creature."; name = "deacon hide" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cA" = ( /obj/structure/machinery/door/airlock/yautja{ name = "\improper Elder Teleporter" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cB" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -1140,17 +970,11 @@ /area/yautja) "cC" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cE" = ( /obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cF" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -1165,10 +989,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "cH" = ( /obj/structure/surface/rack{ @@ -1255,10 +1076,7 @@ pixel_x = 4; pixel_y = -2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cI" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1267,10 +1085,7 @@ /obj/item/weapon/twohanded/sledgehammer{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cJ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1340,17 +1155,11 @@ /area/yautja) "cN" = ( /obj/structure/cryofeed, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cO" = ( /obj/structure/cryofeed/right, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cP" = ( /turf/open/shuttle/predship, @@ -1388,10 +1197,7 @@ /obj/item/stack/sheet/mineral/sandstone/runed/large_stack, /obj/item/stack/sheet/mineral/sandstone/runed/large_stack, /obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cR" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1408,10 +1214,7 @@ name = "Radar Console"; pixel_x = 7 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "cS" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1422,10 +1225,7 @@ /obj/item/clothing/gloves/combat, /obj/item/clothing/head/helmet/gladiator, /obj/item/clothing/suit/armor/gladiator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cT" = ( /obj/structure/surface/rack{ @@ -1433,10 +1233,7 @@ layer = 2.79 }, /obj/item/tool/pickaxe, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cU" = ( /obj/structure/surface/rack{ @@ -1444,20 +1241,14 @@ layer = 2.79 }, /obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/tool/weldingtool/hugetank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cW" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1468,10 +1259,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cX" = ( /obj/item/storage/backpack/yautja, @@ -1494,10 +1282,7 @@ /obj/item/device/healthanalyzer/alien, /obj/item/device/healthanalyzer/alien, /obj/item/device/healthanalyzer/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "cY" = ( /obj/item/tool/kitchen/tray{ @@ -1505,18 +1290,11 @@ }, /obj/item/reagent_container/food/snacks/meat/corgi, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "cZ" = ( /obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) "da" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1533,20 +1311,14 @@ layer = 2.79 }, /obj/item/tool/pickaxe/jackhammer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "dc" = ( /obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; name = "\improper Research Containment" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "de" = ( /obj/structure/kitchenspike, @@ -1554,20 +1326,14 @@ /obj/item/reagent_container/food/snacks/meat/xenomeat, /obj/item/reagent_container/food/snacks/meat/xenomeat, /obj/item/reagent_container/food/snacks/meat/xenomeat, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/yautja) "df" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "di" = ( /obj/item/storage/fancy/egg_box, @@ -1598,17 +1364,11 @@ /obj/item/reagent_container/food/snacks/xemeatpie{ name = "Elite Hunter's Xenopie" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/yautja) "dj" = ( /obj/effect/alien/egg/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "dk" = ( /obj/structure/stairs/perspective{ @@ -1616,10 +1376,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "dl" = ( /obj/structure/stairs/perspective{ @@ -1627,10 +1384,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "dm" = ( /obj/structure/machinery/door_control{ @@ -1667,10 +1421,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "eS" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -1686,10 +1437,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "eY" = ( /obj/structure/bed/chair/hunter{ @@ -1698,19 +1446,13 @@ /turf/open/shuttle/predship, /area/yautja) "fb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/yautja) "fg" = ( /obj/item/map/current_map, /obj/item/device/flashlight/lantern, /obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "fj" = ( /obj/structure/machinery/cryopod, @@ -1729,18 +1471,13 @@ health = 80 }, /obj/item/storage/box/bracer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "fq" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#aba9a9" }, -/turf/open/floor/holofloor{ - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult, /area/yautja) "fF" = ( /obj/structure/surface/rack{ @@ -1792,16 +1529,11 @@ /obj/item/device/flashlight/lamp, /obj/item/device/flashlight/lamp, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "fS" = ( /obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "gb" = ( /obj/structure/closet/crate{ @@ -1837,17 +1569,11 @@ /obj/item/stack/medical/advanced/ointment/predator{ pixel_x = -6 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "gp" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "gr" = ( /obj/structure/closet/crate/secure{ @@ -1859,10 +1585,7 @@ /obj/item/explosive/grenade/spawnergrenade/hellhound, /obj/item/explosive/grenade/spawnergrenade/hellhound, /obj/item/explosive/grenade/spawnergrenade/hellhound, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "gG" = ( /obj/structure/machinery/door_control{ @@ -1872,10 +1595,7 @@ pixel_x = 24; req_one_access_txt = "392" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "gN" = ( /obj/structure/surface/rack{ @@ -1897,28 +1617,20 @@ /obj/item/stack/tile/carpet{ amount = 50 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ha" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "hI" = ( /obj/structure/shuttle/window{ color = "#6b675e" }, -/turf/open/floor{ - color = "#525151"; - icon_state = "dark2" - }, +/turf/open/floor/grey_dark2, /area/yautja) "hJ" = ( /obj/structure/barricade/handrail/strata{ @@ -1927,9 +1639,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "hY" = ( /obj/structure/kitchenspike, @@ -1937,10 +1647,7 @@ /obj/item/reagent_container/food/snacks/meat, /obj/item/reagent_container/food/snacks/meat, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/yautja) "is" = ( /obj/structure/kitchenspike, @@ -1951,10 +1658,7 @@ /obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, /obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, /obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/yautja) "iV" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1965,10 +1669,7 @@ pixel_x = 10; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "jP" = ( /obj/structure/surface/rack{ @@ -2002,10 +1703,7 @@ /area/yautja) "jR" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "jU" = ( /obj/structure/stairs/perspective{ @@ -2013,10 +1711,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "kA" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2025,22 +1720,14 @@ /obj/item/weapon/twohanded/dualsaber{ force_wielded = 35 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "lr" = ( /obj/structure/lamarr, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "lw" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, +/turf/open/gm/dirtgrassborder/desert1, /area/yautja) "mn" = ( /obj/structure/surface/rack{ @@ -2091,10 +1778,7 @@ pixel_x = 1; pixel_y = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "mv" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2102,25 +1786,17 @@ }, /obj/item/storage/large_holster/katana, /obj/item/weapon/sword/katana, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "nd" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, +/turf/open/gm/dirtgrassborder/desert0, /area/yautja) "nh" = ( /obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "nv" = ( /obj/structure/surface/rack{ @@ -2135,10 +1811,7 @@ /obj/item/weapon/twohanded/yautja/spear, /obj/item/weapon/twohanded/yautja/spear, /obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "nT" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2153,10 +1826,7 @@ health = 80 }, /obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "nW" = ( /obj/structure/pipes/standard/simple/hidden{ @@ -2171,10 +1841,7 @@ /obj/effect/decal/remains/human{ pixel_y = -25 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "ov" = ( /obj/structure/surface/rack{ @@ -2188,10 +1855,7 @@ /obj/item/storage/belt/utility/full/pred, /obj/item/stack/yautja_rope, /obj/item/stack/yautja_rope, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "oO" = ( /obj/item/weapon/yautja/chain{ @@ -2200,10 +1864,7 @@ pixel_x = -3; pixel_y = 29 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "qj" = ( /obj/structure/surface/rack{ @@ -2211,10 +1872,7 @@ layer = 2.79 }, /obj/item/tool/crowbar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "qS" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2227,29 +1885,20 @@ pixel_x = 10; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "rt" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/storage/medicomp/full, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "rH" = ( /obj/structure/shuttle/window{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "rY" = ( /obj/structure/surface/rack{ @@ -2292,10 +1941,7 @@ /obj/structure/window/framed/colony/reinforced/hull{ color = "#aba9a9" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "sS" = ( /obj/structure/surface/rack{ @@ -2323,10 +1969,7 @@ /obj/item/stack/sheet/wood{ amount = 50 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "sV" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -2337,29 +1980,20 @@ /area/yautja) "te" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ti" = ( /obj/structure/shuttle/window{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "tn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "tD" = ( /obj/structure/surface/rack{ @@ -2381,10 +2015,7 @@ /obj/item/stack/sheet/plasteel{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "tR" = ( /obj/structure/surface/rack{ @@ -2403,10 +2034,7 @@ /obj/item/frame/table/wood/poor, /obj/item/frame/table/wood/poor, /obj/item/frame/table/wood/poor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "uf" = ( /obj/structure/barricade/handrail/strata{ @@ -2440,10 +2068,7 @@ /obj/item/frame/table/gambling, /obj/item/frame/table/gambling, /obj/item/frame/table/gambling, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "um" = ( /obj/structure/surface/rack{ @@ -2457,29 +2082,20 @@ /obj/item/storage/fancy/candle_box, /obj/item/storage/fancy/candle_box, /obj/item/storage/fancy/candle_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "uO" = ( /obj/structure/bed/chair/hunter{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "uZ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/weapon/sword/ceremonial, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "vO" = ( /obj/structure/machinery/shower{ @@ -2487,10 +2103,7 @@ }, /obj/structure/machinery/door/window/tinted, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "ww" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -2520,10 +2133,7 @@ /obj/item/reagent_container/food/condiment/sugar, /obj/item/reagent_container/food/condiment/sugar, /obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/yautja) "wQ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2537,10 +2147,7 @@ dir = 8; health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "wW" = ( /obj/structure/barricade/handrail/strata{ @@ -2556,10 +2163,7 @@ /obj/item/xeno_egg/forsaken, /obj/item/xeno_egg/forsaken, /obj/item/xeno_egg/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "xO" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2571,10 +2175,7 @@ desc = "An old hide from a fearsome creature."; name = "hunter hide" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "xQ" = ( /obj/structure/stairs/perspective{ @@ -2582,10 +2183,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "yr" = ( /obj/structure/window/reinforced{ @@ -2600,17 +2198,11 @@ color = "#6b675e" }, /obj/item/storage/box/bracer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "yH" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/yautja) "yO" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2624,10 +2216,7 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "zg" = ( /obj/structure/barricade/handrail/strata{ @@ -2636,9 +2225,7 @@ /turf/open/gm/dirtgrassborder/east, /area/yautja) "zA" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/yautja) "zZ" = ( /obj/structure/surface/rack{ @@ -2663,17 +2250,11 @@ /obj/item/frame/table/wood/fancy, /obj/item/frame/table/wood/fancy, /obj/item/frame/table/wood/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "AA" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Be" = ( /obj/structure/machinery/cryopod/right, @@ -2694,42 +2275,28 @@ /obj/item/weapon/yautja/chain, /obj/item/weapon/yautja/sword, /obj/item/weapon/yautja/scythe, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Br" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, +/turf/open/gm/dirtgrassborder/desert2, /area/yautja) "BK" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/storage/medicomp/full, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "BS" = ( /obj/structure/machinery/prop/yautja/bubbler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Cn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/reagent_container/glass/beaker/silver, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Cz" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -2737,10 +2304,7 @@ name = "Prime Empress Hide"; pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "CK" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2755,10 +2319,7 @@ name = "Primordial Empress Steak"; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Dk" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2767,10 +2328,7 @@ /obj/item/device/flashlight/slime{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Dr" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -2795,10 +2353,7 @@ /obj/structure/closet/secure_closet/freezer/fridge{ locked = 0 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/yautja) "DJ" = ( /obj/structure/machinery/computer/crew/alt{ @@ -2808,33 +2363,20 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Es" = ( /obj/structure/bed/chair/hunter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Et" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Fh" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) "Ft" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2854,19 +2396,13 @@ icon_state = "security_cam"; name = "Radar Console" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Fy" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#aba9a9" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "FG" = ( /obj/effect/landmark/clan_spawn, @@ -2884,10 +2420,7 @@ anchored = 1; desc = "A strange device taken from a far-off land. It looks incredibly fragile, best not to touch it." }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Gr" = ( /obj/structure/surface/table/reinforced/prison{ @@ -2920,9 +2453,7 @@ /turf/open/shuttle/predship, /area/yautja) "GM" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirtgrassborder/desert_dug, /area/yautja) "GP" = ( /obj/structure/prop/brazier/torch{ @@ -2935,10 +2466,7 @@ color = "#6b675e" }, /obj/item/weapon/chainofcommand, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Ha" = ( /obj/structure/surface/rack{ @@ -2961,10 +2489,7 @@ /obj/structure/bed/chair/hunter{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Hv" = ( /obj/structure/bed{ @@ -2973,10 +2498,7 @@ /obj/item/bedsheet/captain{ color = "#aba9a9" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "HD" = ( /obj/structure/surface/rack{ @@ -2992,10 +2514,7 @@ /obj/item/weapon/gun/energy/yautja/plasmarifle{ pixel_y = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "HN" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3006,10 +2525,7 @@ health = 80; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "If" = ( /obj/structure/surface/rack{ @@ -3023,10 +2539,7 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol{ pixel_y = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Im" = ( /obj/structure/surface/rack{ @@ -3063,18 +2576,13 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "Iw" = ( /obj/structure/machinery/door/airlock/yautja/secure{ name = "\improper Hellhound Quarters" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "IC" = ( /obj/structure/machinery/door/airlock/yautja/secure/elder{ @@ -3117,16 +2625,10 @@ /obj/item/stack/sheet/metal{ amount = 50 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "JH" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "JL" = ( /obj/item/weapon/yautja/knife{ @@ -3134,10 +2636,7 @@ name = "sacred ceremonial dagger"; pixel_x = 25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "KD" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3159,10 +2658,7 @@ pixel_x = 4; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "KI" = ( /obj/item/tool/kitchen/tray{ @@ -3170,10 +2666,7 @@ }, /obj/item/reagent_container/food/snacks/bearmeat, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "KK" = ( /obj/effect/decal/remains/human{ @@ -3186,24 +2679,15 @@ color = "#6b675e" }, /obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Lo" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "LX" = ( /obj/structure/prop/pred_flight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Mb" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3215,10 +2699,7 @@ desc = "The skin of a nightmare long thought lost to time."; name = "corroder hide" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ME" = ( /obj/structure/stairs/perspective{ @@ -3226,38 +2707,25 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "MI" = ( /obj/structure/machinery/door/airlock/yautja{ name = "\improper Blooded Teleporter" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "NA" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/yautja) "Ok" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, +/turf/open/gm/dirtgrassborder/desert, /area/yautja) "OZ" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Pm" = ( /obj/item/stack/sheet/glass{ @@ -3273,26 +2741,17 @@ color = "#6b675e"; layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Pp" = ( /obj/effect/alien/weeds/node/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Pr" = ( /obj/structure/machinery/door/airlock/yautja/secure{ name = "\improper Research Containment" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "PN" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -3304,10 +2763,7 @@ /area/yautja) "Qi" = ( /obj/structure/machinery/gibber, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/yautja) "Qj" = ( /obj/structure/kitchenspike, @@ -3315,19 +2771,13 @@ /obj/item/reagent_container/food/snacks/meat/corgi, /obj/item/reagent_container/food/snacks/meat/xenomeat, /obj/item/reagent_container/food/snacks/meat/xenomeat, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/yautja) "Qs" = ( /obj/structure/machinery/chem_master{ req_skill_level = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "QF" = ( /obj/item/weapon/yautja/knife{ @@ -3335,10 +2785,7 @@ name = "sacred ceremonial dagger"; pixel_x = -25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "QK" = ( /obj/structure/barricade/handrail/strata{ @@ -3347,32 +2794,21 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) "Rq" = ( /obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "RE" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/yautja) "RS" = ( /turf/open/gm/dirtgrassborder/north, /area/yautja) "Sx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/yautja) "SB" = ( /obj/structure/bed/chair/hunter{ @@ -3407,10 +2843,7 @@ /obj/item/frame/table/wood, /obj/item/frame/table/wood, /obj/item/frame/table/wood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Uv" = ( /obj/effect/decal/remains/xeno{ @@ -3424,10 +2857,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "UT" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3452,20 +2882,13 @@ icon_state = "security_cam"; name = "Radar Console" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "VY" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#aba9a9" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) "We" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3492,10 +2915,7 @@ }, /obj/item/reagent_container/food/snacks/stew, /obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Xg" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3506,10 +2926,7 @@ pixel_x = 10; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Xp" = ( /obj/structure/surface/rack{ @@ -3555,17 +2972,11 @@ /area/yautja) "XP" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Ys" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/yautja) "YL" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -3590,20 +3001,14 @@ /obj/structure/machinery/door/poddoor/shutters/almayer/yautja{ dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Zu" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/alien_embryo, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ZD" = ( /obj/structure/stairs/perspective{ @@ -3611,24 +3016,16 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ZI" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, +/turf/open/gm/dirtgrassborder/desert3, /area/yautja) "ZM" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "ZR" = ( /obj/structure/surface/rack{ @@ -3638,10 +3035,7 @@ /obj/item/stack/yautja_rope, /obj/item/stack/yautja_rope, /obj/item/stack/yautja_rope, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) (1,1,1) = {" diff --git a/maps/predship/regular.dmm b/maps/predship/regular.dmm index b155d3f8ae84..5524370c0847 100644 --- a/maps/predship/regular.dmm +++ b/maps/predship/regular.dmm @@ -6,122 +6,83 @@ /obj/structure/machinery/door/airlock/secure{ name = "Storage Chamber" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "af" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ah" = ( /obj/structure/surface/rack, /obj/item/weapon/twohanded/spear, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ai" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lantern, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ak" = ( /obj/structure/surface/rack, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "am" = ( /obj/structure/surface/rack, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ao" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ap" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, /obj/item/weapon/yautja/knife, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ar" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/circular_saw/predatorbonesaw, /obj/item/tool/surgery/cautery/predatorcautery, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "az" = ( /obj/structure/machinery/optable, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aA" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aB" = ( /obj/structure/surface/table/reinforced, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aG" = ( /obj/structure/surface/rack, /obj/item/storage/box/lights/bulbs, /obj/item/storage/box/lights/bulbs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aK" = ( /obj/structure/bed/alien, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aN" = ( /obj/structure/surface/table/reinforced{ @@ -131,36 +92,24 @@ dir = 8 }, /obj/structure/machinery/door/window/southleft, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aO" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /obj/item/tool/surgery/scalpel/predatorscalpel, /obj/item/tool/surgery/FixOVein/predatorFixOVein, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aP" = ( /obj/structure/curtain/red, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aQ" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Operation Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aT" = ( /obj/structure/surface/table/reinforced{ @@ -178,27 +127,18 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aU" = ( /obj/structure/surface/rack, /obj/item/storage/backpack/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aW" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Houndmaster's Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aX" = ( /obj/structure/surface/table/reinforced, @@ -232,10 +172,7 @@ /obj/item/stack/medical/splint{ name = "splints" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aY" = ( /obj/structure/surface/table/reinforced, @@ -254,10 +191,7 @@ /obj/item/stack/medical/advanced/bruise_pack/predator{ name = "mending herbs" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aZ" = ( /obj/structure/surface/table/reinforced{ @@ -271,10 +205,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ba" = ( /obj/structure/surface/table/reinforced, @@ -293,26 +224,17 @@ /obj/item/stack/medical/advanced/ointment/predator{ name = "soothing herbs" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bg" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Medicine Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bh" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bi" = ( /obj/structure/surface/rack{ @@ -336,19 +258,13 @@ /obj/item/stack/sheet/mineral/sandstone{ amount = 50 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bj" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Hellhound Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bp" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -364,10 +280,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bs" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -387,10 +300,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bu" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -407,10 +317,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bx" = ( /obj/effect/step_trigger/teleporter/yautja_ship, @@ -418,9 +325,7 @@ /area/yautja) "bz" = ( /obj/structure/shuttle/window, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "bA" = ( /obj/structure/surface/table/reinforced, @@ -428,10 +333,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bM" = ( /obj/structure/surface/table/reinforced, @@ -444,10 +346,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bN" = ( /obj/structure/surface/table/reinforced, @@ -460,10 +359,7 @@ health = 80 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bO" = ( /obj/structure/surface/table/reinforced, @@ -479,10 +375,7 @@ desc = "A close-fitting mask that appears to only cover half of the face. One can only wonder who would make such a thing."; name = "strange half-mask" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bP" = ( /obj/structure/surface/table/reinforced, @@ -490,17 +383,11 @@ dir = 8; health = 80 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bQ" = ( /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bR" = ( /obj/structure/surface/table/reinforced{ @@ -517,19 +404,13 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bS" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Airlock Out" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bT" = ( /obj/item/hunting_trap, @@ -545,25 +426,16 @@ /obj/item/hunting_trap, /obj/item/hunting_trap, /obj/item/hunting_trap, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bU" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bV" = ( /obj/structure/surface/rack, /obj/item/device/encryptionkey/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bW" = ( /obj/structure/surface/rack, @@ -572,17 +444,11 @@ pixel_x = -6; pixel_y = -5 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bX" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bY" = ( /obj/structure/surface/rack{ @@ -592,17 +458,11 @@ /obj/item/explosive/grenade/spawnergrenade/smartdisc, /obj/item/explosive/grenade/spawnergrenade/smartdisc, /obj/item/explosive/grenade/spawnergrenade/smartdisc, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bZ" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ca" = ( /obj/structure/surface/rack, @@ -611,10 +471,7 @@ dir = 4; icon_state = "bulb1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cb" = ( /obj/structure/surface/rack, @@ -622,45 +479,30 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cc" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ce" = ( /obj/structure/surface/rack, /obj/item/weapon/yautja/knife, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cg" = ( /obj/structure/xenoautopsy/tank, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ch" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ci" = ( /obj/structure/surface/rack, @@ -669,10 +511,7 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cj" = ( /obj/structure/xenoautopsy/tank, @@ -680,10 +519,7 @@ dir = 4; icon_state = "bulb1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ck" = ( /obj/structure/surface/rack, @@ -703,10 +539,7 @@ pixel_x = -4; pixel_y = -3 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cl" = ( /obj/structure/surface/rack, @@ -721,27 +554,19 @@ /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cm" = ( /obj/structure/machinery/door/airlock/secure{ name = "Central Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cn" = ( /obj/structure/machinery/door/airlock/secure{ name = "Storage Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "co" = ( /obj/structure/surface/table/reinforced, @@ -752,10 +577,7 @@ /obj/structure/machinery/door/window/southleft{ layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cp" = ( /obj/structure/surface/table/reinforced, @@ -766,44 +588,29 @@ /obj/structure/machinery/door/window/southleft{ layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cq" = ( /obj/structure/bed/chair/wood/wings, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cu" = ( /obj/structure/bed/chair/wood/wings{ dir = 4; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cw" = ( /obj/structure/bed/chair/wood/wings{ dir = 8; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cx" = ( /obj/structure/surface/table/reinforced, @@ -821,38 +628,26 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cy" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Meeting Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cz" = ( /obj/structure/machinery/door/airlock/secure{ name = "Trophy Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cA" = ( /obj/structure/bed/chair/wood/wings{ dir = 1; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cB" = ( /obj/structure/surface/table/reinforced, @@ -866,10 +661,7 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cC" = ( /obj/structure/surface/table/reinforced, @@ -882,35 +674,24 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cD" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cE" = ( /obj/item/reagent_container/food/snacks/stew, /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/stew, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cG" = ( /obj/structure/machinery/door/airlock/secure{ name = "Practice Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cH" = ( /obj/structure/surface/table/reinforced, @@ -918,10 +699,7 @@ /obj/item/clothing/under/chainshirt/hunter, /obj/item/clothing/gloves/combat, /obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cI" = ( /obj/structure/surface/table/reinforced, @@ -929,10 +707,7 @@ /obj/item/device/assembly/voice, /obj/item/weapon/baton/cattleprod, /obj/item/weapon/baton/cattleprod, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cJ" = ( /obj/structure/surface/table/reinforced, @@ -941,29 +716,20 @@ /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cK" = ( /obj/structure/machinery/door/airlock/freezer{ name = "\improper Cooler Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cL" = ( /obj/structure/machinery/door/airlock/glass{ id = "Prisoner Cell 1"; name = "\improper Prisoner Cell 1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cM" = ( /obj/structure/machinery/door_display/research_cell{ @@ -978,10 +744,7 @@ id = "Prisoner Cell 2"; name = "\improper Prisoner Cell 2" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cO" = ( /obj/structure/machinery/door_display/research_cell{ @@ -996,10 +759,7 @@ id = "Prisoner Cell 3"; name = "\improper Prisoner Cell 3" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cQ" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1011,45 +771,31 @@ /area/yautja) "cR" = ( /obj/structure/closet, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cS" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Feeder Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cW" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Feed Hall" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cX" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Containment Cells" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cY" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Wargear Storage" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cZ" = ( /obj/structure/surface/table/reinforced, @@ -1059,36 +805,24 @@ /obj/item/weapon/sword, /obj/item/weapon/sword, /obj/item/weapon/sword, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "da" = ( /obj/structure/machinery/door/airlock/glass{ name = "\improper Fighting Pit" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "db" = ( /obj/structure/kitchenspike, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dd" = ( /obj/structure/machinery/door/airlock/glass{ id = "Prisoner Cell 4"; name = "\improper Prisoner Cell 4" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "de" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1103,10 +837,7 @@ id = "Prisoner Cell 5"; name = "\improper Prisoner Cell 5" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dg" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1121,10 +852,7 @@ id = "Prisoner Cell 6"; name = "\improper Prisoner Cell 6" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "di" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1142,10 +870,7 @@ /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dl" = ( /obj/structure/surface/table/reinforced, @@ -1155,51 +880,34 @@ /obj/item/restraint/legcuffs, /obj/item/restraint/legcuffs, /obj/item/restraint/legcuffs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dm" = ( /obj/structure/morgue/sarcophagus, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "do" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Fore Rooms" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "dp" = ( /obj/structure/surface/table/reinforced, /obj/item/oldresearch/Blood, /obj/item/oldresearch/Blood, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ds" = ( /obj/structure/surface/table/reinforced, /obj/item/alienjar, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dz" = ( /obj/structure/surface/table/reinforced, /obj/item/oldresearch/Resin, /obj/item/oldresearch/Resin, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dB" = ( /obj/structure/machinery/door/window/southleft{ @@ -1210,76 +918,49 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dC" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Burial Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dD" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Growth and Research Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dH" = ( /obj/structure/machinery/door/airlock/external{ name = "\improper Airlock" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dK" = ( /obj/structure/machinery/door/airlock/secure{ name = "Navigator's Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dL" = ( /obj/effect/alien/egg, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dP" = ( /obj/structure/bed/chair/wood/normal{ icon_state = "echair0" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dQ" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dR" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "hd" = ( /obj/structure/shuttle/engine/heater{ @@ -1290,56 +971,38 @@ dir = 1; icon_state = "bulb1" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "hW" = ( /obj/structure/ore_box, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "hX" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lantern, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ji" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#686245" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "jH" = ( /obj/structure/machinery/door/airlock/secure{ name = "Blooded Chambers" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "kj" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/backpack/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "kl" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ld" = ( /obj/structure/surface/table/reinforced, @@ -1348,27 +1011,19 @@ /obj/item/clothing/gloves/combat, /obj/item/clothing/head/helmet/gladiator, /obj/item/clothing/suit/armor/gladiator, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "pH" = ( /obj/structure/bed/alien, /obj/effect/landmark/clan_spawn, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ET" = ( /obj/structure/machinery/power/terminal{ dir = 1; icon_state = "term" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "HY" = ( /obj/structure/machinery/power/smes/magical{ @@ -1377,9 +1032,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "Jy" = ( /obj/structure/surface/table/reinforced{ @@ -1387,19 +1040,13 @@ }, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "Oj" = ( /obj/structure/machinery/door/airlock/secure{ name = "Elder Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "TU" = ( /turf/closed/shuttle{ @@ -1421,20 +1068,13 @@ /turf/open/space, /area/space) "Zr" = ( -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "Zv" = ( -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ZB" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "ZI" = ( /turf/closed/wall/indestructible/other{ @@ -1446,9 +1086,7 @@ dir = 1; icon_state = "heater" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) (1,1,1) = {" diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm index dd799ca7cd6e..e1ffd6161d7a 100644 --- a/maps/shuttles/dropship_alamo.dmm +++ b/maps/shuttles/dropship_alamo.dmm @@ -10,9 +10,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "ax" = ( /obj/structure/shuttle/part/dropship1/transparent/nose_center, @@ -39,9 +37,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "cC" = ( /obj/structure/shuttle/part/dropship1/nose_front_right, @@ -51,9 +47,7 @@ /obj/item/device/radio/intercom/alamo{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/drop1/sulaco) "de" = ( /turf/closed/shuttle/dropship1{ @@ -69,9 +63,7 @@ req_one_access_txt = "3;22"; throw_range = 15 }, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/drop1/sulaco) "eD" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_right_cap, @@ -92,14 +84,10 @@ }, /area/shuttle/drop1/sulaco) "il" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "in" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop1/sulaco) "iv" = ( /turf/closed/shuttle/dropship1{ @@ -195,9 +183,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "rl" = ( /obj/structure/shuttle/part/dropship1/lower_right_wall, @@ -222,9 +208,7 @@ pixel_x = 21; pixel_y = 43 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "wk" = ( /obj/effect/attach_point/weapon/dropship1/right_wing, @@ -240,17 +224,13 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "wC" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "xM" = ( /obj/structure/shuttle/part/dropship1/bottom_right_wall, @@ -298,9 +278,7 @@ /obj/effect/attach_point/crew_weapon/dropship1/floor{ attach_id = 9 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "BS" = ( /turf/closed/shuttle/dropship1{ @@ -308,9 +286,7 @@ }, /area/shuttle/drop1/sulaco) "Ce" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/drop1/sulaco) "Cg" = ( /turf/closed/shuttle/dropship1{ @@ -325,9 +301,7 @@ pixel_x = -6; pixel_y = -16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Et" = ( /turf/closed/shuttle/dropship1{ @@ -357,9 +331,7 @@ dir = 1; id = "starboard_door" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Ho" = ( /obj/structure/machinery/computer/dropship_weapons/dropship1, @@ -371,9 +343,7 @@ pixel_y = 16 }, /obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "HP" = ( /obj/effect/attach_point/weapon/dropship1/right_fore, @@ -384,9 +354,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ id = "aft_door" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Il" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -429,9 +397,7 @@ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "KJ" = ( /turf/closed/shuttle/dropship1{ @@ -476,9 +442,7 @@ /obj/item/device/radio/intercom/alamo{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop1/sulaco) "Ph" = ( /turf/closed/shuttle/dropship1{ @@ -488,17 +452,13 @@ "Py" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/dropship/flight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "PA" = ( /obj/effect/attach_point/crew_weapon/dropship1/floor{ attach_id = 7 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Qh" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -532,9 +492,7 @@ /turf/template_noop, /area/shuttle/drop1/sulaco) "Tt" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/drop1/sulaco) "Tu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -548,9 +506,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "TE" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -564,9 +520,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "TM" = ( /obj/effect/attach_point/weapon/dropship1/left_fore, @@ -580,9 +534,7 @@ }, /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/cameras/dropship/one, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "UN" = ( /obj/effect/attach_point/electronics/dropship1{ @@ -624,9 +576,7 @@ /obj/item/device/radio/intercom/alamo{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/drop1/sulaco) "XH" = ( /obj/effect/attach_point/fuel/dropship1{ @@ -641,17 +591,13 @@ id = "port_door"; dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "YV" = ( /obj/effect/attach_point/crew_weapon/dropship1/floor{ attach_id = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Za" = ( /turf/closed/shuttle/dropship1{ @@ -659,9 +605,7 @@ }, /area/shuttle/drop1/sulaco) "Zo" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Zv" = ( /turf/closed/shuttle/dropship1{ diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm index 969e5927d3f8..64ab081be5fc 100644 --- a/maps/shuttles/dropship_normandy.dmm +++ b/maps/shuttles/dropship_normandy.dmm @@ -11,9 +11,7 @@ "aH" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/cameras/dropship/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "ba" = ( /obj/effect/attach_point/fuel/dropship2{ @@ -38,9 +36,7 @@ /obj/item/device/radio/intercom/normandy{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/drop2/sulaco) "cj" = ( /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, @@ -50,9 +46,7 @@ /obj/effect/attach_point/crew_weapon/dropship2/floor{ attach_id = 7 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "eu" = ( /turf/closed/shuttle/dropship2{ @@ -73,9 +67,7 @@ /obj/effect/attach_point/crew_weapon/dropship2/floor{ attach_id = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "fx" = ( /turf/closed/shuttle/dropship2{ @@ -109,9 +101,7 @@ /obj/structure/bed/chair/dropship/pilot{ dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "gV" = ( /obj/effect/attach_point/fuel/dropship2{ @@ -127,9 +117,7 @@ dir = 1; id = "starboard_door" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "it" = ( /obj/structure/bed/chair/vehicle{ @@ -140,9 +128,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "iI" = ( /obj/structure/shuttle/part/dropship2/right_inner_wing_connector, @@ -184,9 +170,7 @@ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "lz" = ( /obj/effect/attach_point/weapon/dropship2/right_fore, @@ -203,9 +187,7 @@ pixel_y = 16 }, /obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "lJ" = ( /turf/closed/shuttle/dropship2{ @@ -225,9 +207,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "nq" = ( /obj/effect/attach_point/weapon/dropship2/left_fore, @@ -262,17 +242,13 @@ }, /area/shuttle/drop2/sulaco) "qg" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/drop2/sulaco) "rc" = ( /obj/item/device/radio/intercom/normandy{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop2/sulaco) "rw" = ( /obj/structure/shuttle/part/dropship2/nose_front_right, @@ -292,22 +268,16 @@ id = "port_door"; dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "uC" = ( /obj/effect/attach_point/crew_weapon/dropship2/floor{ attach_id = 9 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "vd" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "wX" = ( /turf/closed/shuttle/dropship2{ @@ -320,9 +290,7 @@ }, /area/shuttle/drop2/sulaco) "xx" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop2/sulaco) "xU" = ( /turf/closed/shuttle/dropship2{ @@ -378,9 +346,7 @@ }, /area/shuttle/drop2/sulaco) "Co" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/drop2/sulaco) "Dq" = ( /obj/effect/attach_point/electronics/dropship2{ @@ -417,9 +383,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "GE" = ( /turf/closed/shuttle/dropship2{ @@ -435,9 +399,7 @@ req_one_access_txt = "3;22"; throw_range = 15 }, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/drop2/sulaco) "HB" = ( /turf/closed/shuttle/dropship2/transparent{ @@ -471,9 +433,7 @@ /obj/item/device/radio/intercom/normandy{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/drop2/sulaco) "Lk" = ( /turf/closed/shuttle/dropship2{ @@ -493,9 +453,7 @@ pixel_x = 8; pixel_y = -16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "LY" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_center, @@ -518,9 +476,7 @@ "MQ" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/dropship/flight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Nt" = ( /obj/effect/attach_point/weapon/dropship2/left_wing, @@ -557,9 +513,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Px" = ( /turf/closed/shuttle/dropship2{ @@ -567,9 +521,7 @@ }, /area/shuttle/drop2/sulaco) "PJ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Qd" = ( /obj/structure/machinery/camera/autoname/almayer/dropship_two{ @@ -582,9 +534,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Qo" = ( /turf/closed/shuttle/dropship2{ @@ -607,9 +557,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ id = "aft_door" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "RG" = ( /turf/closed/shuttle/dropship2{ @@ -641,9 +589,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Tp" = ( /turf/closed/shuttle/dropship2{ @@ -689,9 +635,7 @@ pixel_x = 21; pixel_y = 43 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Xr" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, diff --git a/maps/shuttles/ert_pmc_shuttle.dmm b/maps/shuttles/ert_pmc_shuttle.dmm index 6f0ee784045b..55c6abf7416f 100644 --- a/maps/shuttles/ert_pmc_shuttle.dmm +++ b/maps/shuttles/ert_pmc_shuttle.dmm @@ -16,9 +16,7 @@ }, /area/shuttle/ert) "d" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "e" = ( /turf/closed/shuttle/ert{ @@ -31,9 +29,7 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "g" = ( /obj/structure/surface/rack, @@ -42,14 +38,10 @@ pixel_x = 2; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "h" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "i" = ( /turf/template_noop, @@ -60,9 +52,7 @@ }, /area/shuttle/ert) "k" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -70,9 +60,7 @@ }, /area/shuttle/ert) "m" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "n" = ( /turf/closed/shuttle/ert{ @@ -95,9 +83,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "r" = ( /turf/closed/shuttle/ert{ @@ -105,24 +91,18 @@ }, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "t" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "u" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "v" = ( /turf/closed/shuttle/ert{ @@ -171,29 +151,21 @@ }, /area/shuttle/ert) "G" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "H" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "K" = ( /turf/closed/shuttle/ert{ @@ -205,9 +177,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "M" = ( /turf/closed/shuttle/ert{ @@ -230,9 +200,7 @@ /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress_pmc/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "R" = ( /turf/closed/shuttle/ert{ @@ -261,9 +229,7 @@ }, /area/shuttle/ert) "Y" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "Z" = ( /turf/closed/shuttle/ert{ diff --git a/maps/shuttles/ert_response_shuttle.dmm b/maps/shuttles/ert_response_shuttle.dmm index 5f4d2b23d846..cd032707dee0 100644 --- a/maps/shuttles/ert_response_shuttle.dmm +++ b/maps/shuttles/ert_response_shuttle.dmm @@ -6,9 +6,7 @@ }, /area/shuttle/ert) "b" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "c" = ( /obj/docking_port/mobile/emergency_response/ert1, @@ -21,14 +19,10 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "f" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "h" = ( /turf/closed/shuttle/ert{ @@ -43,9 +37,7 @@ "k" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -59,14 +51,10 @@ /area/shuttle/ert) "o" = ( /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "r" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "s" = ( /turf/closed/shuttle/ert{ @@ -84,9 +72,7 @@ }, /area/shuttle/ert) "v" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "x" = ( /turf/closed/shuttle/ert{ @@ -95,9 +81,7 @@ /area/shuttle/ert) "y" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "z" = ( /turf/closed/shuttle/ert{ @@ -130,22 +114,16 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "K" = ( /turf/closed/shuttle/ert{ @@ -155,9 +133,7 @@ "L" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "M" = ( /obj/structure/surface/rack, @@ -165,14 +141,10 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/full/with_defib_and_analyzer, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "N" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "O" = ( /obj/structure/surface/rack, @@ -181,9 +153,7 @@ pixel_x = 2; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "P" = ( /turf/closed/shuttle/ert{ @@ -195,9 +165,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( /turf/closed/shuttle/ert{ @@ -221,9 +189,7 @@ /turf/template_noop, /area/template_noop) "Z" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/ert_shuttle_big.dmm b/maps/shuttles/ert_shuttle_big.dmm index a07c57e00a20..0dbd1adcfb47 100644 --- a/maps/shuttles/ert_shuttle_big.dmm +++ b/maps/shuttles/ert_shuttle_big.dmm @@ -5,9 +5,7 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "bo" = ( /obj/effect/decal/warning_stripes{ @@ -31,9 +29,7 @@ /obj/item/ammo_magazine/pistol/mod88{ pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "dx" = ( /obj/structure/surface/table/almayer, @@ -53,9 +49,7 @@ /obj/item/tool/pen, /obj/item/tool/pen, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "fr" = ( /obj/effect/decal/warning_stripes{ @@ -87,9 +81,7 @@ /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "hv" = ( /obj/structure/bed/chair/office/light{ @@ -107,9 +99,7 @@ }, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "hZ" = ( /obj/effect/decal/warning_stripes{ @@ -126,15 +116,11 @@ /obj/item/clothing/accessory/storage/webbing, /obj/item/cell/infinite, /obj/item/cell/infinite, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "iu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "iN" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -142,9 +128,7 @@ name = "Operating Theatre"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "iP" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -155,18 +139,14 @@ /area/shuttle/ert) "ja" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "jP" = ( /obj/structure/closet/secure_closet/securecom{ desc = "You could probably get thrown out an airlock just by looking at this..."; name = "captain's secure box" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "jZ" = ( /obj/structure/bed, @@ -175,18 +155,14 @@ /area/shuttle/ert) "ke" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "la" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "lp" = ( /obj/effect/decal/warning_stripes{ @@ -205,9 +181,7 @@ pixel_x = 2; pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "mH" = ( /obj/effect/decal/warning_stripes{ @@ -231,9 +205,7 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "oc" = ( /obj/structure/surface/table/almayer, @@ -245,35 +217,26 @@ /obj/item/tool/crowbar, /obj/item/tool/hand_labeler, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "px" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "pI" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "qk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/shuttle/ert) "qy" = ( /obj/effect/decal/warning_stripes{ @@ -296,9 +259,7 @@ dir = 4 }, /obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "rG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -310,9 +271,7 @@ "rN" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "sI" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -322,16 +281,12 @@ /area/shuttle/ert) "sW" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "tf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/card, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "ts" = ( /obj/effect/decal/warning_stripes{ @@ -365,9 +320,7 @@ /area/shuttle/ert) "up" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "uO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -383,9 +336,7 @@ /turf/open/floor/wood, /area/shuttle/ert) "vk" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "vl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -394,9 +345,7 @@ name = "General Listening Channel"; pixel_x = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "vA" = ( /obj/structure/bed/chair/office/light{ @@ -409,9 +358,7 @@ /area/shuttle/ert) "wK" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "xK" = ( /obj/structure/window/framed/almayer/white, @@ -422,9 +369,7 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "yQ" = ( /obj/effect/decal/warning_stripes{ @@ -440,9 +385,7 @@ "zd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "zT" = ( /obj/structure/surface/rack, @@ -452,9 +395,7 @@ /obj/item/clothing/accessory/storage/webbing, /obj/item/clothing/glasses/welding, /obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "zZ" = ( /obj/structure/window/framed/almayer/white/hull, @@ -467,9 +408,7 @@ /area/shuttle/ert) "AE" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "AT" = ( /obj/effect/decal/warning_stripes{ @@ -489,10 +428,7 @@ "AZ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/shuttle/ert) "Bq" = ( /obj/effect/decal/warning_stripes{ @@ -535,22 +471,16 @@ /obj/item/storage/box/m94, /obj/item/storage/box/m94, /obj/item/storage/box/zipcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "DC" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "DO" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "ER" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -567,15 +497,11 @@ name = "Operating Theatre"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Ik" = ( /obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "JE" = ( /obj/effect/decal/warning_stripes{ @@ -598,9 +524,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Kg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -632,21 +556,15 @@ /area/shuttle/ert) "KS" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Lk" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "LB" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Ml" = ( /turf/closed/wall/almayer/white, @@ -656,26 +574,20 @@ /obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "MH" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Nt" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/smg/m39, /obj/item/ammo_magazine/smg/m39, /obj/item/weapon/gun/smg/m39/elite, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "NB" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -696,16 +608,12 @@ /obj/item/tool/pen, /obj/item/tool/pen, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "OF" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Pf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -721,9 +629,7 @@ /turf/closed/wall/almayer/white/hull, /area/shuttle/ert) "Qr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Qx" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -735,9 +641,7 @@ /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "QM" = ( /obj/structure/surface/table/almayer, @@ -771,17 +675,13 @@ }, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "QQ" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Ro" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -811,9 +711,7 @@ /area/shuttle/ert) "So" = ( /obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "SQ" = ( /obj/structure/surface/table/almayer, @@ -830,9 +728,7 @@ /obj/item/device/radio, /obj/item/device/radio, /obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "SZ" = ( /obj/effect/decal/warning_stripes{ @@ -848,27 +744,20 @@ "Tj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/ert/big, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Tp" = ( /turf/template_noop, /area/template_noop) "Tq" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Tv" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/shuttle/ert) "TF" = ( /obj/structure/surface/table/almayer, @@ -882,9 +771,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/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "TJ" = ( /obj/effect/decal/warning_stripes{ @@ -911,9 +798,7 @@ /area/shuttle/ert) "Uq" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Vw" = ( /obj/structure/reagent_dispensers/watertank, @@ -921,9 +806,7 @@ /obj/item/clothing/mask/gas, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "VW" = ( /obj/structure/surface/table/almayer, @@ -934,10 +817,7 @@ /obj/item/map/current_map{ pixel_y = -5 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/shuttle/ert) "WR" = ( /obj/structure/surface/table/almayer, @@ -945,17 +825,13 @@ network = list("Military","Almayer"); dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "WW" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/shuttle/ert) "XW" = ( /obj/structure/sink{ @@ -964,9 +840,7 @@ /obj/structure/mirror{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/shuttle/ert) "Yo" = ( /obj/effect/decal/warning_stripes{ @@ -984,23 +858,17 @@ /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "Zl" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Zy" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/ert_small_shuttle_north.dmm b/maps/shuttles/ert_small_shuttle_north.dmm index 0fa2e534dbe3..fa093e316520 100644 --- a/maps/shuttles/ert_small_shuttle_north.dmm +++ b/maps/shuttles/ert_small_shuttle_north.dmm @@ -37,9 +37,7 @@ network = list("Military","Almayer"); dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "o" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -80,9 +78,7 @@ icon_state = "N"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "v" = ( /obj/structure/closet/hydrant{ @@ -123,9 +119,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "C" = ( /obj/docking_port/mobile/emergency_response/small, @@ -135,16 +129,12 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "E" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/ert/small, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "F" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -168,9 +158,7 @@ pixel_x = -1; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "I" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ @@ -189,9 +177,7 @@ "K" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "O" = ( /turf/open/floor/plating/almayer, @@ -201,9 +187,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "W" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ diff --git a/maps/shuttles/ert_twe_shuttle.dmm b/maps/shuttles/ert_twe_shuttle.dmm index 7e518ae9af66..120aa8e55399 100644 --- a/maps/shuttles/ert_twe_shuttle.dmm +++ b/maps/shuttles/ert_twe_shuttle.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "b" = ( /turf/closed/shuttle/ert{ @@ -11,27 +9,19 @@ /area/shuttle/ert) "e" = ( /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "f" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "g" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "h" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "i" = ( /turf/closed/shuttle/ert{ @@ -61,9 +51,7 @@ }, /area/shuttle/ert) "p" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "q" = ( /obj/docking_port/mobile/emergency_response/ert4, @@ -75,23 +63,17 @@ "r" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "t" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "v" = ( /turf/closed/shuttle/ert{ @@ -121,9 +103,7 @@ /area/shuttle/ert) "D" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "E" = ( /turf/closed/shuttle/ert{ @@ -145,9 +125,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( /turf/closed/shuttle/ert{ @@ -155,22 +133,16 @@ }, /area/shuttle/ert) "K" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "L" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "M" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "N" = ( /turf/closed/shuttle/ert{ @@ -183,9 +155,7 @@ "P" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( /turf/closed/shuttle/ert{ @@ -209,9 +179,7 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "X" = ( /turf/closed/shuttle/ert{ @@ -222,9 +190,7 @@ /obj/structure/surface/rack, /obj/item/storage/backpack/rmc/frame, /obj/item/ammo_box/magazine/misc/mre, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/ert_upp_shuttle.dmm b/maps/shuttles/ert_upp_shuttle.dmm index 57d93e21ff1f..30abbd1925ce 100644 --- a/maps/shuttles/ert_upp_shuttle.dmm +++ b/maps/shuttles/ert_upp_shuttle.dmm @@ -5,9 +5,7 @@ }, /area/shuttle/ert) "c" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "e" = ( /obj/docking_port/mobile/emergency_response/ert3, @@ -26,14 +24,10 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "i" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "j" = ( /turf/closed/shuttle/ert{ @@ -41,9 +35,7 @@ }, /area/shuttle/ert) "k" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -62,9 +54,7 @@ /obj/effect/landmark/ert_spawns/distress_upp/item, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "p" = ( /turf/closed/shuttle/ert{ @@ -83,9 +73,7 @@ }, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "u" = ( /turf/closed/shuttle/ert{ @@ -127,17 +115,13 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "C" = ( /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress_upp/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "E" = ( /turf/closed/shuttle/ert{ @@ -152,9 +136,7 @@ /area/shuttle/ert) "G" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /turf/closed/shuttle/ert{ @@ -168,22 +150,16 @@ pixel_y = -5 }, /obj/effect/landmark/ert_spawns/distress_upp/item, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "K" = ( /turf/template_noop, /area/template_noop) "N" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "O" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "P" = ( /turf/closed/shuttle/ert{ @@ -198,21 +174,15 @@ /area/shuttle/ert) "R" = ( /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "S" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "V" = ( /turf/closed/shuttle/ert{ @@ -223,17 +193,13 @@ "X" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "Y" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "Z" = ( /obj/structure/surface/rack, @@ -241,9 +207,7 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_e.dmm b/maps/shuttles/escape_shuttle_e.dmm index 65efffe43619..75810c84345b 100644 --- a/maps/shuttles/escape_shuttle_e.dmm +++ b/maps/shuttles/escape_shuttle_e.dmm @@ -10,18 +10,13 @@ }, /area/shuttle/escape_pod) "f" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor0"; - dir = 8 - }, +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "i" = ( /obj/structure/machinery/door/airlock/evacuation{ name = "\improper Evacuation Airlock SU-1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "k" = ( /turf/closed/shuttle/escapepod{ @@ -29,9 +24,7 @@ }, /area/shuttle/escape_pod) "o" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/shuttle/escape_pod) "q" = ( /turf/closed/shuttle/escapepod{ @@ -65,9 +58,7 @@ /area/shuttle/escape_pod) "M" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "O" = ( /obj/docking_port/mobile/crashable/escape_shuttle/e, @@ -79,18 +70,14 @@ /obj/structure/machinery/computer/shuttle/escape_pod_panel{ pixel_y = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, +/turf/open/shuttle/escapepod/floor0, /area/shuttle/escape_pod) "T" = ( /obj/structure/machinery/cryopod/evacuation, /obj/structure/sign/safety/cryo{ pixel_x = -18 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "W" = ( /turf/closed/shuttle/escapepod{ diff --git a/maps/shuttles/escape_shuttle_e_cl.dmm b/maps/shuttles/escape_shuttle_e_cl.dmm index 4b605503d7de..86d557c88a24 100644 --- a/maps/shuttles/escape_shuttle_e_cl.dmm +++ b/maps/shuttles/escape_shuttle_e_cl.dmm @@ -6,9 +6,7 @@ }, /area/shuttle/escape_pod) "b" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/shuttle/escape_pod) "c" = ( /turf/closed/shuttle/escapepod{ @@ -26,10 +24,7 @@ }, /area/shuttle/escape_pod) "n" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor0"; - dir = 8 - }, +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "s" = ( /turf/closed/shuttle/escapepod{ @@ -38,18 +33,14 @@ /area/shuttle/escape_pod) "z" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "D" = ( /obj/structure/machinery/door/airlock/evacuation/liaison{ name = "\improper Evacuation Airlock CL-1"; id_tag = "cl_evac" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "E" = ( /turf/closed/shuttle/escapepod{ @@ -81,9 +72,7 @@ /obj/structure/sign/safety/cryo{ pixel_x = -18 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "X" = ( /turf/closed/shuttle/escapepod{ @@ -94,9 +83,7 @@ /obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{ pixel_y = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, +/turf/open/shuttle/escapepod/floor0, /area/shuttle/escape_pod) (1,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_n.dmm b/maps/shuttles/escape_shuttle_n.dmm index 3095517f4bac..eb3b259a546c 100644 --- a/maps/shuttles/escape_shuttle_n.dmm +++ b/maps/shuttles/escape_shuttle_n.dmm @@ -12,9 +12,7 @@ dir = 2; name = "\improper Evacuation Airlock PU-3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "l" = ( /turf/closed/shuttle/escapepod{ @@ -22,17 +20,13 @@ }, /area/shuttle/escape_pod) "n" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, +/turf/open/shuttle/escapepod/floor0, /area/shuttle/escape_pod) "p" = ( /obj/structure/machinery/computer/shuttle/escape_pod_panel{ pixel_y = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" - }, +/turf/open/shuttle/escapepod/floor2, /area/shuttle/escape_pod) "v" = ( /obj/docking_port/mobile/crashable/escape_shuttle/n, @@ -42,9 +36,7 @@ /area/shuttle/escape_pod) "x" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "z" = ( /obj/structure/machinery/cryopod/evacuation, @@ -52,14 +44,10 @@ pixel_x = 8; pixel_y = -28 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "D" = ( -/turf/open/shuttle/escapepod{ - dir = 4 - }, +/turf/open/shuttle/escapepod/east, /area/shuttle/escape_pod) "F" = ( /turf/closed/shuttle/escapepod{ diff --git a/maps/shuttles/escape_shuttle_s.dmm b/maps/shuttles/escape_shuttle_s.dmm index db3f602bdb5a..689a6e78c516 100644 --- a/maps/shuttles/escape_shuttle_s.dmm +++ b/maps/shuttles/escape_shuttle_s.dmm @@ -6,9 +6,7 @@ /area/shuttle/escape_pod) "c" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "n" = ( /turf/closed/shuttle/escapepod{ @@ -22,10 +20,7 @@ }, /area/shuttle/escape_pod) "q" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor0"; - dir = 1 - }, +/turf/open/shuttle/escapepod/floor0/north, /area/shuttle/escape_pod) "v" = ( /turf/closed/shuttle/escapepod{ @@ -48,9 +43,7 @@ pixel_x = 8; pixel_y = 28 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "D" = ( /turf/closed/shuttle/escapepod{ @@ -58,9 +51,7 @@ }, /area/shuttle/escape_pod) "I" = ( -/turf/open/shuttle/escapepod{ - dir = 8 - }, +/turf/open/shuttle/escapepod/west, /area/shuttle/escape_pod) "J" = ( /turf/closed/shuttle/escapepod{ @@ -76,10 +67,7 @@ /obj/structure/machinery/computer/shuttle/escape_pod_panel{ pixel_x = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor0"; - dir = 8 - }, +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "Q" = ( /turf/closed/shuttle/escapepod{ @@ -91,9 +79,7 @@ dir = 2; name = "\improper Evacuation Airlock PU-6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) (1,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_w.dmm b/maps/shuttles/escape_shuttle_w.dmm index b6b7452c798f..92d35725117c 100644 --- a/maps/shuttles/escape_shuttle_w.dmm +++ b/maps/shuttles/escape_shuttle_w.dmm @@ -4,11 +4,6 @@ icon_state = "wall8" }, /area/shuttle/escape_pod) -"d" = ( -/turf/open/shuttle/escapepod{ - dir = 1 - }, -/area/shuttle/escape_pod) "e" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall6" @@ -37,9 +32,10 @@ /area/shuttle/escape_pod) "r" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) +"A" = ( +/turf/open/shuttle/escapepod/floor0/north, /area/shuttle/escape_pod) "B" = ( /turf/closed/shuttle/escapepod{ @@ -60,15 +56,10 @@ /obj/structure/machinery/computer/shuttle/escape_pod_panel{ pixel_y = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" - }, +/turf/open/shuttle/escapepod/floor2, /area/shuttle/escape_pod) "O" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor0"; - dir = 1 - }, +/turf/open/shuttle/escapepod/north, /area/shuttle/escape_pod) "P" = ( /turf/closed/shuttle/escapepod{ @@ -79,18 +70,14 @@ /obj/structure/machinery/door/airlock/evacuation{ name = "\improper Evacuation Airlock PL-3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "T" = ( /obj/structure/machinery/cryopod/evacuation, /obj/structure/sign/safety/cryo{ pixel_x = 36 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) (1,1,1) = {" @@ -103,8 +90,8 @@ g (2,1,1) = {" F N -d O +A b "} (3,1,1) = {" diff --git a/maps/shuttles/lifeboat-port-archive.dmm b/maps/shuttles/lifeboat-port-archive.dmm index 7279e78237b6..12e5e35d3c6e 100644 --- a/maps/shuttles/lifeboat-port-archive.dmm +++ b/maps/shuttles/lifeboat-port-archive.dmm @@ -21,10 +21,7 @@ }, /area/shuttle/lifeboat) "dt" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "en" = ( /turf/closed/shuttle/lifeboat{ @@ -107,9 +104,7 @@ }, /area/shuttle/lifeboat) "nn" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "on" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -239,9 +234,7 @@ id = "Boat1-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "CI" = ( /turf/template_noop, @@ -300,9 +293,7 @@ /turf/closed/shuttle/lifeboat, /area/shuttle/lifeboat) "Jg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/lifeboat) "Jw" = ( /turf/closed/shuttle/lifeboat{ @@ -325,14 +316,10 @@ id = "Boat1-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Nm" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Ob" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-port.dmm b/maps/shuttles/lifeboat-port.dmm index 61b4b6ce54f6..7f6ef22b608b 100644 --- a/maps/shuttles/lifeboat-port.dmm +++ b/maps/shuttles/lifeboat-port.dmm @@ -21,10 +21,7 @@ }, /area/shuttle/lifeboat) "dt" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "en" = ( /turf/closed/shuttle/lifeboat{ @@ -107,9 +104,7 @@ }, /area/shuttle/lifeboat) "nn" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "on" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -117,9 +112,7 @@ }, /area/shuttle/lifeboat) "pH" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "qA" = ( /turf/closed/shuttle/lifeboat{ @@ -251,9 +244,7 @@ id = "Boat1-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "CI" = ( /turf/template_noop, @@ -319,10 +310,7 @@ /turf/closed/shuttle/lifeboat, /area/shuttle/lifeboat) "Jg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1"; - dir = 4 - }, +/turf/open/shuttle/escapepod/floor1/east, /area/shuttle/lifeboat) "Jw" = ( /turf/closed/shuttle/lifeboat{ @@ -345,14 +333,10 @@ id = "Boat1-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Nm" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Ob" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-starboard-archive.dmm b/maps/shuttles/lifeboat-starboard-archive.dmm index 5094315b7b6f..8d7d7a9f8485 100644 --- a/maps/shuttles/lifeboat-starboard-archive.dmm +++ b/maps/shuttles/lifeboat-starboard-archive.dmm @@ -195,9 +195,7 @@ }, /area/shuttle/lifeboat) "AF" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "Bf" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -416,9 +414,7 @@ }, /area/shuttle/lifeboat) "VZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/lifeboat) "Xj" = ( /turf/closed/shuttle/lifeboat{ @@ -426,9 +422,7 @@ }, /area/shuttle/lifeboat) "XV" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "Zl" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-starboard.dmm b/maps/shuttles/lifeboat-starboard.dmm index d4ee3702ff37..d14fc877141e 100644 --- a/maps/shuttles/lifeboat-starboard.dmm +++ b/maps/shuttles/lifeboat-starboard.dmm @@ -164,9 +164,7 @@ id = "Boat2-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "vG" = ( /obj/docking_port/mobile/crashable/lifeboat/starboard, @@ -188,9 +186,7 @@ id = "Boat2-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "zv" = ( /turf/closed/shuttle/lifeboat{ @@ -213,9 +209,7 @@ }, /area/shuttle/lifeboat) "AF" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "Bf" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -376,9 +370,7 @@ }, /area/shuttle/lifeboat) "Qj" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Rk" = ( /turf/closed/shuttle/lifeboat{ @@ -397,10 +389,7 @@ }, /area/shuttle/lifeboat) "SA" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "Td" = ( /turf/closed/shuttle/lifeboat{ @@ -445,10 +434,7 @@ }, /area/shuttle/lifeboat) "VZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1"; - dir = 4 - }, +/turf/open/shuttle/escapepod/floor1/east, /area/shuttle/lifeboat) "Xj" = ( /turf/closed/shuttle/lifeboat{ @@ -456,9 +442,7 @@ }, /area/shuttle/lifeboat) "XV" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "Zl" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/trijentshuttle2.dmm b/maps/shuttles/trijentshuttle2.dmm index c99ce5d16488..b4ea080e4cfa 100644 --- a/maps/shuttles/trijentshuttle2.dmm +++ b/maps/shuttles/trijentshuttle2.dmm @@ -3,14 +3,10 @@ /turf/open/shuttle/escapepod, /area/shuttle/trijent_shuttle/elevator) "b" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/trijent_shuttle/elevator) "c" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor9" - }, +/turf/open/shuttle/escapepod/floor9, /area/shuttle/trijent_shuttle/elevator) "d" = ( /turf/closed/shuttle/elevator{ @@ -28,9 +24,7 @@ dir = 4; id = "east" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/trijent_shuttle/elevator) "k" = ( /obj/structure/machinery/computer/shuttle/elevator_controller, @@ -105,9 +99,7 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor11" - }, +/turf/open/shuttle/escapepod/floor11, /area/shuttle/trijent_shuttle/elevator) "A" = ( /turf/closed/shuttle/elevator{ @@ -137,9 +129,7 @@ dir = 4; id = "west" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/trijent_shuttle/elevator) "O" = ( /obj/item/limb/hand/r_hand, @@ -154,9 +144,7 @@ /turf/open/shuttle/escapepod, /area/shuttle/trijent_shuttle/elevator) "Q" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor11" - }, +/turf/open/shuttle/escapepod/floor11, /area/shuttle/trijent_shuttle/elevator) "R" = ( /obj/structure/bed/chair/dropship/passenger, @@ -185,14 +173,10 @@ }, /area/shuttle/trijent_shuttle/elevator) "W" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, +/turf/open/shuttle/escapepod/floor12, /area/shuttle/trijent_shuttle/elevator) "Y" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor7" - }, +/turf/open/shuttle/escapepod/floor7, /area/shuttle/trijent_shuttle/elevator) (1,1,1) = {" diff --git a/maps/shuttles/vehicle_elevator.dmm b/maps/shuttles/vehicle_elevator.dmm index 51517693d636..c8cf184451cb 100644 --- a/maps/shuttles/vehicle_elevator.dmm +++ b/maps/shuttles/vehicle_elevator.dmm @@ -24,9 +24,7 @@ /turf/open/floor/plating/plating_catwalk, /area/shuttle/vehicle_elevator) "e" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/vehicle_elevator) "f" = ( /obj/effect/decal/warning_stripes{ diff --git a/maps/templates/Chinook.dmm b/maps/templates/Chinook.dmm index bc16f23270fa..de04fd7d5e66 100644 --- a/maps/templates/Chinook.dmm +++ b/maps/templates/Chinook.dmm @@ -6,9 +6,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ad" = ( /obj/structure/sign/safety/east{ @@ -22,49 +20,32 @@ pixel_x = -12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "af" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "ag" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "ah" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/training, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "ai" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, /area/space) "aj" = ( /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/adminlevel/chinook/shuttle/unpowered) "al" = ( /turf/open/floor/almayer_hull, /area/space) "am" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "ao" = ( /turf/open/floor/kutjevo, @@ -89,24 +70,16 @@ pixel_x = 11; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "ar" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "au" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space) "av" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, @@ -129,10 +102,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "aA" = ( /obj/structure/machinery/vending/coffee, @@ -142,10 +112,7 @@ /obj/structure/sign/safety/bathmens{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "aC" = ( /obj/structure/closet/secure_closet/military_officer_spare{ @@ -155,10 +122,7 @@ /obj/item/clothing/under/marine/mp/provost, /obj/item/clothing/under/marine/mp/provost, /obj/item/clothing/under/marine/mp/provost, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "aD" = ( /obj/structure/machinery/light{ @@ -171,20 +135,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "aF" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "aG" = ( /obj/structure/surface/table/almayer, @@ -194,9 +151,7 @@ /obj/item/storage/fancy/cigarettes/kpack{ pixel_x = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "aH" = ( /obj/structure/surface/table/almayer, @@ -217,10 +172,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "aJ" = ( /obj/structure/surface/table/reinforced/black, @@ -228,19 +180,13 @@ pixel_x = 5; pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "aK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "aM" = ( /obj/structure/machinery/vending/snack, @@ -248,10 +194,7 @@ /area/adminlevel/chinook/offices) "aP" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "aQ" = ( /obj/structure/machinery/light, @@ -265,9 +208,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "aT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -287,10 +228,7 @@ pixel_x = 4; pixel_y = 5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "aV" = ( /obj/structure/surface/table/reinforced/black, @@ -305,10 +243,7 @@ pixel_x = 9; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "aW" = ( /obj/structure/flora/pottedplant{ @@ -318,9 +253,7 @@ pixel_x = 3; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "aX" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -331,10 +264,7 @@ id = "chinookarmory2"; name = "Armory Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "aY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -370,44 +300,30 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "bc" = ( /obj/structure/machinery/computer/card, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "be" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "bf" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "bg" = ( /obj/structure/surface/table/reinforced/black, @@ -419,10 +335,7 @@ /obj/structure/prop/ice_colony/hula_girl{ pixel_x = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bh" = ( /obj/structure/machinery/light{ @@ -435,10 +348,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook) "bj" = ( /obj/structure/surface/table/almayer, @@ -447,18 +357,13 @@ /obj/item/roller, /obj/item/device/healthanalyzer, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "bk" = ( /obj/structure/sign/safety/synth_storage{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "bl" = ( /obj/structure/surface/table/reinforced/black, @@ -535,10 +440,7 @@ /obj/item/toy/beach_ball/holoball{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bv" = ( /obj/structure/surface/table/reinforced/black, @@ -556,10 +458,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook) "bz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "bA" = ( /obj/structure/barricade/handrail/strata, @@ -585,10 +484,7 @@ /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bE" = ( /obj/structure/desertdam/decals/road_edge{ @@ -617,10 +513,7 @@ /obj/item/paper_bin/uscm, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bG" = ( /obj/structure/surface/table/reinforced/black, @@ -629,10 +522,7 @@ pixel_x = 7; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bH" = ( /obj/structure/surface/table/reinforced/black, @@ -654,10 +544,7 @@ pixel_x = -9; pixel_y = 12 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bJ" = ( /obj/structure/machinery/light{ @@ -668,10 +555,7 @@ "bK" = ( /obj/structure/machinery/chem_master, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "bL" = ( /obj/structure/desertdam/decals/road_edge{ @@ -702,10 +586,7 @@ dir = 4 }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "bQ" = ( /obj/item/book/manual/marine_law{ @@ -721,10 +602,7 @@ /area/adminlevel/chinook/offices) "bS" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "bV" = ( /obj/item/device/flashlight/lamp/green, @@ -732,10 +610,7 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "bY" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) "bZ" = ( /obj/structure/machinery/light{ @@ -751,24 +626,15 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "ce" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/chinook/cargo) "cf" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "cg" = ( /obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ci" = ( /obj/structure/machinery/constructable_frame{ @@ -779,10 +645,7 @@ /area/adminlevel/chinook/engineering) "cj" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "ck" = ( /obj/structure/surface/table/reinforced/black, @@ -790,16 +653,10 @@ pixel_y = 3 }, /obj/item/folder/white, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "cl" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) "cm" = ( /obj/structure/platform{ @@ -808,10 +665,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "cp" = ( /obj/structure/desertdam/decals/road_edge{ @@ -871,27 +725,18 @@ "cw" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "cx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northeast, /area/adminlevel/chinook/shuttle) "cy" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldingtool/largetank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "cz" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -929,9 +774,7 @@ }, /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/surface/table/reinforced/almayer_blend, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "cE" = ( /obj/structure/surface/table/reinforced/black, @@ -982,15 +825,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook/offices) "cS" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/sec) "cT" = ( /obj/structure/extinguisher_cabinet{ @@ -1006,10 +844,7 @@ /area/adminlevel/chinook) "cW" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "cX" = ( /obj/structure/surface/table/almayer, @@ -1018,9 +853,7 @@ }, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "cY" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -1034,9 +867,7 @@ "cZ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/offices) "db" = ( /obj/structure/machinery/photocopier, @@ -1055,10 +886,7 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dd" = ( /obj/structure/sink{ @@ -1079,10 +907,7 @@ /area/space) "dg" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "dh" = ( /obj/structure/surface/table/reinforced/black, @@ -1095,33 +920,23 @@ pixel_x = 7; pixel_y = 5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "di" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/lighter/zippo, /obj/item/paper/crumpled, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dj" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "dk" = ( /obj/structure/machinery/cm_vending/sorted/medical{ layer = 3.5 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, +/turf/open/floor/almayer/silverfull, /area/adminlevel/chinook) "dl" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -1129,9 +944,7 @@ /area/adminlevel/chinook/offices) "dn" = ( /obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "dp" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -1170,10 +983,7 @@ /area/adminlevel/chinook/offices) "dt" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "du" = ( /obj/structure/surface/table/reinforced/black, @@ -1184,10 +994,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/offices) "dx" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/chinook/medical) "dy" = ( /obj/structure/machinery/cm_vending/clothing/dress, @@ -1195,16 +1002,12 @@ /area/adminlevel/chinook/offices) "dz" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "dA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/multitool, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "dB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ @@ -1220,49 +1023,31 @@ /area/adminlevel/chinook/cryo) "dC" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "dD" = ( /obj/structure/machinery/light, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "dE" = ( /obj/structure/machinery/light, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dF" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/offices) "dH" = ( /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "dJ" = ( /obj/structure/bed/stool, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) "dK" = ( /obj/structure/closet/secure_closet/personal, @@ -1273,24 +1058,17 @@ /obj/item/reagent_container/food/snacks/carpmeat, /obj/item/reagent_container/food/snacks/carpmeat, /obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "dN" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/offices) "dO" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) "dQ" = ( /obj/structure/surface/table/reinforced/black, @@ -1300,32 +1078,22 @@ pixel_x = 1; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "dR" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "dS" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "dT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "dU" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -1336,16 +1104,11 @@ /area/adminlevel/chinook/offices) "dW" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "dY" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "dZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1365,10 +1128,7 @@ "eb" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "ee" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1417,9 +1177,7 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "ek" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/adminlevel/chinook) "em" = ( /obj/structure/surface/table/almayer, @@ -1431,9 +1189,7 @@ "en" = ( /obj/structure/surface/table/almayer, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/offices) "eo" = ( /obj/structure/machinery/disposal, @@ -1446,9 +1202,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "eq" = ( /obj/structure/stairs/perspective{ @@ -1462,9 +1216,7 @@ /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "es" = ( /obj/structure/machinery/light{ @@ -1472,53 +1224,37 @@ }, /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "et" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "eu" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ew" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "ex" = ( /obj/structure/sign/safety/conference_room{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ey" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ez" = ( /obj/structure/sign/safety/coffee{ @@ -1529,10 +1265,7 @@ pixel_y = 25 }, /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eA" = ( /obj/structure/machinery/light{ @@ -1542,25 +1275,17 @@ dir = 8 }, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "eB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eC" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "eD" = ( /obj/structure/machinery/cm_vending/sorted/attachments, @@ -1571,10 +1296,7 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "eF" = ( /obj/structure/surface/rack, @@ -1582,19 +1304,14 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "eG" = ( /obj/structure/platform{ dir = 4 }, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "eH" = ( /obj/structure/machinery/light{ @@ -1603,20 +1320,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eJ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "eK" = ( /obj/structure/sign/safety/medical{ @@ -1626,10 +1337,7 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eM" = ( /obj/structure/sink{ @@ -1640,60 +1348,43 @@ /area/adminlevel/chinook/event) "eN" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "eO" = ( /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "eP" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "eQ" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook/shuttle) "eR" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/adminlevel/chinook/offices) "eS" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "eT" = ( /obj/structure/machinery/vending/security, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "eU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "eV" = ( /obj/structure/bed/sofa/south/grey/left, @@ -1702,9 +1393,7 @@ "eW" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "fb" = ( /obj/structure/machinery/door_control{ @@ -1714,20 +1403,14 @@ pixel_y = -3; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "fd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "fe" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -1746,59 +1429,39 @@ /obj/item/reagent_container/food/drinks/drinkingglass{ pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "ai_floors" - }, +/turf/open/floor/almayer/ai_floors, /area/adminlevel/chinook/offices) "fg" = ( /obj/structure/sign/safety/storage{ pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "fh" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/west, /area/adminlevel/chinook/shuttle) "fi" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "fk" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/offices) "fm" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "fn" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "fp" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/chinook/offices) "fq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1819,10 +1482,7 @@ dir = 4 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "fu" = ( /obj/structure/window/framed/almayer/hull, @@ -1830,18 +1490,13 @@ /area/adminlevel/chinook) "fv" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "fw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "fx" = ( /obj/structure/machinery/light{ @@ -1875,10 +1530,7 @@ /area/adminlevel/chinook/offices) "fA" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "fB" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1917,9 +1569,7 @@ /area/adminlevel/chinook/sec) "fG" = ( /obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "fH" = ( /obj/structure/surface/table/almayer, @@ -1928,48 +1578,32 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "fI" = ( /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "fJ" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "fK" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/card{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "fL" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) "fM" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "fO" = ( /obj/structure/surface/table/reinforced/black, @@ -1996,10 +1630,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "fR" = ( /obj/structure/machinery/photocopier, @@ -2011,10 +1642,7 @@ /area/adminlevel/chinook/offices) "fU" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "fV" = ( /obj/structure/sign/safety/maint{ @@ -2024,25 +1652,16 @@ /obj/structure/sign/safety/south{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "fW" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/offices) "fX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/offices) "fY" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2052,10 +1671,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "fZ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "ga" = ( /obj/structure/bed/chair, @@ -2063,9 +1679,7 @@ /area/adminlevel/chinook) "gb" = ( /obj/structure/machinery/cm_vending/clothing/synth, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "gc" = ( /turf/closed/wall/almayer, @@ -2081,10 +1695,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "ge" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook) "gg" = ( /turf/closed/shuttle/elevator{ @@ -2096,25 +1707,17 @@ /area/adminlevel/chinook/cryo) "gi" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/offices) "gj" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "gl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "gm" = ( /obj/structure/machinery/light, @@ -2131,10 +1734,7 @@ /area/adminlevel/chinook/offices) "gp" = ( /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "gq" = ( /obj/item/storage/box/drinkingglasses, @@ -2151,26 +1751,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "gv" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "gw" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "gy" = ( /turf/closed/shuttle/ert{ @@ -2188,22 +1780,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "gA" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/offices) "gB" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/offices) "gC" = ( /obj/structure/bed/chair{ @@ -2216,25 +1800,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "gF" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "gG" = ( /obj/structure/sign/safety/security{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "gH" = ( /obj/structure/sign/safety/press_area_ag{ @@ -2254,34 +1832,21 @@ req_access_txt = "6" }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "gK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook) "gL" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook) "gM" = ( /obj/structure/platform_decoration/strata/metal, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "gN" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "gO" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -2292,31 +1857,20 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cryo) "gP" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook) "gQ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "gS" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "gT" = ( /obj/structure/machinery/telecomms/relay, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "gU" = ( /obj/item/stack/sheet/metal/large_stack, @@ -2324,10 +1878,7 @@ /area/adminlevel/chinook/engineering) "gV" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/offices) "gW" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -2350,9 +1901,7 @@ pixel_x = 20; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/offices) "gZ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2360,10 +1909,7 @@ pixel_y = 7 }, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/offices) "ha" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2372,21 +1918,15 @@ pixel_x = 1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "hc" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/adminlevel/chinook/shuttle/unpowered) "hd" = ( /obj/structure/largecrate/random, /obj/item/circuitboard/airlock, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "he" = ( /obj/structure/displaycase, @@ -2405,10 +1945,7 @@ pixel_y = 6; pixel_x = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "hg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2428,10 +1965,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "hk" = ( /obj/structure/surface/rack, @@ -2446,16 +1980,11 @@ /obj/structure/closet/secure_closet/personal/patient{ name = "morgue closet" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "hm" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "ho" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2465,28 +1994,20 @@ /area/adminlevel/chinook) "hp" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hq" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hr" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "ht" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2514,9 +2035,7 @@ pixel_x = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "hA" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2528,40 +2047,26 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "hB" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hC" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hD" = ( /obj/item/storage/box/drinkingglasses, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hE" = ( /obj/structure/sign/prop1{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "hF" = ( /obj/structure/sign/safety/bathunisex{ @@ -2577,20 +2082,14 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hI" = ( /obj/structure/machinery/microwave{ pixel_y = 6 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hJ" = ( /obj/structure/sign/safety/coffee{ @@ -2607,10 +2106,7 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "hM" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -2623,29 +2119,20 @@ /obj/structure/barricade/metal{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "hP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/adminlevel/chinook) "hQ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "hS" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "hT" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -2661,15 +2148,10 @@ /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/offices) "hW" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/adminlevel/chinook) "hX" = ( /obj/structure/machinery/light{ @@ -2687,10 +2169,7 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "hZ" = ( /obj/structure/sign/prop1{ @@ -2704,52 +2183,36 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "ib" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 2; name = "\improper Millitary Police Armory" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "ic" = ( /obj/structure/machinery/cm_vending/sorted/attachments, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "id" = ( /obj/structure/sign/safety/biohazard{ pixel_x = -18 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ih" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "ik" = ( /obj/structure/machinery/floodlight/landing{ name = "Floodlight" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "il" = ( /obj/structure/platform{ @@ -2770,9 +2233,7 @@ /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/adminlevel/chinook/event) "iq" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/adminlevel/chinook/event) "ir" = ( /obj/structure/toilet{ @@ -2781,9 +2242,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "is" = ( /obj/structure/surface/table/reinforced/black, @@ -2795,9 +2254,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "iu" = ( /obj/structure/stairs/perspective{ @@ -2818,10 +2275,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ix" = ( /obj/structure/machinery/door_control{ @@ -2833,16 +2287,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "iy" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "iA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2856,9 +2305,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "iD" = ( /obj/structure/platform_decoration, @@ -2868,11 +2315,7 @@ /obj/structure/sign/prop2{ pixel_y = 30 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "iG" = ( /obj/structure/platform, @@ -2883,18 +2326,14 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "iH" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/adminlevel/chinook/event) "iK" = ( /obj/structure/largecrate/machine/autodoc, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "iL" = ( /obj/structure/platform, @@ -2922,9 +2361,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/engineering) "iS" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -2936,10 +2373,7 @@ id = "chinook_solitary2"; name = "Solitary Cell 2 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "iT" = ( /turf/closed/wall/almayer, @@ -2970,25 +2404,17 @@ pixel_x = 32; pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "iZ" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/adminlevel/chinook/engineering) "ja" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "jb" = ( /obj/structure/platform{ @@ -2997,19 +2423,14 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "jc" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; name = "Office of LtCol. Misti Rockwell" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "je" = ( /obj/item/clothing/head/welding, @@ -3026,9 +2447,7 @@ dir = 1; name = "Office of LtCol. Karl Walz" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "ji" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -3039,18 +2458,12 @@ id = "chinookarmory1"; name = "Armory Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jj" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "jk" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3065,26 +2478,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jo" = ( /obj/structure/surface/table/almayer, /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "jp" = ( /obj/structure/stairs/perspective{ @@ -3092,26 +2497,19 @@ layer = 3.5 }, /obj/structure/platform/stair_cut/alt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "jq" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook/shuttle/unpowered) "jr" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "js" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "ju" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -3121,15 +2519,11 @@ /area/adminlevel/chinook) "jv" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jw" = ( /obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "jy" = ( /obj/structure/sign/safety/fridge{ @@ -3143,9 +2537,7 @@ layer = 2.83; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jz" = ( /obj/structure/machinery/microwave{ @@ -3155,9 +2547,7 @@ layer = 2.83; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jA" = ( /obj/structure/filingcabinet{ @@ -3178,9 +2568,7 @@ pixel_y = 9 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jD" = ( /obj/structure/desertdam/decals/road_edge{ @@ -3199,9 +2587,7 @@ "jG" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jI" = ( /obj/item/stack/sheet/wood/large_stack, @@ -3210,9 +2596,7 @@ "jJ" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jK" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3236,10 +2620,7 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "jR" = ( /turf/closed/shuttle/ert{ @@ -3261,58 +2642,37 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "jU" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jV" = ( /obj/structure/closet/secure_closet/medical3, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "jW" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jY" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/chinook) "jZ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook) "ka" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "kd" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kf" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -3320,18 +2680,14 @@ /area/adminlevel/chinook/offices) "kg" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "ki" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; name = "Office of LtCol. Hunter Stanford" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "kj" = ( /obj/structure/machinery/shower{ @@ -3345,35 +2701,25 @@ /area/adminlevel/chinook/offices) "kk" = ( /obj/structure/machinery/cm_vending/sorted/attachments, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "km" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "kn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "ko" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kp" = ( /obj/item/storage/firstaid/adv{ @@ -3386,42 +2732,27 @@ }, /obj/item/storage/firstaid/adv, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kq" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kr" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "ks" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "ku" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/offices) "kv" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "kw" = ( /obj/structure/sink{ @@ -3429,9 +2760,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kx" = ( /obj/structure/flora/pottedplant{ @@ -3448,10 +2777,7 @@ "kB" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kC" = ( /obj/structure/surface/table/reinforced/black, @@ -3459,10 +2785,7 @@ name = "Courtroom Procedures"; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kD" = ( /obj/item/reagent_container/food/drinks/coffee{ @@ -3470,10 +2793,7 @@ pixel_y = 7 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kF" = ( /obj/structure/sign/nosmoking_2{ @@ -3482,10 +2802,7 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "kG" = ( /obj/item/paper_bin/uscm{ @@ -3493,10 +2810,7 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kI" = ( /obj/structure/machinery/light{ @@ -3515,10 +2829,7 @@ pixel_x = -9; pixel_y = -11 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "kK" = ( /obj/structure/machinery/floodlight, @@ -3526,31 +2837,21 @@ /area/adminlevel/chinook/engineering) "kL" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "kM" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "kN" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "kP" = ( /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/adminlevel/chinook/offices) "kQ" = ( /obj/structure/surface/table/almayer, @@ -3558,9 +2859,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "kR" = ( /obj/structure/machinery/light{ @@ -3570,23 +2869,17 @@ pixel_y = 3 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kS" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kT" = ( /obj/item/tool/kitchen/knife, /obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kU" = ( /obj/structure/surface/table/reinforced/black, @@ -3599,50 +2892,33 @@ "kW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "kX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) "kY" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "kZ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook/cargo) "la" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "lb" = ( /obj/structure/stairs/perspective{ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ld" = ( /obj/structure/platform_decoration{ @@ -3676,9 +2952,7 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ll" = ( /obj/structure/machinery/light{ @@ -3694,16 +2968,10 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "lm" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "ln" = ( /obj/structure/surface/table/almayer, @@ -3717,26 +2985,18 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "lu" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "lv" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "lw" = ( /obj/structure/surface/table/almayer, @@ -3748,10 +3008,7 @@ pixel_x = -4; pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "ly" = ( /obj/structure/bed/chair{ @@ -3768,10 +3025,7 @@ pixel_x = 14; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "lC" = ( /turf/closed/wall/almayer/reinforced, @@ -3785,17 +3039,12 @@ pixel_x = -2; pixel_y = 14 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "lE" = ( /obj/effect/decal/cleanable/flour, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "lG" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -3807,10 +3056,7 @@ id = "chinookreq"; name = "Requisitions Lockdown" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) "lH" = ( /obj/structure/extinguisher_cabinet{ @@ -3823,9 +3069,7 @@ dir = 4 }, /obj/structure/machinery/processor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "lM" = ( /obj/structure/machinery/light{ @@ -3841,9 +3085,7 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "lO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "lP" = ( /obj/item/paper_bin/uscm{ @@ -3855,10 +3097,7 @@ /area/adminlevel/chinook/event) "lQ" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "lR" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -3868,9 +3107,7 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "lS" = ( /obj/structure/bed/chair/comfy{ @@ -3883,10 +3120,7 @@ icon_state = "W" }, /obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "lW" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -3896,16 +3130,11 @@ /area/adminlevel/chinook/event) "lZ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "ma" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "mc" = ( /obj/structure/surface/table/almayer, @@ -3914,35 +3143,25 @@ /area/adminlevel/chinook/cargo) "md" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "me" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "mg" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/bible{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "mh" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "mi" = ( /obj/structure/surface/table/reinforced/black, @@ -3950,62 +3169,40 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "mj" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "mm" = ( /obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/sec) "mn" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "mo" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "mp" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "mr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Awards Stage" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "ms" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "mt" = ( /obj/effect/decal/warning_stripes{ @@ -4014,22 +3211,14 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "mu" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "mv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) "mw" = ( /obj/structure/bed/chair{ @@ -4047,34 +3236,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/engineering) "mB" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "mC" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "mD" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /obj/structure/platform/strata/metal, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "mF" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4115,9 +3294,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook/offices) "mK" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook) "mN" = ( /obj/structure/surface/table/reinforced/black, @@ -4140,10 +3317,7 @@ /area/adminlevel/chinook/cargo) "mQ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "mU" = ( /obj/structure/filingcabinet, @@ -4153,9 +3327,7 @@ /obj/effect/decal/medical_decals{ icon_state = "cryocell2deval" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "mW" = ( /obj/structure/surface/table/reinforced/black, @@ -4166,9 +3338,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook/offices) "mX" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/adminlevel/chinook/shuttle/unpowered) "mY" = ( /obj/structure/surface/table/reinforced/black, @@ -4185,16 +3355,11 @@ /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Female Locker Room" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "na" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) "nb" = ( /obj/structure/desertdam/decals/road_edge{ @@ -4218,29 +3383,20 @@ /area/adminlevel/chinook/offices) "ne" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/shuttle) "ng" = ( /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "ni" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nj" = ( /obj/structure/stairs/perspective{ @@ -4248,16 +3404,11 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "nk" = ( /obj/structure/platform/strata/metal, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "nl" = ( /obj/structure/surface/table/reinforced/black, @@ -4278,10 +3429,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/offices) "nn" = ( /obj/structure/bed/chair/comfy/black, @@ -4291,32 +3439,21 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "np" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/offices) "nr" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "ns" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "nt" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4338,30 +3475,21 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "nv" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "ny" = ( /obj/structure/surface/table/reinforced/black, /obj/item/ashtray/glass{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "nB" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -4377,18 +3505,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "nC" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nD" = ( /obj/structure/machinery/computer/emails{ @@ -4399,9 +3523,7 @@ /obj/structure/sign/poster/propaganda{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nE" = ( /obj/structure/bookcase{ @@ -4422,9 +3544,7 @@ department = "Chinook 91 GSO Station"; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nG" = ( /obj/structure/surface/table/almayer, @@ -4439,20 +3559,13 @@ /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Captain Offices" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "nL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "nN" = ( /obj/structure/surface/table/almayer, @@ -4462,9 +3575,7 @@ pixel_x = -8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "nO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -4472,9 +3583,7 @@ name = "Kitchen"; req_access_txt = "30" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "nP" = ( /obj/item/paper_bin/uscm{ @@ -4492,9 +3601,7 @@ dir = 2; req_access_txt = "1" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/offices) "nU" = ( /turf/open/floor/plating, @@ -4531,26 +3638,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "oa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) "od" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "oe" = ( /obj/structure/surface/table/reinforced/black, @@ -4562,10 +3660,7 @@ pixel_x = 11; pixel_y = 13 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "of" = ( /obj/structure/machinery/computer/emails{ @@ -4606,39 +3701,25 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "om" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "on" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "op" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "oq" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "or" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -4648,37 +3729,25 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "os" = ( /obj/item/tool/wirecutters{ pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ot" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ou" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/north, /area/adminlevel/chinook/shuttle) "ov" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, +/turf/open/floor/almayer/uscm/directional/northeast, /area/adminlevel/chinook/shuttle) "ow" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -4689,9 +3758,7 @@ "ox" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "oy" = ( /obj/structure/surface/table/almayer, @@ -4704,9 +3771,7 @@ pixel_x = -8 }, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "oz" = ( /obj/structure/platform{ @@ -4719,10 +3784,7 @@ /area/adminlevel/chinook/event) "oA" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "oB" = ( /obj/structure/machinery/computer/secure_data{ @@ -4731,10 +3793,7 @@ pixel_y = 7 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "oC" = ( /obj/structure/machinery/door_control{ @@ -4744,9 +3803,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "oD" = ( /turf/closed/shuttle/ert{ @@ -4765,27 +3822,19 @@ pixel_y = 11; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "oF" = ( /obj/structure/surface/rack, /obj/item/toy/beach_ball/holoball, /obj/item/toy/beach_ball/holoball, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "oG" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "oH" = ( /obj/structure/stairs/perspective{ @@ -4796,16 +3845,12 @@ /area/adminlevel/chinook/event) "oI" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "oJ" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "oM" = ( /obj/structure/surface/table/reinforced/black, @@ -4816,10 +3861,7 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "oN" = ( /obj/structure/machinery/light{ @@ -4829,9 +3871,7 @@ /area/adminlevel/chinook/event) "oO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "oQ" = ( /obj/structure/closet, @@ -4842,10 +3882,7 @@ pixel_x = -16 }, /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) "oV" = ( /obj/structure/surface/table/almayer, @@ -4858,10 +3895,7 @@ /obj/item/clothing/glasses/hud/health{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "oW" = ( /obj/structure/bed/stool, @@ -4903,16 +3937,11 @@ name = "Security Armory Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "pe" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "pf" = ( /obj/structure/bed/chair/comfy{ @@ -4927,15 +3956,10 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ph" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "pi" = ( /turf/closed/shuttle/ert{ @@ -4948,9 +3972,7 @@ /area/adminlevel/chinook/engineering) "pk" = ( /obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "pl" = ( /obj/structure/platform{ @@ -4960,10 +3982,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "pm" = ( /obj/structure/largecrate/random/case/double, @@ -4974,10 +3993,7 @@ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "pp" = ( /obj/structure/machinery/constructable_frame{ @@ -4989,9 +4005,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "pr" = ( /obj/item/storage/donut_box, @@ -5012,23 +4026,16 @@ /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "pw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "px" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "py" = ( /obj/structure/surface/table/reinforced/black, @@ -5041,18 +4048,14 @@ /area/adminlevel/chinook/offices) "pz" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "pA" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; name = "Office of LtCol. Booker Peralta" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "pB" = ( /obj/structure/surface/table/reinforced/black, @@ -5080,9 +4083,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook/offices) "pE" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, +/turf/open/floor/almayer/uscm/directional/southeast, /area/adminlevel/chinook/shuttle) "pF" = ( /obj/structure/surface/table/reinforced/black, @@ -5090,26 +4091,19 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "pG" = ( /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/adminlevel/chinook/shuttle/unpowered) "pH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Command Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "pI" = ( /obj/structure/sign/safety/bridge{ @@ -5121,54 +4115,37 @@ /obj/structure/sign/safety/north{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "pJ" = ( /obj/structure/machinery/computer/secure_data{ dir = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pK" = ( /obj/structure/bed/chair/comfy{ desc = "A chair with leather padding and adjustable headrest. You could probably sit in one of these for ages. This one looks fit for a secretary to sit in."; name = "secretary's comfy chair" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pN" = ( /obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "pP" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "pQ" = ( /turf/closed/shuttle/elevator{ @@ -5193,10 +4170,7 @@ dir = 4 }, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "pU" = ( /obj/structure/platform{ @@ -5225,18 +4199,13 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "pX" = ( -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "pY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "pZ" = ( /obj/structure/bed/chair/comfy/black, @@ -5256,10 +4225,7 @@ /area/adminlevel/chinook/offices) "qb" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "qc" = ( /obj/structure/barricade/handrail/kutjevo{ @@ -5286,31 +4252,21 @@ /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "qj" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qk" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "ql" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "qm" = ( /obj/structure/sign/poster{ @@ -5319,10 +4275,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "qn" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) "qo" = ( /obj/structure/surface/table/reinforced/black, @@ -5337,15 +4290,10 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qq" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "qr" = ( /obj/structure/surface/table/reinforced/black, @@ -5353,16 +4301,11 @@ pixel_x = -3; pixel_y = 18 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qu" = ( /obj/item/toy/inflatable_duck, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "qv" = ( /obj/structure/stairs/perspective{ @@ -5371,16 +4314,11 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "qw" = ( /obj/item/storage/box/m56d/m2c, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "qy" = ( /obj/structure/bed/chair/comfy{ @@ -5406,10 +4344,7 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "qB" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5435,10 +4370,7 @@ pixel_y = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qD" = ( /obj/item/paper_bin/uscm{ @@ -5446,10 +4378,7 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qF" = ( /obj/structure/surface/table/reinforced/black, @@ -5460,10 +4389,7 @@ pixel_y = 8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qG" = ( /obj/structure/mirror{ @@ -5477,28 +4403,20 @@ /area/adminlevel/chinook/sec) "qH" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "qI" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "qK" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "qM" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/adminlevel/chinook/event) "qN" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -5508,10 +4426,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "qP" = ( /obj/structure/bed/chair/comfy{ @@ -5523,10 +4438,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "qT" = ( /obj/item/clothing/glasses/sunglasses, @@ -5536,21 +4448,14 @@ "qU" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "qV" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "qX" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/adminlevel/chinook/sec) "qY" = ( /obj/structure/machinery/light{ @@ -5578,16 +4483,11 @@ /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "rd" = ( /obj/structure/closet/secure_closet/medical3, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "rf" = ( /obj/structure/sign/safety/synth_storage{ @@ -5598,16 +4498,11 @@ pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "rh" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ri" = ( /turf/closed/shuttle/ert{ @@ -5631,32 +4526,23 @@ pixel_x = -3; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "rl" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "rm" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/adminlevel/chinook/event) "rn" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/adminlevel/chinook/event) "ro" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "rp" = ( /turf/closed/shuttle/elevator{ @@ -5675,38 +4561,23 @@ /area/adminlevel/chinook/event) "ru" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "rw" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "rx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "ry" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/adminlevel/chinook/cargo) "rA" = ( /obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "rC" = ( /obj/structure/sign/safety/hazard{ @@ -5716,22 +4587,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/chinook) "rD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/adminlevel/chinook/offices) "rE" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "rF" = ( /obj/structure/sign/safety/bathmens{ @@ -5740,19 +4604,13 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "rG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/adminlevel/chinook/offices) "rH" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "rI" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -5785,10 +4643,7 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "rN" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/north, /area/adminlevel/chinook) "rO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ @@ -5803,10 +4658,7 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "rU" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/chinook/offices) "rV" = ( /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -5826,16 +4678,11 @@ dir = 1; name = "Office of LtCol. Braden Stephenson" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "rY" = ( /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sa" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5852,23 +4699,16 @@ /obj/structure/sign/safety/storage{ pixel_x = -18 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "sg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "sh" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "si" = ( /obj/structure/machinery/computer/secure_data{ @@ -5879,16 +4719,11 @@ /area/adminlevel/chinook/offices) "sk" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "sl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) "sm" = ( /obj/structure/machinery/disposal, @@ -5901,23 +4736,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "sp" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) "sr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ss" = ( /obj/structure/surface/table/reinforced/black, @@ -5929,10 +4755,7 @@ /area/adminlevel/chinook/offices) "st" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sw" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, @@ -5942,17 +4765,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "sz" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "sA" = ( /obj/structure/machinery/light{ @@ -5964,9 +4781,7 @@ /obj/structure/sign/safety/conference_room{ pixel_y = -24 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "sD" = ( /obj/structure/surface/table/reinforced/black, @@ -5994,10 +4809,7 @@ pixel_x = 24; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/chinook/offices) "sF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -6005,9 +4817,7 @@ id = "chinookcargo"; name = "\improper Cargo Bay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/shuttle) "sG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -6017,37 +4827,25 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "sH" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook/cargo) "sJ" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sK" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "sL" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "sM" = ( /obj/effect/decal/warning_stripes{ @@ -6056,9 +4854,7 @@ /obj/structure/surface/rack, /obj/item/clothing/head/welding, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "sP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -6113,25 +4909,16 @@ pixel_x = -14; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "sS" = ( /obj/structure/filingcabinet, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "sT" = ( /obj/structure/largecrate/random, /obj/item/tool/weldpack, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "sU" = ( /obj/structure/platform{ @@ -6140,10 +4927,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) "sV" = ( /obj/structure/surface/table/reinforced/black, @@ -6159,37 +4943,23 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sX" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "sY" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/chinook/medical) "sZ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "ta" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/cryo) "tb" = ( /obj/item/device/lightreplacer, @@ -6209,17 +4979,12 @@ dir = 8 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "te" = ( /obj/structure/closet/crate, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "tf" = ( /turf/closed/shuttle/ert{ @@ -6250,26 +5015,19 @@ dir = 8 }, /obj/structure/platform/strata/metal, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "tp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "tq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "tr" = ( /obj/structure/surface/table/reinforced/black, @@ -6278,26 +5036,18 @@ /area/adminlevel/chinook/event) "tt" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "tu" = ( /obj/structure/morgue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "tv" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "tw" = ( /obj/structure/closet/secure_closet/personal, @@ -6310,18 +5060,13 @@ "tx" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "ty" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "tz" = ( /obj/structure/surface/rack, @@ -6333,19 +5078,13 @@ /obj/item/storage/fancy/cigar/tarbacks{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "tB" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/adminlevel/chinook/shuttle) "tC" = ( /turf/closed/wall/almayer/outer, @@ -6358,25 +5097,17 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "tG" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "tH" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "tJ" = ( /obj/structure/flora/pottedplant/random, @@ -6385,23 +5116,17 @@ "tK" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "tL" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "tM" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "tN" = ( /turf/closed/shuttle/ert{ @@ -6410,14 +5135,10 @@ /area/adminlevel/chinook/shuttle/unpowered) "tO" = ( /obj/structure/target/syndicate, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "tP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "tQ" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -6432,19 +5153,13 @@ }, /obj/effect/decal/cleanable/blood/oil/streak, /obj/item/tool/wrench, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "tT" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/shuttle) "tU" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/adminlevel/chinook) "tV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -6482,18 +5197,14 @@ id = "chinook"; name = "scoreboard reset button" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "ud" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 2; name = "\improper Bar" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "ue" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -6501,51 +5212,36 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "uf" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/adminlevel/chinook/shuttle) "ug" = ( /obj/structure/sign/safety/bathwomens{ pixel_x = 15; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "uh" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "ui" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uj" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "uo" = ( /obj/structure/sign/safety/opens_up{ @@ -6566,15 +5262,10 @@ /area/adminlevel/chinook/offices) "ur" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "us" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "ut" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -6593,10 +5284,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uw" = ( /obj/structure/bed/chair/comfy, @@ -6606,10 +5294,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -6626,9 +5311,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "uB" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -6642,10 +5325,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "uD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -6658,15 +5338,10 @@ id = "chinookarmorytr"; name = "Firing Range Equipment Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "uF" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "uG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6682,10 +5357,7 @@ /obj/item/device/binoculars, /obj/item/device/binoculars, /obj/item/device/binoculars, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "uJ" = ( /obj/structure/machinery/door_control{ @@ -6693,30 +5365,21 @@ name = "Security Sector Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "uK" = ( /obj/structure/bed/chair/comfy, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/chinook/offices) "uM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "uO" = ( /obj/structure/sign/prop1{ @@ -6736,9 +5399,7 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/offices) "uR" = ( /obj/structure/machinery/floodlight/landing, @@ -6758,19 +5419,13 @@ /area/adminlevel/chinook) "uT" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "uU" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "uW" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -6800,15 +5455,10 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "vb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/chinook) "vc" = ( /obj/structure/sign/ROsign{ @@ -6826,15 +5476,11 @@ pixel_x = 12; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "ve" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "vf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6850,16 +5496,10 @@ pixel_x = 32; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "vi" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/chinook/medical) "vk" = ( /obj/structure/machinery/light, @@ -6875,10 +5515,7 @@ pixel_x = 9; pixel_y = -21 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "vo" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -6895,10 +5532,7 @@ "vq" = ( /obj/structure/largecrate/random/case/small, /obj/item/circuitboard/airlock, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "vs" = ( /obj/structure/closet/secure_closet/commander, @@ -6907,57 +5541,36 @@ "vt" = ( /obj/structure/surface/table/reinforced/black, /obj/item/toy/deck, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "vu" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, +/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/adminlevel/chinook/shuttle) "vv" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "vw" = ( /obj/structure/sign/safety/bathmens{ pixel_x = 15; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "vx" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "vz" = ( /obj/structure/closet/secure_closet/military_police, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "vA" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "vB" = ( /obj/structure/sign/safety/airlock{ @@ -6967,14 +5580,10 @@ pixel_x = 15; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/adminlevel/chinook/shuttle) "vC" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/adminlevel/chinook/shuttle/unpowered) "vE" = ( /obj/structure/sign/safety/ammunition{ @@ -6985,18 +5594,12 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "vG" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "vH" = ( /obj/structure/sign/safety/airlock{ @@ -7012,10 +5615,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "vJ" = ( /obj/structure/machinery/light{ @@ -7049,20 +5649,14 @@ layer = 3.1 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "vQ" = ( /obj/structure/largecrate/supply, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "vR" = ( /obj/structure/bed/chair{ @@ -7078,9 +5672,7 @@ pixel_x = 12; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "vT" = ( /obj/item/trash/barcardine, @@ -7091,48 +5683,33 @@ dir = 1 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "vW" = ( /obj/structure/machinery/telecomms/processor, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "vX" = ( /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "vZ" = ( /obj/structure/cargo_container/seegson/mid, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "wc" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/taperecorder, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "wd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "we" = ( /obj/structure/surface/table/reinforced/black, @@ -7140,10 +5717,7 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "wj" = ( /obj/structure/bed/chair/comfy{ @@ -7160,9 +5734,7 @@ /area/adminlevel/chinook/event) "wl" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "wm" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7179,9 +5751,7 @@ dir = 1 }, /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "wp" = ( /obj/structure/sign/safety/hazard{ @@ -7192,29 +5762,19 @@ pixel_x = 32; pixel_y = -6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "wq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "wr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "wt" = ( /obj/structure/sign/safety/synth_storage{ @@ -7225,18 +5785,13 @@ pixel_x = 31; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "wu" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/adminlevel/chinook/event) "wx" = ( /obj/item/storage/box/drinkingglasses, @@ -7269,10 +5824,7 @@ pixel_x = -2; pixel_y = 9 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "wD" = ( /obj/structure/surface/table/reinforced/prison, @@ -7280,23 +5832,16 @@ pixel_x = -3; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "wE" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "wF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "wG" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -7305,22 +5850,15 @@ "wH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "wI" = ( /obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "wL" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "wN" = ( /obj/effect/decal/warning_stripes{ @@ -7330,15 +5868,11 @@ /area/adminlevel/chinook/engineering) "wP" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "wQ" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "wS" = ( /turf/closed/shuttle/elevator{ @@ -7347,51 +5881,36 @@ /area/adminlevel/chinook/cargo) "wT" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "wU" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "wV" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/adminlevel/chinook) "wW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "wX" = ( /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "wY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "xa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "xd" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -7403,20 +5922,14 @@ id = "chinook_solitary3"; name = "Solitary Cell 3 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "xe" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigar{ pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "xf" = ( /obj/structure/platform/strata/metal{ @@ -7425,9 +5938,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "xg" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -7435,16 +5946,11 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/ammo_magazine/shotgun/buckshot, /obj/structure/machinery/door/window/brigdoor/southleft, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/offices) "xh" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "xi" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7454,9 +5960,7 @@ /obj/item/book/manual/chef_recipes, /obj/item/clothing/head/chefhat, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "xk" = ( /obj/structure/sign/safety/bathmens{ @@ -7466,9 +5970,7 @@ pixel_x = 12; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "xm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -7482,9 +5984,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "xq" = ( /obj/structure/platform/strata/metal{ @@ -7493,9 +5993,7 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "xr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -7514,18 +6012,13 @@ /area/adminlevel/chinook) "xu" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "xv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "xw" = ( /obj/structure/bed/sofa/south/grey, @@ -7537,31 +6030,22 @@ /area/adminlevel/chinook/event) "xz" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "xA" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "xC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "xE" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "xF" = ( /obj/structure/surface/rack, @@ -7578,17 +6062,13 @@ dir = 1; name = "\improper Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "xI" = ( /obj/structure/sign/safety/bathunisex{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "xK" = ( /turf/closed/shuttle/ert{ @@ -7599,10 +6079,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "xN" = ( /obj/structure/surface/table/almayer, @@ -7618,10 +6095,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "xR" = ( /obj/structure/flora/pottedplant{ @@ -7641,22 +6115,14 @@ /area/adminlevel/chinook) "xV" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "xW" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/adminlevel/chinook/shuttle/unpowered) "xY" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "xZ" = ( /obj/structure/surface/table/reinforced/black, @@ -7664,42 +6130,29 @@ pixel_y = 4; pixel_x = -13 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "ya" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; name = "Office of Col. Samantha Maverick" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "yb" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "yf" = ( /obj/structure/largecrate/random, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "yg" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "yh" = ( /turf/closed/shuttle/ert{ @@ -7720,18 +6173,13 @@ /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/event) "yn" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "\improper Morgue" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "yo" = ( /obj/structure/bed/chair/comfy{ @@ -7745,19 +6193,14 @@ /area/adminlevel/chinook/event) "yr" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "yu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "yv" = ( /obj/structure/machinery/light, @@ -7768,9 +6211,7 @@ /obj/item/storage/box/flashbangs, /obj/item/storage/box/flashbangs, /obj/item/storage/box/flashbangs, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "yx" = ( /obj/structure/sign/poster{ @@ -7782,26 +6223,18 @@ /obj/structure/closet/secure_closet/guncabinet/red{ name = "provost armor rack" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "yz" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "yA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "yC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -7816,37 +6249,27 @@ /area/adminlevel/chinook/event) "yJ" = ( /obj/structure/cargo_container/arious/mid, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "yK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "yL" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "yM" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "yN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "yO" = ( /obj/structure/platform, @@ -7857,19 +6280,14 @@ /obj/structure/barricade/handrail/strata{ layer = 4.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "yP" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "yQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7913,55 +6331,38 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "yY" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/telecomms/broadcaster, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "yZ" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook/cargo) "zb" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "zc" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "zd" = ( /obj/structure/sign/safety/med_cryo{ pixel_x = 31 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "zf" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "zg" = ( /obj/structure/surface/table/reinforced/black, @@ -7969,10 +6370,7 @@ pixel_x = -7; pixel_y = 11 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "zi" = ( /obj/effect/decal/warning_stripes{ @@ -7981,25 +6379,16 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "zj" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "zl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "zm" = ( /obj/structure/machinery/door_control{ @@ -8009,9 +6398,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "zp" = ( /obj/structure/surface/table/reinforced/black, @@ -8025,19 +6412,13 @@ pixel_x = 3; pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "zt" = ( /obj/structure/surface/table/reinforced/black, @@ -8047,10 +6428,7 @@ /obj/item/paper{ pixel_x = -5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zw" = ( /turf/open/floor/wood, @@ -8060,9 +6438,7 @@ /area/adminlevel/chinook/engineering) "zD" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "zE" = ( /obj/structure/surface/table/reinforced/black, @@ -8070,10 +6446,7 @@ pixel_x = -1; pixel_y = -3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zG" = ( /obj/item/tool/lighter/zippo{ @@ -8085,16 +6458,10 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "zH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "zI" = ( /obj/structure/prop/almayer/name_stencil{ @@ -8104,9 +6471,7 @@ /turf/open/floor/almayer_hull, /area/space) "zJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "zL" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -8118,10 +6483,7 @@ id = "chinookreq"; name = "Requisitions Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "zM" = ( /obj/structure/surface/table/reinforced/black, @@ -8137,38 +6499,25 @@ pixel_y = 25; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "zP" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "zR" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "zS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "zT" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "zU" = ( /obj/structure/platform, @@ -8179,10 +6528,7 @@ /obj/structure/barricade/handrail/strata{ layer = 4.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "zW" = ( /turf/closed/wall/almayer/reinforced, @@ -8190,19 +6536,13 @@ "zX" = ( /obj/structure/platform, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "zY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/offices) "Ac" = ( /obj/structure/surface/table/almayer, @@ -8211,9 +6551,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "Ad" = ( /turf/closed/shuttle/ert{ @@ -8222,9 +6560,7 @@ /area/adminlevel/chinook/shuttle/unpowered) "Ae" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "Af" = ( /obj/structure/machinery/light{ @@ -8233,26 +6569,18 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/chinook/medical) "Ag" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "Ah" = ( /obj/structure/machinery/computer/card, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ai" = ( /turf/closed/shuttle/ert{ @@ -8261,16 +6589,11 @@ /area/adminlevel/chinook/shuttle/unpowered) "Aj" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "Al" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/offices) "Am" = ( /obj/structure/window/reinforced/tinted/frosted, @@ -8287,35 +6610,26 @@ "Ao" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ap" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "As" = ( /turf/closed/wall/almayer, /area/adminlevel/chinook/cargo) "Au" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Aw" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; name = "\improper Tool Storage" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ax" = ( /obj/item/storage/box/cups{ @@ -8324,9 +6638,7 @@ }, /obj/structure/machinery/light, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Ay" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -8353,15 +6665,11 @@ /area/adminlevel/chinook/engineering) "AB" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "AC" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "AD" = ( /turf/closed/shuttle/elevator, @@ -8370,27 +6678,17 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "AF" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Dining Hall" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/event) "AG" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "AH" = ( /obj/structure/machinery/vending/coffee, @@ -8407,10 +6705,7 @@ /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "AJ" = ( /obj/structure/bed/sofa/south/grey, @@ -8427,16 +6722,11 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/chinook/medical) "AM" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "AP" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/training, @@ -8445,9 +6735,7 @@ name = "\improper Range Safety Guidelines"; pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "AR" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -8458,9 +6746,7 @@ /area/adminlevel/chinook/event) "AS" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "AU" = ( /turf/closed/shuttle/ert{ @@ -8472,17 +6758,12 @@ dir = 8 }, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "AX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "AY" = ( /obj/structure/closet/secure_closet/personal, @@ -8507,10 +6788,7 @@ pixel_x = 3; pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Bc" = ( /turf/closed/wall/almayer/outer, @@ -8536,20 +6814,14 @@ pixel_y = 7 }, /obj/item/toy/deck, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Bg" = ( /obj/structure/machinery/computer/secure_data{ dir = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Bh" = ( /obj/structure/surface/table/reinforced/black, @@ -8575,10 +6847,7 @@ pixel_x = -11; pixel_y = 7 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Bk" = ( /obj/structure/surface/table/reinforced/black, @@ -8586,19 +6855,13 @@ pixel_x = -7; pixel_y = 11 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "Bn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "Bp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -8613,15 +6876,10 @@ "Bt" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Bu" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional/southwest, /area/adminlevel/chinook/shuttle) "Bx" = ( /obj/structure/surface/table/reinforced/black, @@ -8629,19 +6887,13 @@ dir = 4; pixel_x = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "By" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "Bz" = ( /obj/structure/surface/table/almayer, @@ -8650,10 +6902,7 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "BA" = ( /obj/structure/machinery/light{ @@ -8662,38 +6911,24 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "BB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "BC" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "BF" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "BG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "BH" = ( /obj/structure/bed/chair/office/dark{ @@ -8711,30 +6946,20 @@ /area/adminlevel/chinook/offices) "BJ" = ( /obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "BK" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "BN" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "BO" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/chinook/cargo) "BP" = ( /obj/structure/platform{ @@ -8744,9 +6969,7 @@ /area/adminlevel/chinook/event) "BR" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "BS" = ( /turf/open/floor/plating/plating_catwalk, @@ -8758,10 +6981,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "BV" = ( /obj/structure/platform_decoration{ @@ -8774,15 +6994,10 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "BX" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook/event) "BY" = ( /obj/structure/machinery/door_control{ @@ -8792,10 +7007,7 @@ pixel_y = 8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "BZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -8824,10 +7036,7 @@ pixel_x = 4; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Cf" = ( /obj/structure/sign/safety/firingrange{ @@ -8838,10 +7047,7 @@ pixel_x = -17; pixel_y = -6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Cg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -8860,34 +7066,21 @@ /obj/structure/sign/safety/cryo{ pixel_x = -18 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "Ck" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "Cm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Cn" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Co" = ( /obj/structure/machinery/vending/coffee, @@ -8900,10 +7093,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Cq" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -8923,9 +7113,7 @@ pixel_x = -2; pixel_y = 23 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "Ct" = ( /obj/structure/machinery/fuelcell_recycler, @@ -8945,14 +7133,10 @@ desc = "The plaque reads, 'This plaque is awarded to: KARL WALZ, For superior and unrivaled strategic prowess during the 2173 War Games, scoring a decisive and triumphant victory for their side.'"; name = "2173 Commanding Excellence Award" }, -/turf/open/floor/almayer{ - icon_state = "ai_floors" - }, +/turf/open/floor/almayer/ai_floors, /area/adminlevel/chinook/offices) "Cx" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/northwest, /area/adminlevel/chinook/shuttle) "Cz" = ( /obj/structure/bed/sofa/south/grey, @@ -8967,10 +7151,7 @@ /area/adminlevel/chinook/offices) "CC" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "CE" = ( /obj/structure/bed/chair/comfy{ @@ -8983,9 +7164,7 @@ /area/adminlevel/chinook/event) "CF" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook) "CH" = ( /obj/structure/machinery/light, @@ -8995,49 +7174,32 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "CK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook/cryo) "CM" = ( /obj/structure/machinery/light, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "CP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/adminlevel/chinook/shuttle/unpowered) "CQ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "CS" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "CT" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "CU" = ( /obj/structure/machinery/vending/snack, @@ -9051,10 +7213,7 @@ pixel_x = -16; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "CX" = ( /obj/structure/bed/chair/comfy{ @@ -9063,16 +7222,11 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Da" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/event) "Db" = ( /obj/structure/machinery/light{ @@ -9081,10 +7235,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Engineering" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Dc" = ( /obj/structure/toilet{ @@ -9104,10 +7255,7 @@ pixel_y = -3 }, /obj/item/tool/scythe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "Df" = ( /obj/structure/bed/chair/comfy/black{ @@ -9155,9 +7303,7 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Dp" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -9171,9 +7317,7 @@ pixel_y = 27 }, /obj/structure/bed/chair/wheelchair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Dr" = ( /obj/structure/closet/secure_closet{ @@ -9184,17 +7328,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Ds" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Dt" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -9260,10 +7399,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "DD" = ( /obj/structure/machinery/door_control{ @@ -9278,10 +7414,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "DH" = ( /obj/structure/bed/chair/comfy{ @@ -9290,10 +7423,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "DJ" = ( /turf/closed/shuttle/ert, @@ -9304,10 +7434,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "DN" = ( /obj/effect/decal/warning_stripes{ @@ -9319,10 +7446,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "DO" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "DP" = ( /obj/structure/prop/almayer/name_stencil{ @@ -9334,72 +7458,48 @@ "DR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "DS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/offices) "DT" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "DV" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "DY" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "DZ" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ea" = ( /obj/structure/sign/safety/security{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Ed" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Eg" = ( /obj/structure/closet/coffin, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Eh" = ( /obj/structure/bed/chair/comfy{ @@ -9408,16 +7508,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "Ei" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ej" = ( /obj/structure/sign/safety/coffee{ @@ -9427,9 +7522,7 @@ pixel_x = -16; pixel_y = -12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Ek" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -9449,9 +7542,7 @@ /area/adminlevel/chinook/offices) "El" = ( /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/adminlevel/chinook/shuttle/unpowered) "Em" = ( /turf/open/floor/kutjevo, @@ -9462,10 +7553,7 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Eo" = ( /obj/structure/bed/chair/comfy{ @@ -9481,9 +7569,7 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "Eq" = ( /obj/structure/machinery/vending/hydronutrients, @@ -9499,44 +7585,28 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Et" = ( -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "Ev" = ( /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ew" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) "Ex" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ey" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/adminlevel/chinook) "EA" = ( /obj/structure/sign/safety/reception{ pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "EB" = ( /obj/structure/surface/table/reinforced/black, @@ -9544,10 +7614,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "ED" = ( /obj/structure/bed/sofa/south/grey/right, @@ -9560,10 +7627,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/east, /area/adminlevel/chinook/shuttle) "EG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -9586,10 +7650,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/adminlevel/chinook/shuttle) "EQ" = ( /obj/item/reagent_container/food/snacks/meat{ @@ -9605,19 +7666,14 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "ET" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "EU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -9626,17 +7682,11 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/event) "EV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook) "EZ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Fa" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -9644,9 +7694,7 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/ammo_magazine/shotgun/buckshot, /obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/offices) "Fb" = ( /obj/structure/bed/chair/office/dark{ @@ -9665,20 +7713,14 @@ pixel_x = -16 }, /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Ff" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fg" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fi" = ( /obj/structure/surface/rack, @@ -9688,9 +7730,7 @@ /obj/item/device/binoculars, /obj/item/device/binoculars, /obj/item/device/binoculars, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "Fk" = ( /obj/structure/sign/ROsign{ @@ -9698,30 +7738,22 @@ name = "\improper Range Safety Guidelines"; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fl" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "Fm" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/offices) "Fq" = ( /obj/structure/surface/table/reinforced/black, @@ -9729,42 +7761,29 @@ icon_state = "pottedplant_27"; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "Fr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ft" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Fu" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Fv" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Fx" = ( /turf/closed/shuttle/elevator/gears, @@ -9773,25 +7792,16 @@ /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "Fz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "FD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) "FE" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9807,10 +7817,7 @@ /obj/structure/sign/prop3{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "FG" = ( /obj/structure/surface/table/almayer, @@ -9821,25 +7828,19 @@ /area/adminlevel/chinook/sec) "FH" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "FK" = ( /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "FL" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "FM" = ( /obj/structure/bed/stool, @@ -9852,9 +7853,7 @@ pixel_y = 5 }, /obj/item/storage/box/ids, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "FP" = ( /obj/structure/machinery/light, @@ -9863,9 +7862,7 @@ /area/adminlevel/chinook/sec) "FQ" = ( /obj/structure/machinery/telecomms/hub, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "FR" = ( /obj/structure/surface/table/almayer, @@ -9880,23 +7877,17 @@ /obj/item/folder/yellow{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "FU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/sliceable/pumpkinpie{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "FV" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/adminlevel/chinook) "FW" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9915,15 +7906,10 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "FY" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/adminlevel/chinook) "FZ" = ( /obj/structure/sign/safety/medical{ @@ -9933,10 +7919,7 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ga" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -9945,16 +7928,11 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Gb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/adminlevel/chinook/sec) "Gc" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/chinook/cargo) "Gf" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -9962,18 +7940,13 @@ /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 22 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Gg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gi" = ( /obj/structure/platform{ @@ -9982,10 +7955,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Gk" = ( /obj/structure/sign/safety/medical{ @@ -10003,10 +7973,7 @@ pixel_x = -12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Go" = ( /turf/open/floor/plating/plating_catwalk, @@ -10015,19 +7982,13 @@ /obj/structure/sign/prop3{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gt" = ( /obj/structure/sign/safety/galley{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gu" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10056,41 +8017,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook) "Gx" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Gz" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "GA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "GB" = ( /obj/structure/sign/safety/storage{ pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "GC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -10100,24 +8046,17 @@ /area/adminlevel/chinook/sec) "GD" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "GE" = ( /obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "GF" = ( /obj/structure/sign/safety/conference_room{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "GG" = ( /obj/structure/surface/table/reinforced/black, @@ -10134,15 +8073,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "GJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "GK" = ( /obj/structure/surface/table/reinforced/black, @@ -10150,25 +8085,17 @@ /obj/item/paper{ pixel_x = -5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "GL" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "GM" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "GN" = ( /obj/structure/machinery/light{ @@ -10177,33 +8104,21 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "GP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) "GQ" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "GR" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "GS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "GT" = ( /obj/structure/surface/table/almayer, @@ -10220,34 +8135,23 @@ pixel_y = 5 }, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "GV" = ( /obj/structure/sign/safety/coffee{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "GW" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "GX" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Ha" = ( /obj/structure/window/framed/almayer, @@ -10255,10 +8159,7 @@ /area/adminlevel/chinook/engineering) "Hb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) "Hd" = ( /obj/structure/machinery/light{ @@ -10271,10 +8172,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Hg" = ( /obj/structure/sign/safety/airlock{ @@ -10293,38 +8191,26 @@ /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Hj" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Hl" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "Hm" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Hn" = ( /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ho" = ( /obj/effect/decal/warning_stripes{ @@ -10340,18 +8226,13 @@ /area/adminlevel/chinook) "Hr" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "Hs" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/adminlevel/chinook) "Hu" = ( /obj/structure/bed/chair/comfy{ @@ -10378,17 +8259,11 @@ pixel_x = 14; pixel_y = -14 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "Hz" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "HA" = ( /obj/structure/stairs/perspective{ @@ -10406,9 +8281,7 @@ name = "Freezer"; req_access_txt = "30" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "HE" = ( /obj/structure/bed/chair/comfy{ @@ -10418,9 +8291,7 @@ /area/adminlevel/chinook) "HF" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "HG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10462,23 +8333,15 @@ }, /obj/item/tool/wirecutters/clippers, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "HL" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "HM" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "HN" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -10496,16 +8359,11 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook) "HP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "HQ" = ( /obj/structure/largecrate/supply, @@ -10516,20 +8374,14 @@ /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "HR" = ( /obj/structure/largecrate/random/case/double, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "HT" = ( /turf/closed/shuttle/elevator{ @@ -10544,24 +8396,17 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "HV" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "HW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "HX" = ( /obj/structure/machinery/light{ @@ -10583,10 +8428,7 @@ /turf/closed/wall/almayer/white, /area/adminlevel/chinook/medical) "Ib" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "Ic" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -10599,17 +8441,13 @@ /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/cargo) "Ie" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "If" = ( /obj/structure/sign/safety/bathmens{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Ig" = ( /turf/open/floor/plating/plating_catwalk, @@ -10646,10 +8484,7 @@ name = "Execution Armory Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Ip" = ( /obj/item/paper_bin/uscm{ @@ -10657,16 +8492,11 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Iq" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Ir" = ( /obj/effect/decal/warning_stripes{ @@ -10683,9 +8513,7 @@ dir = 2; name = "\improper Men's Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Iv" = ( /turf/closed/wall/almayer/white, @@ -10694,9 +8522,7 @@ /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ix" = ( /obj/structure/window/framed/almayer, @@ -10717,30 +8543,21 @@ /area/adminlevel/chinook/event) "IC" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "IF" = ( /obj/structure/bed/chair, /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "IJ" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "IK" = ( /turf/closed/shuttle/ert{ @@ -10749,20 +8566,14 @@ /area/adminlevel/chinook/shuttle/unpowered) "IL" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "IM" = ( /obj/structure/bed/chair/comfy{ dir = 1; name = "witness chair" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "IP" = ( /obj/structure/closet/crate, @@ -10778,10 +8589,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook/offices) "IR" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "IS" = ( /obj/structure/closet/firecloset, @@ -10808,10 +8616,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "IY" = ( /obj/structure/surface/rack, @@ -10820,9 +8625,7 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "IZ" = ( /obj/structure/surface/table/reinforced/black, @@ -10833,10 +8636,7 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "Jc" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, /area/space) "Jd" = ( /obj/structure/machinery/light, @@ -10854,10 +8654,7 @@ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "Jg" = ( /obj/structure/bed/stool, @@ -10867,10 +8664,7 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) "Jm" = ( /obj/structure/bed/sofa/south/grey/left, @@ -10881,10 +8675,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook) "Jo" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -10902,9 +8693,7 @@ /area/adminlevel/chinook) "Jq" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Jr" = ( /obj/structure/machinery/door_control{ @@ -10918,23 +8707,15 @@ /area/adminlevel/chinook/sec) "Js" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "Ju" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Jx" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Jy" = ( /obj/structure/surface/table/almayer, @@ -10947,36 +8728,25 @@ /obj/item/clothing/head/welding, /obj/item/clothing/head/welding, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "Jz" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "JA" = ( /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "JB" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "JC" = ( /obj/structure/machinery/vending/hydroseeds, @@ -10984,33 +8754,24 @@ /area/adminlevel/chinook/event) "JD" = ( /obj/structure/machinery/cm_vending/gear/synth, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "JE" = ( /obj/structure/sign/safety/autodoc{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "JG" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "JH" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "JI" = ( /obj/structure/platform, @@ -11022,10 +8783,7 @@ /area/adminlevel/chinook/cargo) "JJ" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "JK" = ( /turf/open/floor/kutjevo/tan, @@ -11048,9 +8806,7 @@ dir = 2; name = "\improper Women's Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "JO" = ( /obj/structure/surface/rack, @@ -11059,9 +8815,7 @@ pixel_x = -9; pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "JR" = ( /turf/open/floor/kutjevo/tan/alt_edge, @@ -11080,44 +8834,30 @@ /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/grey, /obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "JU" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "JV" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "JW" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "JX" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/adminlevel/chinook/event) "JY" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Kd" = ( /obj/structure/stairs/perspective{ @@ -11126,10 +8866,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ke" = ( /obj/structure/window/framed/almayer/hull, @@ -11140,10 +8877,7 @@ pixel_x = 32; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Ki" = ( /obj/structure/barricade/handrail/strata, @@ -11156,27 +8890,18 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Kl" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Km" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "Kn" = ( /obj/structure/machinery/light{ @@ -11194,15 +8919,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Kq" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Ks" = ( /obj/structure/sign/safety/north{ @@ -11216,10 +8936,7 @@ pixel_x = 32; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Ku" = ( /obj/structure/surface/table/almayer, @@ -11239,16 +8956,11 @@ /area/adminlevel/chinook/cargo) "Kv" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Kw" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Kx" = ( /obj/structure/surface/table/reinforced/black, @@ -11256,10 +8968,7 @@ dir = 1; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Ky" = ( /obj/structure/sign/safety/radio_rad{ @@ -11272,18 +8981,13 @@ pixel_x = -15; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Kz" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "KD" = ( /obj/item/trash/cigbutt/cigarbutt, @@ -11293,32 +8997,23 @@ /obj/effect/decal/medical_decals{ icon_state = "cryocell1decal" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "KG" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "KH" = ( /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "KI" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "\improper Misc Storage" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "KJ" = ( /obj/structure/closet/secure_closet/personal, @@ -11336,36 +9031,27 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "KM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KN" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "KO" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KP" = ( /obj/structure/machinery/light{ @@ -11375,10 +9061,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "KT" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) "KV" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -11386,15 +9069,10 @@ id = "chinookreq"; name = "Requisitions Lockdown" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "KW" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook/cargo) "KX" = ( /obj/structure/surface/rack, @@ -11415,16 +9093,11 @@ }, /obj/item/reagent_container/glass/bucket, /obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "KY" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KZ" = ( /obj/structure/surface/table/reinforced/black, @@ -11435,10 +9108,7 @@ /obj/item/clothing/mask/cigarette{ pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "La" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -11446,14 +9116,10 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Lc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ld" = ( /obj/structure/surface/table/almayer, @@ -11464,18 +9130,13 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Le" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Lf" = ( /obj/structure/surface/rack, @@ -11484,33 +9145,25 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Lg" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "Li" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/shuttle) "Lj" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "Lk" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Ll" = ( /obj/structure/machinery/light{ @@ -11538,9 +9191,7 @@ /area/adminlevel/chinook) "Lo" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Lp" = ( /obj/structure/machinery/light{ @@ -11551,15 +9202,11 @@ name = "No. 1 Baller Award"; desc = "A trophy given to the winner of the annual Baller competition. Such a competition has, in fact, nothing to do with basketball and is so elusive, nobody knows what it actually is or what winning it symbolizes. But at least it has a nice trophy." }, -/turf/open/floor/almayer{ - icon_state = "ai_floors" - }, +/turf/open/floor/almayer/ai_floors, /area/adminlevel/chinook/offices) "Ls" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "Lu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -11588,10 +9235,7 @@ pixel_x = -9; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Ly" = ( /obj/structure/machinery/light{ @@ -11623,20 +9267,14 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) "LC" = ( /obj/structure/sign/safety/cryo{ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "LD" = ( /obj/structure/machinery/vending/snack, @@ -11661,10 +9299,7 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "LG" = ( /obj/structure/surface/table/almayer, @@ -11677,26 +9312,18 @@ /area/adminlevel/chinook/sec) "LH" = ( /obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "LI" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "LK" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "LN" = ( /obj/structure/flora/pottedplant{ @@ -11705,10 +9332,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "LP" = ( /obj/structure/bed/chair/comfy{ @@ -11717,17 +9341,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "LQ" = ( /obj/structure/closet/crate, /obj/item/storage/backpack/marine, /obj/item/storage/backpack/marine, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "LR" = ( /obj/structure/surface/table/reinforced/black, @@ -11737,10 +9357,7 @@ /obj/item/device/flashlight/lamp/green{ pixel_y = 12 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "LS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -11752,27 +9369,19 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "LU" = ( /obj/structure/sign/safety/bathwomens{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "LV" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/event) "LW" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook) "LX" = ( /obj/structure/target{ @@ -11795,35 +9404,23 @@ dir = 1 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Mg" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Mh" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Mi" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Mj" = ( /obj/structure/machinery/light{ @@ -11832,10 +9429,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Ml" = ( /obj/effect/decal/warning_stripes{ @@ -11844,10 +9438,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Mm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "Mn" = ( /obj/structure/sign/safety/fire_haz{ @@ -11857,9 +9448,7 @@ pixel_y = 25; pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Mp" = ( /obj/structure/prop/almayer/name_stencil{ @@ -11870,10 +9459,7 @@ /area/space) "Mq" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Ms" = ( /turf/closed/shuttle/ert{ @@ -11886,10 +9472,7 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Mv" = ( /obj/effect/spawner/random/tool, @@ -11901,9 +9484,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Mx" = ( /obj/structure/machinery/door/airlock/almayer/secure{ @@ -11916,25 +9497,17 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) "Mz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) "MA" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "MB" = ( /obj/effect/decal/cleanable/blood/oil, @@ -11947,18 +9520,13 @@ /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "MD" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ME" = ( /obj/structure/surface/table/reinforced/black, @@ -11977,32 +9545,23 @@ "MG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "MH" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "MI" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "MK" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "ML" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -12022,36 +9581,26 @@ /area/adminlevel/chinook/engineering) "MO" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "MQ" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "MR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "MS" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "MT" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) "MU" = ( /obj/structure/window/framed/almayer, @@ -12059,45 +9608,30 @@ /area/adminlevel/chinook/event) "MV" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "MX" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Nb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Nc" = ( /obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ne" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Nf" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ng" = ( /obj/structure/machinery/light, @@ -12112,10 +9646,7 @@ "Nk" = ( /obj/structure/machinery/light, /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Nl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -12125,44 +9656,30 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/shuttle) "Nm" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/chinook/cargo) "Nn" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "No" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Np" = ( /obj/structure/cargo_container/seegson/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Nq" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Nr" = ( /obj/structure/bed/chair{ @@ -12181,21 +9698,14 @@ /obj/item/stack/sheet/plasteel/large_stack, /obj/item/stack/sheet/metal/medium_stack, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "Nu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Nv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/chinook/engineering) "Nw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -12209,45 +9719,28 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ny" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "Nz" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook/cryo) "NA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "NC" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "ND" = ( /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/offices) "NE" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -12264,9 +9757,7 @@ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "NJ" = ( /obj/structure/machinery/light{ @@ -12282,10 +9773,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "NN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "NP" = ( /obj/structure/prop/almayer/name_stencil{ @@ -12295,9 +9783,7 @@ /turf/open/floor/almayer_hull, /area/space) "NQ" = ( -/turf/open/floor/kutjevo/colors/blue/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/blue/edge/west, /area/adminlevel/chinook) "NS" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -12310,9 +9796,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "NU" = ( /obj/structure/machinery/light{ @@ -12325,9 +9809,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "NW" = ( /obj/structure/surface/table/reinforced/black, @@ -12342,10 +9824,7 @@ pixel_y = 7; pixel_x = -5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "NX" = ( /obj/structure/bed/chair/comfy{ @@ -12367,61 +9846,41 @@ "Oc" = ( /obj/structure/closet/coffin, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Od" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Of" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; name = "\improper Lethal Injection Equipment" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Og" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Oi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Oj" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "On" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Oq" = ( /obj/structure/bed/chair{ @@ -12431,9 +9890,7 @@ /area/adminlevel/chinook/sec) "Or" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Os" = ( /obj/structure/surface/table/almayer, @@ -12444,25 +9901,17 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Ot" = ( /obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Ow" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Oy" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -12470,17 +9919,12 @@ name = "Freezer"; req_access_txt = "30" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "Oz" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "OA" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -12490,17 +9934,13 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "OB" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "OC" = ( /obj/structure/sign/safety/bathunisex{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "OD" = ( /obj/structure/sign/poster{ @@ -12511,44 +9951,29 @@ pixel_y = 3; serial_number = 11 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "OE" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "OF" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/chinook) "OG" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "OK" = ( /obj/effect/decal/warning_stripes{ @@ -12562,36 +9987,24 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OM" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "ON" = ( /obj/item/trash/burger{ pixel_x = -20 }, /obj/structure/machinery/seed_extractor, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OP" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "OR" = ( /obj/structure/machinery/vending/snack, @@ -12602,27 +10015,20 @@ icon_state = "syndishuttle"; name = "shuttle control console" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "OT" = ( /obj/structure/machinery/cm_vending/clothing/synth/snowflake, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "OU" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "OV" = ( /obj/structure/machinery/light{ @@ -12649,25 +10055,17 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "OY" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "OZ" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata{ layer = 4.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Pa" = ( /obj/structure/surface/table/almayer, @@ -12682,9 +10080,7 @@ /area/adminlevel/chinook/sec) "Pb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Pc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -12695,36 +10091,24 @@ /area/adminlevel/chinook/cargo) "Pd" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Pe" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "Pf" = ( -/turf/open/floor/kutjevo/colors/blue/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/blue/edge/east, /area/adminlevel/chinook) "Pg" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Ph" = ( /obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook) "Pi" = ( /obj/structure/machinery/light, @@ -12738,11 +10122,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Pk" = ( -/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/space) "Pl" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -12758,9 +10138,7 @@ pixel_y = 2 }, /obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Po" = ( /obj/structure/platform{ @@ -12769,22 +10147,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Pp" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Pq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/adminlevel/chinook/engineering) "Pr" = ( /obj/structure/surface/table/reinforced/black, @@ -12792,10 +10162,7 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ps" = ( /obj/structure/desertdam/decals/road_edge{ @@ -12810,33 +10177,23 @@ "Pt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Pu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Pv" = ( /obj/item/storage/donut_box, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Pw" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ desc = "An elevator hatch to take you to different levels of the station. This elevator seems to be disabled."; name = "\improper Elevator Hatch" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/offices) "Px" = ( /obj/effect/decal/warning_stripes{ @@ -12862,9 +10219,7 @@ dir = 8 }, /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "PB" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -12886,9 +10241,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "PE" = ( /obj/structure/machinery/light{ @@ -12899,31 +10252,23 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PI" = ( /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "PK" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PL" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -12931,21 +10276,13 @@ id = "chinookairlock1"; name = "\improper Chinook Shuttle Airlock" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/shuttle/unpowered) "PM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook) "PP" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/chinook) "PR" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -12961,10 +10298,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook) "PV" = ( /obj/structure/window/framed/almayer/hull, @@ -12991,9 +10325,7 @@ /obj/item/tool/soap{ pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "PZ" = ( /obj/structure/surface/table/almayer, @@ -13001,9 +10333,7 @@ pixel_y = 10 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qa" = ( /obj/structure/surface/table/almayer, @@ -13016,23 +10346,16 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qc" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Qd" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/bag/trash, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qe" = ( /obj/structure/surface/table/almayer, @@ -13040,31 +10363,21 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "Qf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Qg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Qh" = ( /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "Qi" = ( /obj/structure/closet, @@ -13074,9 +10387,7 @@ /obj/item/tool/soap, /obj/item/tool/soap, /obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qk" = ( /turf/closed/shuttle/ert{ @@ -13084,16 +10395,11 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "Qm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook/offices) "Qn" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13110,15 +10416,11 @@ "Qq" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qr" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qs" = ( /obj/item/tool/pen/fountain{ @@ -13142,10 +10444,7 @@ pixel_y = 32 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "Qv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -13158,10 +10457,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "Qx" = ( /turf/closed/wall/almayer/outer, @@ -13169,25 +10465,17 @@ "Qy" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Qz" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "QA" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "QB" = ( /obj/structure/surface/table/reinforced/black, @@ -13210,20 +10498,14 @@ pixel_x = 10; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "QD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "QE" = ( /obj/structure/bed/chair/comfy/black{ @@ -13233,18 +10515,13 @@ /area/adminlevel/chinook/sec) "QF" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "QG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "QH" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -13259,26 +10536,19 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "QJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/cargo) "QL" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "QO" = ( /obj/structure/closet/secure_closet{ @@ -13287,18 +10557,14 @@ }, /obj/effect/decal/cleanable/blood/oil/streak, /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "QP" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "QQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13310,9 +10576,7 @@ "QR" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "QS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -13336,10 +10600,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook) "QV" = ( /obj/structure/bed/chair/comfy{ @@ -13367,10 +10628,7 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Ri" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13396,10 +10654,7 @@ pixel_x = 7; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Rl" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -13414,45 +10669,32 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/adminlevel/chinook) "Ro" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "Rp" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) "Rq" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Rs" = ( /obj/structure/sign/safety/bathwomens{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Rt" = ( /obj/structure/platform{ @@ -13467,32 +10709,21 @@ pixel_y = -7 }, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Rw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "Rx" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Ry" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "RA" = ( /obj/structure/noticeboard{ @@ -13508,32 +10739,22 @@ pixel_x = 13; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "RD" = ( /obj/structure/machinery/light, /obj/structure/platform, /obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "RE" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "RF" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/chinook/cargo) "RH" = ( /obj/structure/toilet{ @@ -13542,15 +10763,10 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "RI" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "RJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "RK" = ( /obj/structure/surface/table/almayer, @@ -13559,10 +10775,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "RL" = ( /obj/structure/surface/table/reinforced/black, @@ -13574,9 +10787,7 @@ /turf/open/floor/wood, /area/adminlevel/chinook/offices) "RM" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "RN" = ( /obj/structure/window/framed/almayer, @@ -13593,36 +10804,24 @@ /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "RR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "RS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/offices) "RT" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "RU" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "RX" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -13631,35 +10830,23 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "RZ" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Sa" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Sc" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Se" = ( /obj/structure/machinery/light{ @@ -13668,17 +10855,12 @@ /obj/structure/closet/secure_closet/guncabinet/red{ name = "provost armor rack" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Sg" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Sh" = ( /obj/structure/surface/table/reinforced/black, @@ -13686,41 +10868,27 @@ pixel_x = 3; pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Si" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Sj" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Sk" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Sl" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Sn" = ( /obj/structure/bed/chair{ @@ -13731,32 +10899,23 @@ /area/adminlevel/chinook/sec) "So" = ( /obj/structure/machinery/telecomms/bus, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Sr" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ss" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Su" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Sv" = ( /obj/structure/machinery/light{ @@ -13768,24 +10927,18 @@ "Sw" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Sx" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Sy" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter, /obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Sz" = ( /turf/open/floor/kutjevo/plate, @@ -13794,10 +10947,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "SC" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -13807,16 +10957,11 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) "SD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/chinook) "SE" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "SF" = ( /obj/structure/surface/rack, @@ -13824,26 +10969,18 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "SH" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "SI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook) "SK" = ( /obj/structure/window/framed/almayer, @@ -13869,19 +11006,14 @@ pixel_x = 32; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "SP" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook) "SQ" = ( /obj/structure/machinery/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "SR" = ( /obj/structure/window/framed/almayer/hull, @@ -13895,9 +11027,7 @@ /obj/item/reagent_container/food/condiment/peppermill{ pixel_x = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "ST" = ( /obj/structure/largecrate/supply/supplies/water, @@ -13905,10 +11035,7 @@ pixel_x = 10; pixel_y = -16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "SU" = ( /obj/structure/surface/rack, @@ -13921,9 +11048,7 @@ /obj/item/storage/bag/plants{ pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "SV" = ( /obj/structure/platform/stair_cut/alt, @@ -13931,41 +11056,28 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "SX" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "SY" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Ta" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Tb" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Td" = ( /obj/structure/window/framed/almayer, @@ -13974,36 +11086,23 @@ "Tf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "Tg" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Th" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ti" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "Tj" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/adminlevel/chinook) "Tl" = ( /obj/structure/window/framed/almayer, @@ -14015,20 +11114,14 @@ "To" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Tp" = ( /obj/structure/sign/safety/autodoc{ pixel_x = -16 }, /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "Tq" = ( /obj/structure/machinery/light{ @@ -14046,62 +11139,43 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Tt" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Tu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Tx" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "TA" = ( /obj/structure/cargo_container/seegson/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "TC" = ( /obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "TD" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "TE" = ( /obj/structure/machinery/door/airlock/almayer/secure{ name = "Telecommunications"; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "TG" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -14113,14 +11187,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/sec) "TJ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/offices) "TK" = ( /obj/structure/bed/chair/comfy{ @@ -14137,18 +11207,13 @@ dir = 1 }, /obj/item/stack/sheet/mineral/uranium, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "TM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/adminlevel/chinook/shuttle) "TO" = ( /obj/structure/machinery/light, @@ -14166,10 +11231,7 @@ dir = 4 }, /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/offices) "TQ" = ( /turf/open/floor/kutjevo/plate, @@ -14178,10 +11240,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "TU" = ( /obj/structure/surface/table/reinforced/black, @@ -14189,18 +11248,13 @@ pixel_y = 9; desc = "Morbidly pickled and preserved as a conversation piece. Somehow, doesn't smell like anything." }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "TV" = ( /obj/structure/sign/safety/conference_room{ pixel_y = -24 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "TY" = ( /obj/structure/sink{ @@ -14210,17 +11264,11 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "TZ" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "Ua" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -14246,9 +11294,7 @@ /obj/item/stack/sheet/metal{ amount = 50 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Ud" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -14256,38 +11302,24 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ue" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/chinook/medical) "Uf" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "Ug" = ( /obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Uh" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Uj" = ( /obj/structure/machinery/light, @@ -14306,9 +11338,7 @@ pixel_x = -4; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "Ul" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -14322,19 +11352,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Up" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Ut" = ( /obj/structure/surface/rack, @@ -14357,47 +11382,34 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Uu" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Uw" = ( /obj/structure/machinery/chem_master, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "Ux" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cryo) "Uy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/adminlevel/chinook) "Uz" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UA" = ( /turf/closed/wall/almayer, @@ -14409,10 +11421,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "UD" = ( /obj/effect/decal/warning_stripes{ @@ -14421,16 +11430,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "UE" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "UF" = ( /obj/structure/machinery/light{ @@ -14439,25 +11442,17 @@ /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "UH" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "UI" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "UK" = ( /turf/closed/wall/almayer, @@ -14474,27 +11469,19 @@ /area/adminlevel/chinook) "UO" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UQ" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "UR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/sentencing, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "UU" = ( /obj/structure/surface/rack, @@ -14510,9 +11497,7 @@ /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UV" = ( /turf/closed/shuttle/ert{ @@ -14529,17 +11514,11 @@ pixel_y = 12; pixel_x = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "UX" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "UY" = ( /obj/vehicle/powerloader, @@ -14549,40 +11528,28 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "UZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Va" = ( /obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "Vb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "Vc" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "Vd" = ( /obj/structure/closet/crate{ @@ -14590,26 +11557,18 @@ }, /obj/item/stack/sheet/metal/large_stack, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Ve" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "Vg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/ash, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "Vh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -14646,10 +11605,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "Vr" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "Vs" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -14667,100 +11623,67 @@ /area/adminlevel/chinook/offices) "Vu" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Vv" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Vw" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Vx" = ( /obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Vz" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "VA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/adminlevel/chinook/sec) "VB" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "VE" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "VH" = ( /obj/structure/target, /turf/open/floor/wood, /area/adminlevel/chinook/offices) "VI" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "VJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "VK" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/telecomms/receiver, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "VN" = ( /obj/item/smallDelivery{ pixel_x = -13; pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "VO" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -14779,15 +11702,11 @@ /area/adminlevel/chinook/offices) "VP" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "VQ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/adminlevel/chinook/shuttle) "VR" = ( /obj/structure/toilet{ @@ -14797,10 +11716,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "VS" = ( /obj/structure/sign/poster{ @@ -14830,23 +11746,16 @@ dir = 1; name = "\improper Post-Execution Equipment" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "VW" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "VY" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "Wb" = ( /obj/structure/surface/table/almayer, @@ -14856,9 +11765,7 @@ /obj/item/tool/pen{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Wc" = ( /obj/structure/machinery/light{ @@ -14879,10 +11786,7 @@ /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Wf" = ( /turf/open/space, @@ -14891,19 +11795,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Wi" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "Wl" = ( /obj/structure/closet/crate, @@ -14915,10 +11813,7 @@ dir = 4 }, /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Wo" = ( /obj/structure/bed/chair/comfy/black{ @@ -14931,10 +11826,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Wq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Wr" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -14942,10 +11834,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ws" = ( /obj/effect/decal/cleanable/cobweb{ @@ -14963,19 +11852,13 @@ /obj/item/weapon/gun/rifle/l42a, /obj/item/weapon/gun/rifle/l42a, /obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Wt" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "Wu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -14987,43 +11870,28 @@ /area/adminlevel/chinook) "Ww" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "Wx" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Wy" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/chinook) "Wz" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/chinook) "WB" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "WD" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "WE" = ( /obj/structure/surface/rack, @@ -15043,9 +11911,7 @@ pixel_y = -2 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "WF" = ( /turf/closed/wall/almayer, @@ -15055,17 +11921,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "WI" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "WJ" = ( /obj/structure/surface/table/almayer, @@ -15074,15 +11936,11 @@ pixel_y = 5 }, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "WK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WL" = ( /obj/structure/window/framed/almayer/hull, @@ -15096,42 +11954,29 @@ /obj/item/tool/soap, /obj/item/tool/soap, /obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "WN" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "WO" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WP" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WQ" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "WS" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WT" = ( /obj/structure/surface/table/almayer, @@ -15140,22 +11985,15 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "WU" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/binoculars, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "WV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/chinook/cargo) "WW" = ( /obj/structure/surface/table/almayer, @@ -15169,16 +12007,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "WY" = ( -/turf/open/floor/almayer_hull{ - dir = 6; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, /area/space) "Xa" = ( /obj/structure/surface/table/reinforced/black, @@ -15186,16 +12018,11 @@ pixel_x = 6; pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Xc" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Xd" = ( /obj/structure/sign/safety/high_voltage{ @@ -15206,10 +12033,7 @@ pixel_x = -15; pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Xe" = ( /obj/structure/closet/secure_closet/personal, @@ -15232,10 +12056,7 @@ /area/adminlevel/chinook/engineering) "Xg" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Xh" = ( /obj/structure/machinery/computer/card{ @@ -15243,35 +12064,23 @@ }, /obj/structure/machinery/light, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Xi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) "Xj" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Xk" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) "Xl" = ( /turf/open/floor/plating, @@ -15302,26 +12111,19 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Xq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Xs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "Xu" = ( /obj/structure/toilet{ @@ -15330,62 +12132,41 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Xv" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "Xw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/adminlevel/chinook) "Xx" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "XC" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "XE" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "XH" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook/engineering) "XI" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/adminlevel/chinook/offices) "XJ" = ( /obj/structure/largecrate/supply/medicine/optable, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "XK" = ( /obj/vehicle/powerloader, @@ -15396,19 +12177,14 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "XL" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "XN" = ( /obj/structure/surface/table/reinforced/black, @@ -15420,10 +12196,7 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "XO" = ( /obj/structure/sign/poster{ @@ -15433,24 +12206,16 @@ pixel_x = 27; serial_number = 11 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "XP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Observation Lounge" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "XQ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook/cryo) "XR" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -15471,9 +12236,7 @@ pixel_x = 12; pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "XU" = ( /obj/structure/machinery/door_control{ @@ -15482,23 +12245,15 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "XW" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "XZ" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Ya" = ( /obj/effect/decal/warning_stripes{ @@ -15508,16 +12263,10 @@ pixel_x = 32; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Yb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Yc" = ( /turf/closed/wall/almayer/outer, @@ -15538,10 +12287,7 @@ icon_state = "E" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Yf" = ( /obj/structure/sign/safety/press_area_ag{ @@ -15559,10 +12305,7 @@ dir = 1; name = "\improper EVA Storage" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Yh" = ( /obj/structure/surface/table/reinforced/black, @@ -15570,17 +12313,12 @@ pixel_x = -5; pixel_y = 5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Yi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Yj" = ( /turf/open/floor/almayer, @@ -15589,17 +12327,11 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ym" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "Yn" = ( /turf/closed/shuttle/elevator/gears, @@ -15609,38 +12341,25 @@ /obj/item/storage/fancy/egg_box{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Yp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Yq" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Male Locker Room" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Yr" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, /area/space) "Ys" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook) "Yt" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/space) "Yu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -15652,15 +12371,11 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Yx" = ( /obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Yy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -15672,10 +12387,7 @@ id = "chinook_solitary1"; name = "Solitary Cell 1 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Yz" = ( /obj/structure/machinery/light{ @@ -15691,18 +12403,13 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "YB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "YC" = ( /turf/closed/wall/almayer/reinforced, @@ -15712,9 +12419,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "YF" = ( /obj/structure/prop/almayer/name_stencil{ @@ -15726,9 +12431,7 @@ "YG" = ( /obj/structure/closet/radiation, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "YH" = ( /obj/structure/curtain/red, @@ -15741,23 +12444,17 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YK" = ( /obj/structure/sign/poster{ pixel_y = 32 }, /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YL" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "YM" = ( /obj/structure/barricade/handrail/strata, @@ -15765,9 +12462,7 @@ /area/adminlevel/chinook/cargo) "YN" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YO" = ( /obj/structure/machinery/vending/cola, @@ -15779,10 +12474,7 @@ /area/adminlevel/chinook/medical) "YQ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "YR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -15790,39 +12482,27 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "YS" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "YT" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "YU" = ( /obj/structure/machinery/telecomms/allinone, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "YV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "YX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -15836,16 +12516,11 @@ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "YZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Za" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -15859,10 +12534,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Zc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -15872,9 +12544,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "Zd" = ( /obj/structure/surface/table/reinforced/black, @@ -15890,18 +12560,13 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Zf" = ( /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook/cryo) "Zg" = ( /obj/structure/surface/table/almayer, @@ -15913,10 +12578,7 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Zh" = ( /obj/structure/surface/table/reinforced/black, @@ -15936,23 +12598,15 @@ /obj/structure/machinery/computer/card{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Zk" = ( -/turf/open/floor/almayer{ - desc = "There's a hatch above it, presumably to allow pods to drop in."; - icon_state = "test_floor4"; - name = "pod landing floor" - }, +/turf/open/floor/almayer/pod_landing_floor, /area/adminlevel/chinook) "Zl" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Zm" = ( /obj/structure/machinery/light{ @@ -15963,117 +12617,75 @@ "Zn" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Zo" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Zp" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; name = "\improper Airlock" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Zq" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Zr" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Zs" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "Zt" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "Zu" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/north, /area/space) "Zv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/adminlevel/chinook/shuttle) "Zw" = ( /obj/structure/closet/secure_closet/military_police, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Zx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Zy" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Zz" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "ZA" = ( /obj/structure/sign/safety/suit_storage{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "ZB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/adminlevel/chinook/engineering) "ZE" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ZF" = ( /obj/structure/sign/prop1{ @@ -16092,48 +12704,31 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ZI" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "ZJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/chinook/sec) "ZK" = ( /obj/structure/machinery/cryo_cell, /obj/effect/decal/medical_decals{ icon_state = "cryotop" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "ZL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "ZM" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ZN" = ( /obj/effect/decal/warning_stripes{ @@ -16143,10 +12738,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ZO" = ( /obj/structure/surface/table/almayer, @@ -16154,46 +12746,31 @@ pixel_y = 3 }, /obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "ZP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "ZQ" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "ZR" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "ZS" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ZT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/engineering) "ZV" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +/turf/open/floor/almayer/uscm/directional/east, /area/adminlevel/chinook/shuttle) "ZW" = ( /obj/structure/surface/table/almayer, @@ -16214,9 +12791,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "ZY" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/sec) "ZZ" = ( /turf/open/floor/almayer, diff --git a/maps/templates/baseone.dmm b/maps/templates/baseone.dmm index 471478fb17e5..c054c2310164 100644 --- a/maps/templates/baseone.dmm +++ b/maps/templates/baseone.dmm @@ -20,10 +20,7 @@ /obj/structure/machinery/faxmachine{ department = "CLASSIFIED" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/adminlevel/bunker01/caves) "ag" = ( /obj/structure/surface/table/reinforced, @@ -32,10 +29,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/north, /area/adminlevel/bunker01/command) "ah" = ( /obj/structure/filingcabinet/security, @@ -46,21 +40,15 @@ /area/adminlevel/bunker01/command) "aj" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/carpet/edge{ - dir = 9 - }, +/turf/open/floor/carpet/edge/northwest, /area/adminlevel/bunker01/command) "ak" = ( /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/adminlevel/bunker01/command) "al" = ( /obj/structure/safe, -/turf/open/floor/carpet/edge{ - dir = 5 - }, +/turf/open/floor/carpet/edge/northeast, /area/adminlevel/bunker01/bathroom) "am" = ( /turf/closed/wall, @@ -73,61 +61,40 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ao" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 4; name = "\improper Toilet" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ap" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aq" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ar" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "as" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "at" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "au" = ( /obj/structure/surface/table/reinforced, @@ -145,10 +112,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/bunker01/caves) "av" = ( /obj/structure/bed/chair/comfy{ @@ -195,9 +159,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/adminlevel/bunker01/command) "az" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -218,54 +180,37 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/adminlevel/bunker01/bathroom) "aB" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aC" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aE" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aF" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/caves) "aG" = ( /obj/structure/machinery/shower{ @@ -276,10 +221,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/caves) "aH" = ( /obj/structure/surface/table/reinforced, @@ -288,19 +230,13 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/adminlevel/bunker01/caves) "aI" = ( /obj/structure/machinery/power/apc/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/adminlevel/bunker01/command) "aJ" = ( /obj/structure/machinery/disposal, @@ -315,9 +251,7 @@ /obj/structure/sign/safety/terminal{ pixel_x = -32 }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/adminlevel/bunker01/command) "aL" = ( /obj/structure/pipes/vents/pump{ @@ -331,18 +265,13 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/adminlevel/bunker01/bathroom) "aN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -350,19 +279,13 @@ icon_state = "intact-supply" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aQ" = ( /turf/closed/wall, @@ -377,9 +300,7 @@ /obj/structure/surface/table/holotable/wood, /obj/item/clothing/mask/cigarette/cigar/havana, /obj/item/ashtray/glass, -/turf/open/floor/carpet/edge{ - dir = 10 - }, +/turf/open/floor/carpet/edge/southwest, /area/adminlevel/bunker01/command) "aT" = ( /obj/structure/closet/cabinet, @@ -389,9 +310,7 @@ "aU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 6 - }, +/turf/open/floor/carpet/edge/southeast, /area/adminlevel/bunker01/bathroom) "aV" = ( /obj/structure/sink{ @@ -402,10 +321,7 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aW" = ( /obj/structure/mirror{ @@ -416,18 +332,12 @@ pixel_x = 0; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aY" = ( /obj/structure/closet/secure_closet/personal, @@ -480,10 +390,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "bh" = ( /turf/closed/wall, @@ -564,62 +471,41 @@ "bx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "by" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bz" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/juicer, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bB" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/bunker01/hydroponics) "bC" = ( /obj/structure/surface/rack, /obj/item/storage/bag/plants, /obj/item/tool/shovel/spade, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/bunker01/hydroponics) "bD" = ( /obj/structure/machinery/hydro_floodlight, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/bunker01/hydroponics) "bE" = ( /obj/structure/bed, @@ -672,10 +558,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "bL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -686,16 +569,10 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bM" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bN" = ( /obj/structure/surface/table/reinforced, @@ -704,30 +581,21 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bO" = ( /obj/structure/machinery/light{ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "bP" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "bQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "bR" = ( /obj/structure/pipes/vents/pump{ @@ -842,10 +710,7 @@ dir = 5; icon_state = "intact-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cd" = ( /obj/structure/surface/table/reinforced, @@ -853,20 +718,14 @@ dir = 1; icon_state = "map-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "ce" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cf" = ( /obj/structure/surface/table/reinforced, @@ -875,10 +734,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cg" = ( /mob/living/simple_animal/chicken{ @@ -888,10 +744,7 @@ name = "\improper Charlie"; voice_name = "chicken" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "ch" = ( /obj/structure/pipes/vents/pump/on, @@ -904,10 +757,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "cj" = ( /obj/structure/closet/secure_closet/personal, @@ -960,40 +810,28 @@ "ct" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "cu" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/rollingpin, /obj/item/tool/kitchen/knife, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cv" = ( /obj/structure/machinery/processor, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cw" = ( /obj/structure/sign/safety/biolab, /turf/closed/wall, /area/adminlevel/bunker01/kitchen) "cx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "cy" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1004,10 +842,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "cA" = ( /turf/closed/wall, @@ -1031,10 +866,7 @@ "cF" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "cG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1045,10 +877,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1077,16 +906,11 @@ /obj/structure/machinery/power/apc/antag{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/bunker01/hydroponics) "cK" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/bunker01/hydroponics) "cL" = ( /obj/structure/surface/rack, @@ -1096,10 +920,7 @@ /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves) "cM" = ( /obj/structure/surface/rack, @@ -1115,10 +936,7 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cN" = ( /obj/structure/surface/rack, @@ -1127,40 +945,26 @@ /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cO" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cP" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cQ" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/storage) "cR" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cS" = ( /turf/open/mars_cave, @@ -1188,37 +992,23 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/caves) "cV" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/bunker01/storage) "cW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/bunker01/storage) "cX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/bunker01/storage) "cY" = ( /obj/structure/machinery/power/apc/antag{ dir = 4; pixel_x = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/storage) "cZ" = ( /turf/closed/wall/r_wall, @@ -1261,39 +1051,27 @@ /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/caves) "dg" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "dh" = ( /obj/structure/largecrate/supply/supplies/sandbags, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "di" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/storage) "dj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/bunker01/storage) "dk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1370,9 +1148,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dr" = ( /obj/structure/disposalpipe/segment, @@ -1384,9 +1160,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dt" = ( /obj/structure/machinery/firealarm{ @@ -1398,9 +1172,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "du" = ( /turf/closed/wall/r_wall, @@ -1410,15 +1182,10 @@ /area/adminlevel/bunker01/engineering) "dw" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "dx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/storage) "dy" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1429,10 +1196,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/storage) "dA" = ( /obj/structure/sign/safety/storage{ @@ -1515,9 +1279,7 @@ input_level = 50000; inputting = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "dL" = ( /obj/structure/machinery/power/smes/buildable/charged{ @@ -1529,32 +1291,22 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "dM" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/storage) "dN" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/bunker01/storage) "dO" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1592,20 +1344,14 @@ /obj/structure/closet/hydrant{ pixel_x = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "dU" = ( /obj/structure/machinery/power/terminal{ dir = 1; icon_state = "term" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/bunker01/engineering) "dV" = ( /obj/structure/sign/safety/electronics, @@ -1672,15 +1418,11 @@ /area/adminlevel/bunker01/mainroom) "ed" = ( /obj/structure/largecrate/supply/weapons/m56d, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "ee" = ( /obj/structure/closet/crate/secure/mortar_ammo/mortar_kit, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "ef" = ( /turf/open/mars_cave, @@ -1690,31 +1432,19 @@ dir = 8 }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/bunker01/engineering) "eh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/adminlevel/bunker01/engineering) "ei" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/bunker01/engineering) "ej" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "ek" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -1726,10 +1456,7 @@ /turf/open/floor/almayer, /area/adminlevel/bunker01/engineering) "el" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/engineering) "em" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1748,10 +1475,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/engineering) "eo" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, @@ -1780,9 +1504,7 @@ dir = 8; pixel_x = -25 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "er" = ( /obj/structure/largecrate/supply/supplies/flares, @@ -1790,17 +1512,13 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "es" = ( /obj/structure/closet/crate/secure/mortar_ammo/full{ name = "\improper M402 mortar ammo crate" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "et" = ( /obj/structure/surface/table/reinforced, @@ -1818,10 +1536,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "eu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1863,10 +1578,7 @@ "ex" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/bunker01/engineering) "ey" = ( /obj/structure/disposalpipe/segment, @@ -1890,24 +1602,18 @@ /obj/effect/spawner/random/toolbox, /obj/structure/disposalpipe/segment, /obj/item/clothing/gloves/yellow, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eB" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eC" = ( /obj/structure/machinery/light/small{ pixel_y = 0 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eD" = ( /obj/structure/sign/safety/electronics, @@ -1942,10 +1648,7 @@ dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/bunker01/security) "eJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1955,10 +1658,7 @@ "eK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/bunker01/security) "eL" = ( /obj/structure/machinery/power/apc/antag{ @@ -2011,16 +1711,10 @@ /area/adminlevel/bunker01/security) "eS" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/bunker01/security) "eT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/bunker01/security) "eU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2220,20 +1914,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/adminlevel/bunker01/security) "fo" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "fp" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/bunker01/security) "fq" = ( /obj/structure/sign/safety/hazard, @@ -2248,10 +1935,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fs" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2262,10 +1946,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ft" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2276,10 +1957,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fu" = ( /obj/structure/surface/table/reinforced, @@ -2291,10 +1969,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fv" = ( /obj/structure/surface/table/reinforced, @@ -2306,9 +1981,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "fw" = ( /turf/closed/wall/r_wall, @@ -2322,9 +1995,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -2344,9 +2015,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fz" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2356,9 +2025,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fA" = ( /turf/closed/wall/rock/brown, @@ -2383,50 +2050,31 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/bunker01/medbay) "fF" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "fH" = ( /obj/structure/window/framed/colony, /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fI" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fJ" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2434,49 +2082,33 @@ icon_state = "intact-supply" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fL" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fM" = ( /obj/structure/machinery/medical_pod/autodoc, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fN" = ( /obj/structure/machinery/autodoc_console, /obj/structure/sign/safety/autodoc{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fO" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fP" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "fQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -2502,20 +2134,14 @@ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/adminlevel/bunker01/security) "fT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/bunker01/security) "fU" = ( /obj/structure/bed, @@ -2523,9 +2149,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/bunker01/security) "fV" = ( /obj/structure/machinery/chem_dispenser{ @@ -2537,16 +2161,10 @@ pixel_x = -24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "fW" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/bunker01/medbay) "fX" = ( /obj/structure/surface/table/reinforced, @@ -2559,27 +2177,21 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1; icon_state = "map-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "ga" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -2592,16 +2204,12 @@ icon_state = "intact-supply" }, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gb" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2613,10 +2221,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gd" = ( /obj/structure/toilet{ @@ -2636,23 +2241,17 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gh" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gi" = ( /obj/structure/toilet{ @@ -2662,16 +2261,11 @@ /obj/structure/machinery/light/small{ pixel_y = 0 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gj" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "gk" = ( /obj/structure/surface/table/reinforced, @@ -2682,9 +2276,7 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gl" = ( /obj/structure/surface/table/reinforced, @@ -2703,45 +2295,32 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "go" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gq" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gr" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2749,10 +2328,7 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gs" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -2784,17 +2360,13 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gx" = ( /obj/structure/machinery/iv_drip, @@ -2802,19 +2374,14 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "gy" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gz" = ( /obj/structure/bed, @@ -2824,21 +2391,15 @@ pixel_y = -23 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gA" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gB" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gC" = ( /obj/structure/machinery/autodoc_console, @@ -2846,17 +2407,12 @@ pixel_y = -32 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gD" = ( /obj/structure/machinery/autodoc_console, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gE" = ( /turf/open/floor/almayer, @@ -2874,17 +2430,11 @@ /obj/item/storage/box/masks, /obj/item/storage/box/gloves, /obj/item/storage/box/gloves, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gH" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "gI" = ( /obj/structure/window/framed/colony, @@ -2895,10 +2445,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 2; - icon_state = "green" - }, +/turf/open/floor/almayer/green/south, /area/adminlevel/bunker01/medbay) "gJ" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2909,9 +2456,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gK" = ( /obj/structure/window/framed/colony, @@ -2922,9 +2467,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "gL" = ( /obj/structure/window/framed/colony, @@ -2935,9 +2478,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "gM" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2948,9 +2489,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gN" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2963,9 +2502,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gO" = ( /obj/structure/pipes/vents/pump{ @@ -3000,28 +2537,20 @@ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "gS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gU" = ( /obj/structure/machinery/door_control{ @@ -3029,18 +2558,13 @@ name = "Surgery Door Release"; pixel_x = -23 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gV" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "gW" = ( /obj/structure/machinery/door_control{ @@ -3048,10 +2572,7 @@ name = "Surgery Door Release"; pixel_x = -23 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gX" = ( /obj/structure/morgue/crematorium{ @@ -3114,16 +2635,11 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "hb" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "hc" = ( /obj/structure/pipes/vents/pump{ @@ -3135,10 +2651,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "hd" = ( /obj/structure/machinery/light{ @@ -3148,19 +2661,14 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "he" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "hf" = ( /obj/structure/sink{ @@ -3169,10 +2677,7 @@ pixel_x = 11; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "hg" = ( /obj/structure/machinery/light/small{ @@ -3205,16 +2710,11 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "hj" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hk" = ( /obj/structure/sign/safety/medical{ @@ -3222,28 +2722,18 @@ pixel_y = -32 }, /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hl" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hm" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "hn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "ho" = ( /obj/structure/machinery/optable, @@ -3253,9 +2743,7 @@ pixel_y = -23 }, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hp" = ( /obj/structure/surface/table/reinforced, @@ -3264,10 +2752,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/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "hq" = ( /obj/structure/machinery/optable, @@ -3277,9 +2762,7 @@ pixel_y = -23 }, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) (1,1,1) = {" diff --git a/maps/templates/basetwo.dmm b/maps/templates/basetwo.dmm index abc2af29643d..890d433cb575 100644 --- a/maps/templates/basetwo.dmm +++ b/maps/templates/basetwo.dmm @@ -64,75 +64,46 @@ /area/adminlevel/bunker01/medbay) "an" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "ao" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ap" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "aq" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ar" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "as" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "at" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "au" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "av" = ( /obj/structure/machinery/autodoc_console{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "aw" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "ax" = ( /turf/closed/wall/r_wall/bunker, @@ -148,67 +119,40 @@ /area/adminlevel/bunker01/mainroom) "az" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "aA" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aB" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aC" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aD" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/bunker01/medbay) "aE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "aF" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/bunker01/engineering) "aG" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "aH" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "aI" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/bunker01/engineering) "aJ" = ( /turf/open/floor/almayer, @@ -218,26 +162,16 @@ /area/adminlevel/bunker01/mainroom) "aL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "aN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aO" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/bunker01/medbay) "aP" = ( /obj/structure/surface/rack, @@ -246,19 +180,13 @@ /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "aQ" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/engineering) "aR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/bunker01/engineering) "aS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -268,56 +196,38 @@ req_one_access = null }, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aT" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "aU" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aV" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aW" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aX" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aY" = ( /obj/structure/machinery/autodoc_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aZ" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "ba" = ( /obj/structure/surface/rack, @@ -333,10 +243,7 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "bb" = ( /turf/open/floor/plating/plating_catwalk, @@ -347,9 +254,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/engineering) "bd" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -358,15 +263,11 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "be" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bf" = ( /obj/structure/surface/rack, @@ -376,10 +277,7 @@ /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "bg" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, @@ -388,27 +286,17 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "bi" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "bj" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "bk" = ( /obj/structure/surface/table/reinforced, @@ -448,56 +336,36 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "bl" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "bm" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "bn" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/bunker01/engineering) "bo" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/bunker01/engineering) "bp" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/gloves/yellow, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/bunker01/engineering) "bq" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/bunker01/engineering) "br" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "bs" = ( /obj/structure/machinery/door_control{ @@ -505,9 +373,7 @@ name = "Base Shutters"; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "bt" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, @@ -516,9 +382,7 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bu" = ( /turf/closed/wall/r_wall/bunker, @@ -528,9 +392,7 @@ id = "base_blastdoor"; name = "\improper Bunker Blast Doors" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/bunker01/mainroom) "bw" = ( /obj/structure/machinery/smartfridge/secure/medbay, @@ -539,9 +401,7 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bx" = ( /obj/structure/machinery/door_control{ @@ -550,17 +410,12 @@ pixel_x = -23; pixel_y = -23 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "by" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "bz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -569,9 +424,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "bA" = ( /obj/structure/machinery/cm_vending/clothing/antag, @@ -583,34 +436,25 @@ /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bC" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bD" = ( /obj/structure/largecrate/supply/supplies/sandbags, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bE" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "bF" = ( /obj/structure/surface/table/reinforced, @@ -623,9 +467,7 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bG" = ( /obj/structure/surface/table/reinforced, @@ -638,15 +480,10 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "bI" = ( /obj/structure/surface/table/reinforced, @@ -662,38 +499,26 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "bJ" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bK" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bL" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "bM" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bN" = ( /obj/structure/window/reinforced{ @@ -704,18 +529,14 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bO" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bP" = ( /turf/closed/wall/r_wall/bunker, @@ -729,9 +550,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/gear) "bS" = ( /obj/structure/machinery/cm_vending/gear/antag, @@ -742,9 +561,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bU" = ( /obj/structure/window/reinforced{ @@ -755,18 +572,14 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bV" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bW" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, @@ -778,9 +591,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/storage) "bY" = ( /turf/open/floor/plating/plating_catwalk, @@ -795,27 +606,16 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/mainroom) "cc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/mainroom) "cd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/mainroom) "ce" = ( /obj/structure/machinery/door/airlock/multi_tile/secure{ @@ -823,33 +623,21 @@ name = "\improper Entrance"; req_access_txt = "201" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cf" = ( /obj/structure/largecrate/supply/weapons/m56d, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cg" = ( /obj/structure/closet/crate/secure/mortar_ammo/mortar_kit, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "ch" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/mainroom) "ci" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/mainroom) "cj" = ( /turf/open/mars_cave, @@ -860,17 +648,13 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cl" = ( /obj/structure/closet/crate/secure/mortar_ammo/full{ name = "\improper M402 mortar ammo crate" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cm" = ( /obj/structure/machinery/door_control{ @@ -922,9 +706,7 @@ id = "base_1_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cs" = ( /obj/structure/window_frame/colony/reinforced, @@ -932,9 +714,7 @@ id = "base_2_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "ct" = ( /obj/structure/window_frame/colony/reinforced, @@ -942,9 +722,7 @@ id = "base_3_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cu" = ( /obj/structure/window_frame/colony/reinforced, @@ -952,9 +730,7 @@ id = "base_4_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cv" = ( /turf/closed/wall/r_wall/bunker, @@ -966,18 +742,13 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/caves/outpost) "cx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves/outpost) "cy" = ( /turf/open/floor/almayer, @@ -986,10 +757,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/caves/outpost) "cA" = ( /obj/structure/window/framed/colony/reinforced, @@ -997,10 +765,7 @@ /area/adminlevel/bunker01/caves/outpost) "cB" = ( /obj/structure/barricade/plasteel, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cC" = ( /obj/structure/barricade/metal/wired, @@ -1008,64 +773,37 @@ /area/adminlevel/bunker01/caves/outpost) "cD" = ( /obj/structure/barricade/plasteel, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves/outpost) "cF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/caves/outpost) "cG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/caves/outpost) "cH" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cI" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cL" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cM" = ( /obj/structure/barricade/plasteel/wired, @@ -1073,10 +811,7 @@ /area/adminlevel/bunker01/caves/outpost) "cN" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cO" = ( /obj/structure/barricade/plasteel, @@ -1131,59 +866,38 @@ /area/adminlevel/bunker01/caves/xeno) "cY" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cZ" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "da" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "db" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/juicer, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dc" = ( /turf/closed/wall, /area/adminlevel/bunker01/hydroponics) "dd" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/bunker01/hydroponics) "de" = ( /obj/structure/surface/rack, /obj/item/storage/bag/plants, /obj/item/tool/shovel/spade, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/bunker01/hydroponics) "df" = ( /obj/structure/machinery/hydro_floodlight, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/bunker01/hydroponics) "dg" = ( /obj/effect/alien/weeds/node/pylon/core{ @@ -1196,15 +910,10 @@ name = "\improper Kitchen"; req_access_txt = "201" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/kitchen) "di" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dj" = ( /obj/structure/surface/table/reinforced, @@ -1213,26 +922,17 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "dl" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "dm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "dn" = ( /obj/structure/surface/table/reinforced, @@ -1241,10 +941,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "do" = ( /turf/closed/wall/r_wall/bunker, @@ -1254,32 +951,21 @@ dir = 2; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/breakroom) "dq" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dr" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/rollingpin, /obj/item/tool/kitchen/knife, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "ds" = ( /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dt" = ( /obj/structure/sign/safety/biolab, @@ -1287,10 +973,7 @@ /area/adminlevel/bunker01/hydroponics) "du" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "dv" = ( /turf/open/floor/wood, @@ -1312,10 +995,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dA" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1325,16 +1005,11 @@ /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "dB" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/bunker01/hydroponics) "dC" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/bunker01/hydroponics) "dD" = ( /obj/structure/bed/chair, @@ -1381,9 +1056,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/breakroom) (1,1,1) = {" diff --git a/maps/templates/lazy_templates/clf_ert_station.dmm b/maps/templates/lazy_templates/clf_ert_station.dmm index 3aa8c800327f..c1ec79d8770c 100644 --- a/maps/templates/lazy_templates/clf_ert_station.dmm +++ b/maps/templates/lazy_templates/clf_ert_station.dmm @@ -31,26 +31,19 @@ /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "av" = ( /obj/structure/closet/crate, /obj/item/explosive/grenade/phosphorus/clf, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) "ax" = ( /turf/closed/wall/rock/brown, /area/adminlevel/ert_station/clf_station) "az" = ( /obj/structure/prop/brazier/frame/full, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/adminlevel/ert_station/clf_station) "aA" = ( /obj/structure/surface/table/woodentable/poor, @@ -87,9 +80,7 @@ /obj/structure/machinery/light/small/built{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "aO" = ( /obj/structure/stairs/perspective{ @@ -142,9 +133,7 @@ "cc" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "ce" = ( /obj/item/trash/chips, @@ -160,32 +149,21 @@ /obj/structure/mirror{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/adminlevel/ert_station/clf_station) "cB" = ( /obj/vehicle/powerloader/ft, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "cH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "dd" = ( -/turf/open/gm/coast{ - dir = 1 - }, +/turf/open/gm/coast/south, /area/adminlevel/ert_station/clf_station) "dg" = ( /obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "dI" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -256,9 +234,7 @@ "fd" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, /obj/structure/machinery/light/small/built, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "fk" = ( /obj/structure/pipes/vents/pump, @@ -294,9 +270,7 @@ "gi" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/whiskey, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "gj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, @@ -304,17 +278,13 @@ /area/adminlevel/ert_station/clf_station) "gN" = ( /obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "hd" = ( /obj/structure/reagent_dispensers/beerkeg{ density = 0 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "hr" = ( /obj/structure/machinery/light/small/built{ @@ -355,9 +325,7 @@ /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "hO" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -421,9 +389,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "jp" = ( /obj/structure/surface/table/woodentable/poor, @@ -517,10 +483,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "lT" = ( /obj/structure/platform/kutjevo{ @@ -548,10 +511,7 @@ /area/adminlevel/ert_station/clf_station) "me" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "mk" = ( /obj/structure/platform_decoration/kutjevo{ @@ -567,9 +527,7 @@ }, /obj/structure/surface/table/reinforced, /obj/item/spacecash/c50, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "mt" = ( /obj/structure/surface/table/woodentable/poor, @@ -586,9 +544,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "ne" = ( /obj/structure/bed{ @@ -620,9 +576,7 @@ "nC" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "nJ" = ( /obj/item/clothing/shoes/jackboots, @@ -651,10 +605,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "om" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner2" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/adminlevel/ert_station/clf_station) "ow" = ( /obj/structure/window/reinforced{ @@ -682,9 +633,7 @@ pixel_y = 13 }, /obj/item/stock_parts/subspace/crystal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "oy" = ( /obj/item/trash/candy, @@ -692,10 +641,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "oI" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "oN" = ( /obj/structure/flora/jungle/vines, @@ -718,9 +664,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "pE" = ( /obj/structure/platform/kutjevo, @@ -730,36 +674,25 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "pF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "pY" = ( /obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder/east, /area/adminlevel/ert_station/clf_station) "qa" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "qb" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "ql" = ( /obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "qy" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -774,9 +707,7 @@ /area/adminlevel/ert_station/clf_station) "rz" = ( /obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "rD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -809,10 +740,7 @@ /area/adminlevel/ert_station/clf_station) "sC" = ( /obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "sK" = ( /obj/structure/surface/table/woodentable/poor, @@ -840,9 +768,7 @@ /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "tt" = ( /obj/structure/largecrate/random/barrel/red, @@ -904,9 +830,7 @@ /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "uF" = ( /obj/structure/platform/kutjevo{ @@ -975,9 +899,7 @@ /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) "wW" = ( -/turf/open/gm/coast{ - dir = 9 - }, +/turf/open/gm/coast/south_east, /area/adminlevel/ert_station/clf_station) "xi" = ( /obj/structure/platform/kutjevo{ @@ -987,10 +909,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "xE" = ( -/turf/open/gm/coast{ - dir = 8; - icon_state = "beachcorner2" - }, +/turf/open/gm/coast/beachcorner2/south_east, /area/adminlevel/ert_station/clf_station) "xJ" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -1012,9 +931,7 @@ pixel_y = -10 }, /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/adminlevel/ert_station/clf_station) "xO" = ( /obj/item/holder/cat/kitten{ @@ -1042,9 +959,7 @@ "yE" = ( /obj/structure/closet/crate, /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "yH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -1058,18 +973,14 @@ /obj/item/ammo_magazine/pistol/clfpistol, /obj/item/ammo_magazine/pistol/clfpistol, /obj/item/ammo_magazine/pistol/clfpistol, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "yO" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "yU" = ( /turf/open/gm/river, @@ -1083,9 +994,7 @@ /area/adminlevel/ert_station/clf_station) "yY" = ( /obj/structure/prop/brazier/frame/full, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/adminlevel/ert_station/clf_station) "zy" = ( /obj/structure/machinery/light/small/built{ @@ -1117,10 +1026,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "Aj" = ( /obj/structure/flora/jungle/planttop1, @@ -1130,9 +1036,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/dirtgrassborder{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder/east, /area/adminlevel/ert_station/clf_station) "AK" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1193,9 +1097,7 @@ /area/adminlevel/ert_station/clf_station) "Bx" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "BB" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -1213,9 +1115,7 @@ /obj/structure/machinery/microwave{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "BQ" = ( /obj/structure/platform/kutjevo{ @@ -1267,9 +1167,7 @@ /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) "DF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "DN" = ( /obj/structure/flora/jungle/vines/heavy, @@ -1294,9 +1192,7 @@ /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) "Ee" = ( -/turf/open/gm/dirtgrassborder{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder/east, /area/adminlevel/ert_station/clf_station) "Ez" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -1315,9 +1211,7 @@ /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "Fj" = ( /obj/structure/surface/table/woodentable/poor, @@ -1368,10 +1262,7 @@ /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) "GV" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/west, /area/adminlevel/ert_station/clf_station) "Hs" = ( /obj/docking_port/stationary/emergency_response/idle_port1, @@ -1388,15 +1279,10 @@ /obj/structure/machinery/power/apc/antag{ dir = 1 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "Ie" = ( -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner2" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/adminlevel/ert_station/clf_station) "Ig" = ( /obj/structure/largecrate/black_market/clf_supplies, @@ -1418,23 +1304,16 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "IH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) "IT" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "IW" = ( /obj/structure/closet/crate, /obj/item/clothing/mask/gas/swat, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "Jg" = ( /obj/structure/platform/kutjevo, @@ -1482,10 +1361,7 @@ /area/adminlevel/ert_station/clf_station) "Me" = ( /obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "MD" = ( /obj/structure/platform/kutjevo{ @@ -1532,17 +1408,13 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "MQ" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "MT" = ( /obj/item/tank/anesthetic, @@ -1565,10 +1437,7 @@ /area/adminlevel/ert_station/clf_station) "Ng" = ( /obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "Ni" = ( /obj/structure/surface/table/woodentable/poor, @@ -1588,9 +1457,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "NB" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/adminlevel/ert_station/clf_station) "NV" = ( /obj/structure/flora/jungle/vines/heavy, @@ -1598,9 +1465,7 @@ /area/adminlevel/ert_station/clf_station) "NY" = ( /obj/effect/decal/cleanable/tomato_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Of" = ( /obj/structure/surface/table/reinforced, @@ -1616,16 +1481,11 @@ /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Oi" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "Op" = ( /obj/structure/platform/kutjevo{ @@ -1660,9 +1520,7 @@ pixel_y = 13 }, /obj/structure/machinery/light/small/built, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "Oy" = ( /obj/item/spacecash/c1, @@ -1702,10 +1560,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "OY" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "OZ" = ( /obj/structure/platform/kutjevo{ @@ -1715,10 +1570,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "Ph" = ( -/turf/open/gm/coast{ - dir = 4; - icon_state = "beachcorner" - }, +/turf/open/gm/coast/beachcorner/south_east, /area/adminlevel/ert_station/clf_station) "Pj" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1730,9 +1582,7 @@ /mob/living/simple_animal/cat{ name = "Edwin" }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "PC" = ( /obj/item/trash/candle, @@ -1773,9 +1623,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "Qx" = ( -/turf/open/gm/coast{ - dir = 8 - }, +/turf/open/gm/coast/east, /area/adminlevel/ert_station/clf_station) "QA" = ( /obj/structure/platform/kutjevo{ @@ -1823,16 +1671,11 @@ /area/adminlevel/ert_station/clf_station) "Rr" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) "Rv" = ( /obj/structure/curtain/red, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "RB" = ( /obj/structure/flora/jungle/plantbot1{ @@ -1847,9 +1690,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Sc" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1863,17 +1704,13 @@ /obj/structure/machinery/light/small/built{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/adminlevel/ert_station/clf_station) "Sj" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) "Sy" = ( /obj/structure/platform/kutjevo, @@ -1888,15 +1725,10 @@ /area/adminlevel/ert_station/clf_station) "Tk" = ( /obj/structure/bed/chair, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) "Tr" = ( -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "Tt" = ( /obj/structure/platform/kutjevo, @@ -1906,10 +1738,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "Tu" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/east, /area/adminlevel/ert_station/clf_station) "TM" = ( /obj/structure/machinery/recharger, @@ -1932,9 +1761,7 @@ /obj/structure/closet/crate, /obj/item/clothing/head/welding, /obj/item/tool/weldingtool/experimental, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "Um" = ( /obj/structure/largecrate/random/secure, @@ -1945,15 +1772,10 @@ /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) "Uu" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/adminlevel/ert_station/clf_station) "UB" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/adminlevel/ert_station/clf_station) "Vf" = ( /obj/structure/largecrate/black_market/confiscated_weaponry, @@ -1961,9 +1783,7 @@ /area/adminlevel/ert_station/clf_station) "Vi" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast{ - dir = 8 - }, +/turf/open/gm/coast/east, /area/adminlevel/ert_station/clf_station) "Vk" = ( /obj/structure/surface/table/woodentable/poor, @@ -1976,9 +1796,7 @@ /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "VE" = ( /obj/structure/platform/kutjevo{ @@ -2022,9 +1840,7 @@ /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Wz" = ( /obj/structure/closet/crate, @@ -2057,9 +1873,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "Xp" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Xv" = ( /obj/structure/flora/jungle/plantbot1, @@ -2092,9 +1906,7 @@ /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "YB" = ( -/turf/open/gm/grass{ - icon_state = "grass2" - }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "Ze" = ( /obj/structure/bed/chair{ @@ -2102,16 +1914,12 @@ }, /obj/item/reagent_container/food/drinks/flask/barflask, /obj/structure/machinery/light/small/built, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "Zj" = ( /obj/structure/closet/crate, /obj/item/reagent_container/food/snacks/appletart, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "ZE" = ( /obj/structure/surface/table/woodentable/poor, diff --git a/maps/templates/lazy_templates/freelancer_ert_station.dmm b/maps/templates/lazy_templates/freelancer_ert_station.dmm index 74c368e4f0b6..61bfe2961c48 100644 --- a/maps/templates/lazy_templates/freelancer_ert_station.dmm +++ b/maps/templates/lazy_templates/freelancer_ert_station.dmm @@ -5,10 +5,7 @@ name = "\improper Response Team Automated Gear Rack"; use_snowflake_points = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "aj" = ( /obj/structure/machinery/cryopod, @@ -19,9 +16,7 @@ /area/adminlevel/ert_station) "aA" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "bd" = ( /obj/structure/surface/table/woodentable/fancy, @@ -42,10 +37,7 @@ /obj/item/device/defibrillator/upgraded, /obj/item/clothing/glasses/hud/health, /obj/item/roller, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) "bT" = ( /obj/effect/decal/warning_stripes{ @@ -59,28 +51,20 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "cL" = ( /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) "cR" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station) "cS" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/ert_station) "de" = ( /obj/structure/bed/chair{ @@ -92,30 +76,20 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "dz" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "dI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "dJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station) "dL" = ( /obj/structure/sign/safety, @@ -123,9 +97,7 @@ /area/adminlevel/ert_station) "dS" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "ee" = ( /obj/structure/surface/table/reinforced/prison, @@ -133,9 +105,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "em" = ( /obj/structure/machinery/cm_vending/sorted/walkman, @@ -151,9 +121,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "Restroom" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "eN" = ( /obj/structure/disposalpipe/segment{ @@ -164,15 +132,11 @@ /area/adminlevel/ert_station) "fX" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "fY" = ( /obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "gi" = ( /obj/structure/surface/table/woodentable/fancy, @@ -184,10 +148,7 @@ /area/adminlevel/ert_station) "gm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "gI" = ( /obj/structure/sign/poster/clf, @@ -211,24 +172,18 @@ pixel_x = -9; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "hl" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "hr" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "hs" = ( /obj/structure/sign/safety/maint, @@ -243,10 +198,7 @@ dir = 4; unacidable = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "hE" = ( /obj/structure/barricade/handrail, @@ -259,15 +211,10 @@ /turf/open/floor/carpet, /area/adminlevel/ert_station) "in" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "io" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "ju" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess, @@ -278,15 +225,11 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "jJ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "jZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -298,21 +241,14 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "kn" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "kZ" = ( /obj/item/prop/helmetgarb/rosary, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "lp" = ( /obj/structure/disposalpipe/segment{ @@ -321,18 +257,13 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "lx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/adminlevel/ert_station) "lP" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "lQ" = ( /obj/structure/sign/safety/debark_lounge{ @@ -353,36 +284,25 @@ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "mX" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "nx" = ( /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "nU" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "oc" = ( /obj/structure/surface/table/reinforced/prison, @@ -391,16 +311,11 @@ pixel_x = 11; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station) "oj" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "ou" = ( /turf/open/floor/wood/ship, @@ -410,10 +325,7 @@ /turf/open/floor/carpet, /area/adminlevel/ert_station) "oL" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/ert_station) "pj" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -424,9 +336,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "pK" = ( /obj/structure/surface/table/woodentable/fancy, @@ -438,18 +348,13 @@ "pX" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/effect/spider/stickyweb, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station) "qt" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "qV" = ( /obj/structure/sign/poster/music, @@ -457,9 +362,7 @@ /area/adminlevel/ert_station) "qX" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "rN" = ( /turf/closed/wall/mineral/gold, @@ -468,10 +371,7 @@ /obj/structure/sign/goldenplaque{ pixel_y = 27 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "su" = ( /obj/structure/bed/chair{ @@ -481,18 +381,13 @@ /area/adminlevel/ert_station) "sy" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station) "tx" = ( /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "tA" = ( /obj/structure/bed, @@ -509,9 +404,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "um" = ( /obj/structure/surface/table/reinforced/prison, @@ -521,10 +414,7 @@ name = "Surgery Cleaner" }, /obj/item/storage/box/monkeycubes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) "uq" = ( /turf/open/floor/carpet, @@ -539,9 +429,7 @@ "vM" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "vO" = ( /obj/structure/sign/poster{ @@ -550,76 +438,55 @@ name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "vS" = ( /obj/structure/machinery/chem_master, /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "wd" = ( /obj/structure/window/framed/colony, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "wv" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "wF" = ( /obj/structure/closet{ name = "boxing attire" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "xn" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/ert_station) "xN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "xR" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "yq" = ( -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "yw" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/ert_station) "yP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -634,15 +501,11 @@ /area/adminlevel/ert_station) "zz" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "zR" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Aw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto, @@ -655,10 +518,7 @@ /turf/open/floor/carpet, /area/adminlevel/ert_station) "AJ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/ert_station) "AV" = ( /obj/structure/machinery/newscaster/security_unit, @@ -669,23 +529,17 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "BL" = ( /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "Cm" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "CF" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -693,20 +547,14 @@ }, /obj/structure/bed/sofa/south/grey/right, /obj/item/trash/buritto, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "CJ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "CP" = ( /obj/effect/decal/warning_stripes{ @@ -733,10 +581,7 @@ use_power = 0; use_snowflake_points = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Ey" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -746,9 +591,7 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "EK" = ( /obj/structure/janitorialcart, @@ -760,9 +603,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Fg" = ( /turf/closed/wall/r_wall/unmeltable, @@ -774,10 +615,7 @@ /turf/open/floor/carpet, /area/adminlevel/ert_station) "FB" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "FQ" = ( /obj/structure/disposalpipe/junction{ @@ -786,10 +624,7 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) "FZ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/ert_station) "Gh" = ( /obj/structure/bed/stool, @@ -800,9 +635,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Gu" = ( /obj/structure/machinery/vending/dinnerware, @@ -812,10 +645,7 @@ /obj/structure/closet/secure_closet/brig, /obj/item/book/manual/marine_law, /obj/item/restraint/handcuffs, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) "Hj" = ( /obj/structure/sign/safety/medical, @@ -826,24 +656,16 @@ /area/adminlevel/ert_station) "Hy" = ( /obj/item/newspaper, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "HI" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station) "HN" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/ert_station) "HR" = ( /obj/structure/disposalpipe/segment{ @@ -853,9 +675,7 @@ /area/adminlevel/ert_station) "HS" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Ih" = ( /obj/structure/noticeboard{ @@ -872,27 +692,20 @@ /area/adminlevel/ert_station) "IG" = ( /obj/structure/toilet, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "IP" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station) "Jg" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Jn" = ( /obj/structure/sign/safety/bathunisex{ @@ -918,31 +731,20 @@ pixel_y = 27 }, /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "Kp" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/ert_station) "Kq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Kt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/ert_station) "KK" = ( /obj/structure/surface/table/reinforced, @@ -954,15 +756,11 @@ pixel_x = -8 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "KN" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Lh" = ( /turf/open/space/basic, @@ -970,24 +768,17 @@ "Li" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station) "Lt" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "LN" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "Mj" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1002,44 +793,29 @@ "Ns" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/ert_station) "Of" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) "Os" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "OA" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Pb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) "Pd" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Pn" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1049,15 +825,7 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"PC" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "PP" = ( /obj/structure/flora/pottedplant{ @@ -1066,34 +834,22 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station) "Qc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station) "Qi" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Qv" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "QQ" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) "Rb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "Rk" = ( /obj/structure/sign/poster/art, @@ -1101,52 +857,37 @@ /area/adminlevel/ert_station) "Rz" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "RC" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "RG" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/ert_station) "RO" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/ert_station) "RW" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "Sh" = ( /turf/closed/wall, /area/adminlevel/ert_station) "Sk" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station) "Su" = ( /obj/structure/closet/cabinet, @@ -1157,89 +898,61 @@ pixel_y = 30 }, /obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "SH" = ( /obj/structure/sign/poster{ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "SL" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station) "SP" = ( /obj/structure/machinery/gibber{ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Ta" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/ert_station) "Th" = ( /turf/open/floor/plating, /area/adminlevel/ert_station) "TM" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "TV" = ( /obj/structure/sign/poster/hunk, /obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) "Un" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) "Ux" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "UT" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) "Vd" = ( /obj/structure/surface/table/woodentable, /obj/item/pizzabox/meat{ pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) "Vz" = ( /obj/structure/sign/nosmoking_2, @@ -1256,9 +969,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "VR" = ( /obj/effect/decal/warning_stripes{ @@ -1274,10 +985,7 @@ /obj/structure/machinery/cm_vending/clothing/antag{ name = "\improper Response Team Automated Equipment Rack" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "VZ" = ( /obj/structure/barricade/handrail{ @@ -1290,38 +998,27 @@ /area/adminlevel/ert_station) "Wf" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "Wl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station) "Wn" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station) "WR" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Xb" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "Xx" = ( /obj/structure/barricade/handrail{ @@ -1336,9 +1033,7 @@ phone_id = "Unknown Signal"; pixel_x = 14 }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "XQ" = ( /obj/structure/flora/pottedplant{ @@ -1354,9 +1049,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/adminlevel/ert_station) "YM" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1379,9 +1072,7 @@ /obj/structure/machinery/microwave{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "Zp" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -1393,9 +1084,7 @@ /obj/structure/sign/safety/med_cryo{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "ZS" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -2045,8 +1734,8 @@ JW mM io Hy -PC -PC +uq +uq dI lp yq @@ -2083,9 +1772,9 @@ Sh Sy mM io -PC -PC -PC +uq +uq +uq dI lp yq @@ -2122,7 +1811,7 @@ Sh CF yq io -PC +uq rN rS dI @@ -2161,8 +1850,8 @@ wd Vd mM io -PC -PC +uq +uq kZ dI lp @@ -2200,9 +1889,9 @@ wd dI mM io -PC -PC -PC +uq +uq +uq dI lp io diff --git a/maps/templates/lazy_templates/pizza_ert_station.dmm b/maps/templates/lazy_templates/pizza_ert_station.dmm index b154256c0459..c52f388356c8 100644 --- a/maps/templates/lazy_templates/pizza_ert_station.dmm +++ b/maps/templates/lazy_templates/pizza_ert_station.dmm @@ -26,9 +26,7 @@ /obj/item/spacecash/c500, /obj/item/spacecash/c500, /obj/item/spacecash/c500, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "ah" = ( /obj/structure/prop/invuln{ @@ -82,9 +80,7 @@ layer = 4.2; pixel_y = 36 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "an" = ( /obj/structure/bed/chair/bolted{ @@ -106,26 +102,20 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "aq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "aA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "aD" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -146,9 +136,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "aP" = ( /obj/structure/prop/souto_land/pole{ @@ -159,9 +147,7 @@ dir = 9 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "aS" = ( /obj/effect/decal/warning_stripes{ @@ -174,9 +160,7 @@ pixel_y = -32; pixel_x = 15 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/adminlevel/ert_station/pizza_station) "bd" = ( /obj/structure/prop/invuln{ @@ -200,9 +184,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/pizza_station) "bo" = ( /obj/structure/machinery/shower{ @@ -226,16 +208,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "bT" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "bU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -246,18 +224,13 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "cq" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "cr" = ( /obj/structure/surface/table/reinforced, @@ -275,9 +248,7 @@ /obj/item/reagent_container/food/condiment/peppermill{ pixel_x = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "cE" = ( /obj/structure/surface/table/reinforced/cloth, @@ -285,9 +256,7 @@ pixel_y = 4; pixel_x = -2 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "cI" = ( /obj/structure/disposalpipe/segment{ @@ -296,9 +265,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "cK" = ( /obj/effect/decal/warning_stripes{ @@ -311,10 +278,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/adminlevel/ert_station/pizza_station) "cL" = ( /obj/structure/bed/chair/bolted{ @@ -336,9 +300,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "cP" = ( /obj/structure/surface/table/reinforced, @@ -354,9 +316,7 @@ /obj/item/trash/ceramic_plate{ pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "dc" = ( /obj/structure/disposalpipe/segment{ @@ -365,10 +325,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "dh" = ( /obj/structure/surface/table/reinforced/cloth, @@ -377,9 +334,7 @@ layer = 3.03; pixel_x = 4 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "dS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -389,9 +344,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "ec" = ( /obj/structure/surface/table/reinforced/cloth, @@ -400,9 +353,7 @@ pixel_x = -8; pixel_y = -6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "ef" = ( /obj/structure/surface/rack, @@ -414,9 +365,7 @@ pixel_x = 1; pixel_y = -5 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "eh" = ( /obj/structure/surface/table/reinforced/cloth, @@ -436,9 +385,7 @@ pixel_y = 13; pixel_x = 5 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "ei" = ( /obj/structure/disposalpipe/segment, @@ -456,10 +403,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 1 - }, +/turf/open/floor/prison/greenblue/north, /area/adminlevel/ert_station/pizza_station) "eD" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -467,9 +411,7 @@ pixel_x = -11; pixel_y = -1 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "eI" = ( /obj/structure/platform/kutjevo/smooth, @@ -481,10 +423,7 @@ pixel_y = 9; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 6 - }, +/turf/open/floor/prison/red/southeast, /area/adminlevel/ert_station/pizza_station) "eQ" = ( /obj/effect/decal/warning_stripes{ @@ -498,14 +437,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "eW" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_dirt/mars_cave_11, /area/space) "fb" = ( /obj/structure/platform/kutjevo/smooth{ @@ -518,26 +453,18 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "fj" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/adminlevel/ert_station/pizza_station) "fu" = ( /turf/open/floor/plating, /area/adminlevel/ert_station/pizza_station) "fE" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/adminlevel/ert_station/pizza_station) "fH" = ( /obj/structure/platform/kutjevo/smooth{ @@ -563,9 +490,7 @@ pixel_y = 9 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "fO" = ( /obj/structure/platform_decoration/kutjevo{ @@ -584,9 +509,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "gu" = ( /obj/structure/surface/table/almayer, @@ -607,9 +530,7 @@ pixel_x = -2; layer = 2.97 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "gy" = ( /obj/structure/barricade/handrail/pizza{ @@ -617,17 +538,13 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "gU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/adminlevel/ert_station/pizza_station) "gV" = ( /obj/structure/disposalpipe/segment{ @@ -643,9 +560,7 @@ /obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "ha" = ( /obj/structure/platform_decoration/kutjevo{ @@ -658,39 +573,26 @@ dir = 1; pixel_y = 12 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "hc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "hg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/adminlevel/ert_station/pizza_station) "hv" = ( /obj/structure/closet/crate/freezer/cooler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/adminlevel/ert_station/pizza_station) "hL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 1 - }, +/turf/open/floor/prison/greenblue/north, /area/adminlevel/ert_station/pizza_station) "hR" = ( /obj/structure/barricade/handrail/pizza{ @@ -712,9 +614,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "hX" = ( /obj/structure/bed/chair/bolted{ @@ -724,9 +624,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "ic" = ( /obj/item/trash/plate{ @@ -753,9 +651,7 @@ pixel_y = 9; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "im" = ( /obj/structure/bed/chair/janicart, @@ -763,10 +659,7 @@ /area/adminlevel/ert_station/pizza_station) "ir" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "iw" = ( /obj/structure/surface/table/reinforced, @@ -777,10 +670,7 @@ /obj/item/reagent_container/food/snacks/tofukabob{ pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 6 - }, +/turf/open/floor/prison/greenblue/southeast, /area/adminlevel/ert_station/pizza_station) "iY" = ( /obj/effect/decal/warning_stripes{ @@ -794,10 +684,7 @@ pixel_y = 32; pixel_x = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/adminlevel/ert_station/pizza_station) "ja" = ( /obj/structure/platform_decoration/kutjevo{ @@ -824,10 +711,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/prison/red/northeast, /area/adminlevel/ert_station/pizza_station) "jf" = ( /obj/structure/surface/table/almayer, @@ -844,17 +728,13 @@ name = "\improper Kitchen Shutters"; id = "kitchen_pizza_time" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/pizza_station) "jo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "jq" = ( /obj/structure/sink{ @@ -882,9 +762,7 @@ buckling_x = 7; buckling_y = -6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "jy" = ( /obj/structure/surface/table/almayer, @@ -904,14 +782,10 @@ name = "\improper Kitchen Shutters"; id = "kitchen_pizza_time" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/pizza_station) "jH" = ( -/turf/open/mars{ - icon_state = "mars_cave_10" - }, +/turf/open/mars/mars_cave_10, /area/space) "jT" = ( /obj/structure/barricade/handrail/pizza{ @@ -923,17 +797,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "jV" = ( /obj/structure/barricade/handrail/pizza{ dir = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "kz" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -941,9 +811,7 @@ dir = 1; name = "\improper Kitchen" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "kW" = ( /obj/structure/barricade/handrail/pizza{ @@ -953,9 +821,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "la" = ( /obj/structure/blocker/invisible_wall, @@ -965,9 +831,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ locked = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "lg" = ( /turf/closed/shuttle/ert{ @@ -987,9 +851,7 @@ pixel_y = 5; pixel_x = -11 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "lw" = ( /obj/structure/surface/table/reinforced/cloth, @@ -1007,9 +869,7 @@ /obj/item/clothing/mask/cigarette{ pixel_y = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "lx" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1035,9 +895,7 @@ pixel_y = 12; pixel_x = 5 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "lB" = ( /obj/structure/barricade/handrail/pizza{ @@ -1055,27 +913,21 @@ /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "lE" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/barricade/handrail/pizza{ pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "lH" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "pizza_takeaway_out" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "lJ" = ( /obj/effect/decal/warning_stripes{ @@ -1088,9 +940,7 @@ pixel_x = 15; pixel_y = -32 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/adminlevel/ert_station/pizza_station) "lL" = ( /turf/open/floor/almayer_hull, @@ -1099,9 +949,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "ma" = ( /obj/structure/surface/table/reinforced/cloth, @@ -1109,14 +957,10 @@ pixel_y = 10; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "me" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_dirt/mars_cave_8, /area/space) "mj" = ( /obj/structure/machinery/shower{ @@ -1150,9 +994,7 @@ layer = 4.15; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "mt" = ( /obj/structure/barricade/handrail/pizza{ @@ -1167,9 +1009,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "mP" = ( /obj/structure/disposalpipe/segment, @@ -1177,9 +1017,7 @@ /obj/structure/sign/safety/fridge{ pixel_x = 32 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "nf" = ( /turf/closed/shuttle/ert{ @@ -1188,10 +1026,7 @@ /area/adminlevel/ert_station/pizza_station) "nl" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/adminlevel/ert_station/pizza_station) "np" = ( /obj/structure/surface/table/reinforced, @@ -1207,18 +1042,14 @@ /obj/item/pizzabox{ pixel_y = 14 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "ny" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, /obj/structure/machinery/light/small/blue{ pixel_x = 16 }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/adminlevel/ert_station/pizza_station) "nA" = ( /obj/structure/surface/table/almayer, @@ -1239,14 +1070,10 @@ pixel_x = 3; layer = 2.97 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "nB" = ( -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "nK" = ( /obj/structure/surface/table/reinforced, @@ -1260,9 +1087,7 @@ /obj/structure/machinery/firealarm{ pixel_x = -24 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "nU" = ( /obj/structure/prop/souto_land/streamer{ @@ -1272,9 +1097,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "nX" = ( /obj/structure/bed/chair/bolted{ @@ -1283,39 +1106,28 @@ buckling_x = -7 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "oh" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "ok" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "oo" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/adminlevel/ert_station/pizza_station) "ov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "oy" = ( /obj/structure/bedsheetbin{ @@ -1333,9 +1145,7 @@ req_one_access = null; req_one_access_txt = "101" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "oG" = ( /obj/structure/disposalpipe/segment, @@ -1345,10 +1155,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "oX" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1369,15 +1176,10 @@ /obj/structure/machinery/alarm{ pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/adminlevel/ert_station/pizza_station) "pD" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_dirt/mars_cave_10, /area/space) "pE" = ( /obj/structure/sink{ @@ -1395,9 +1197,7 @@ pixel_x = -7; buckling_x = -7 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "pT" = ( /obj/structure/closet/crate/freezer/rations, @@ -1413,10 +1213,7 @@ /obj/item/reagent_container/food/snacks/meat/fish, /obj/item/reagent_container/food/snacks/meat/fish, /obj/item/reagent_container/food/snacks/meat/fish, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/adminlevel/ert_station/pizza_station) "qb" = ( /obj/structure/prop/souto_land/streamer{ @@ -1427,9 +1224,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "qh" = ( /turf/closed/shuttle/ert{ @@ -1463,31 +1258,23 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/classic{ pixel_x = -2 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "qt" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_dirt/mars_cave_6, /area/space) "qv" = ( /obj/structure/surface/table/reinforced, /obj/item/book/manual/chef_recipes, /obj/item/clothing/head/chefhat, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "qy" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/juicer{ pixel_y = 9 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "qA" = ( /obj/effect/decal/warning_stripes{ @@ -1497,9 +1284,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "qU" = ( /obj/structure/barricade/handrail/pizza{ @@ -1513,9 +1298,7 @@ /obj/structure/machinery/alarm{ pixel_y = 25 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "qX" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1541,9 +1324,7 @@ pixel_x = 16; dir = 1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "rk" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1558,9 +1339,7 @@ pixel_y = 12; buckling_y = 12 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "rK" = ( /obj/structure/surface/table/almayer, @@ -1575,23 +1354,15 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ locked = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "rO" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/adminlevel/ert_station/pizza_station) "sa" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "se" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1602,16 +1373,11 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "sk" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/adminlevel/ert_station/pizza_station) "sl" = ( /obj/effect/decal/warning_stripes{ @@ -1621,29 +1387,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "sp" = ( /obj/structure/surface/table/reinforced, /obj/item/weapon/pizza_cutter, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "sx" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "sB" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_dirt/mars_cave_7, /area/space) "sI" = ( /obj/structure/surface/table/reinforced/cloth, @@ -1663,18 +1420,14 @@ pixel_y = 3; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "sJ" = ( /obj/structure/machinery/vending/ingredients, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "sW" = ( /obj/structure/blocker/invisible_wall, @@ -1682,9 +1435,7 @@ name = "\improper Umbillical Airlock"; unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "sY" = ( /obj/effect/decal/warning_stripes{ @@ -1694,9 +1445,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "td" = ( /obj/effect/decal/warning_stripes{ @@ -1710,9 +1459,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/pizza_station) "tp" = ( /obj/structure/bed/chair/bolted{ @@ -1723,9 +1470,7 @@ buckling_x = 10 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "tq" = ( /obj/structure/disposalpipe/segment{ @@ -1734,9 +1479,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "ty" = ( /obj/effect/decal/warning_stripes{ @@ -1750,9 +1493,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "tC" = ( /obj/structure/surface/table/reinforced/cloth, @@ -1771,9 +1512,7 @@ pixel_x = -1; pixel_y = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "tH" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1786,9 +1525,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Galaxy Pizza!" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "tM" = ( /obj/effect/decal/warning_stripes{ @@ -1799,9 +1536,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/pizza_station) "tT" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1824,9 +1559,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "ub" = ( /obj/structure/disposalpipe/segment, @@ -1834,16 +1567,11 @@ icon_state = "almayer_pdoor"; id = "pizza_takeaway_out" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "ug" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "uj" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1866,18 +1594,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "uD" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "uK" = ( /obj/structure/platform/kutjevo/smooth, @@ -1894,9 +1618,7 @@ /turf/open/space, /area/space) "uN" = ( -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "uY" = ( /obj/structure/surface/table/almayer, @@ -1916,18 +1638,13 @@ name = "\improper Kitchen Shutters"; id = "kitchen_pizza_time" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/pizza_station) "vi" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner"; - dir = 1 - }, +/turf/open/floor/prison/redcorner/north, /area/adminlevel/ert_station/pizza_station) "vq" = ( /obj/structure/toilet{ @@ -1947,10 +1664,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "vA" = ( /obj/structure/disposalpipe/segment{ @@ -1960,10 +1674,7 @@ pixel_x = 16; dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "vI" = ( /obj/structure/disposalpipe/segment, @@ -2003,9 +1714,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "wa" = ( /obj/structure/disposalpipe/segment{ @@ -2019,9 +1728,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "wb" = ( /obj/structure/platform/kutjevo/smooth, @@ -2032,10 +1739,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 9 - }, +/turf/open/floor/prison/greenblue/northwest, /area/adminlevel/ert_station/pizza_station) "wm" = ( /obj/structure/surface/table/reinforced, @@ -2043,9 +1747,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "wo" = ( /obj/structure/bed/chair/bolted{ @@ -2053,10 +1755,7 @@ pixel_x = -7; buckling_x = -7 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/adminlevel/ert_station/pizza_station) "wq" = ( /obj/structure/disposalpipe/segment{ @@ -2064,10 +1763,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "redcorner"; - dir = 4 - }, +/turf/open/floor/prison/redcorner/east, /area/adminlevel/ert_station/pizza_station) "wu" = ( /obj/structure/surface/table/reinforced/cloth, @@ -2083,15 +1779,10 @@ pixel_y = 6; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "wz" = ( -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "wD" = ( /obj/structure/platform_decoration/kutjevo, @@ -2126,25 +1817,17 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "wQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "wX" = ( /obj/structure/closet/crate/freezer/cooler/oj, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/adminlevel/ert_station/pizza_station) "xc" = ( /obj/structure/disposalpipe/segment{ @@ -2152,10 +1835,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "xe" = ( /obj/structure/platform/kutjevo/smooth, @@ -2182,9 +1862,7 @@ pixel_y = 8; pixel_x = 3 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "xl" = ( /obj/structure/surface/table/reinforced/cloth, @@ -2198,9 +1876,7 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "xp" = ( /obj/structure/platform/kutjevo/smooth, @@ -2222,17 +1898,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "xV" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/adminlevel/ert_station/pizza_station) "xX" = ( /obj/structure/surface/table/reinforced/cloth, @@ -2243,9 +1915,7 @@ /obj/item/reagent_container/food/snacks/mushroompizzaslice{ pixel_y = 4 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "yg" = ( /obj/structure/platform_decoration/kutjevo, @@ -2255,19 +1925,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "greenbluecorner"; - dir = 4 - }, +/turf/open/floor/prison/greenbluecorner/east, /area/adminlevel/ert_station/pizza_station) "yr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 10 - }, +/turf/open/floor/prison/red/southwest, /area/adminlevel/ert_station/pizza_station) "ys" = ( /obj/structure/barricade/handrail/pizza{ @@ -2289,9 +1953,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "yE" = ( /obj/structure/barricade/handrail/pizza{ @@ -2309,26 +1971,19 @@ pixel_y = 15; pixel_x = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "yG" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/adminlevel/ert_station/pizza_station) "yK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 8 - }, +/turf/open/floor/prison/greenblue/west, /area/adminlevel/ert_station/pizza_station) "yM" = ( /obj/structure/sign/safety/fridge{ @@ -2338,9 +1993,7 @@ pixel_x = 32 }, /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "yP" = ( /obj/structure/surface/rack, @@ -2350,25 +2003,17 @@ /obj/item/reagent_container/food/snacks/bigbiteburger{ pixel_x = 3 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 10 - }, +/turf/open/floor/prison/greenblue/southwest, /area/adminlevel/ert_station/pizza_station) "zf" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "zh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "zj" = ( /obj/structure/surface/table/almayer, @@ -2400,9 +2045,7 @@ pixel_x = 3 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "zx" = ( /obj/structure/surface/table/almayer, @@ -2421,9 +2064,7 @@ /obj/item/trash/ceramic_plate{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "zz" = ( /obj/structure/barricade/handrail/pizza{ @@ -2438,9 +2079,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "zC" = ( /obj/structure/bed/chair/bolted{ @@ -2448,9 +2087,7 @@ pixel_x = 7; buckling_x = 7 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "zE" = ( /obj/structure/machinery/door_control/airlock{ @@ -2471,25 +2108,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redcorner"; - dir = 1 - }, +/turf/open/floor/prison/redcorner/north, /area/adminlevel/ert_station/pizza_station) "zQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "zW" = ( -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 4 - }, +/turf/open/floor/prison/greenblue/east, /area/adminlevel/ert_station/pizza_station) "Ab" = ( /obj/structure/machinery/gibber{ @@ -2499,9 +2127,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Ac" = ( /obj/structure/closet/secure_closet/fridge/dry, @@ -2511,9 +2137,7 @@ /obj/structure/sign/safety/galley{ pixel_x = -24 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Aj" = ( /obj/structure/barricade/handrail/pizza{ @@ -2523,9 +2147,7 @@ pixel_x = 15; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "Ao" = ( /obj/structure/disposalpipe/segment{ @@ -2538,18 +2160,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Au" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "Ax" = ( /obj/structure/surface/table/reinforced/cloth, @@ -2566,17 +2183,13 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "AB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "AD" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -2586,24 +2199,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "AH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/adminlevel/ert_station/pizza_station) "AV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "AW" = ( /obj/effect/decal/warning_stripes{ @@ -2616,9 +2222,7 @@ pixel_y = -32; pixel_x = 15 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/adminlevel/ert_station/pizza_station) "Bu" = ( /obj/effect/decal/warning_stripes{ @@ -2628,9 +2232,7 @@ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "By" = ( /obj/structure/machinery/suit_storage_unit/standard_unit{ @@ -2640,9 +2242,7 @@ /obj/structure/sign/safety/suit_storage{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Bz" = ( /obj/structure/surface/table/reinforced, @@ -2661,9 +2261,7 @@ /obj/item/trash/plate{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "BC" = ( /obj/structure/surface/table/reinforced, @@ -2677,9 +2275,7 @@ pixel_y = 11 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "BJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2690,9 +2286,7 @@ icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "BU" = ( /obj/structure/bed/chair/bolted{ @@ -2703,10 +2297,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/adminlevel/ert_station/pizza_station) "Ck" = ( /obj/structure/sink{ @@ -2728,9 +2319,7 @@ pixel_x = -6; pixel_y = 14 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Cv" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -2745,17 +2334,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 1 - }, +/turf/open/floor/prison/greenblue/north, /area/adminlevel/ert_station/pizza_station) "CO" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "CP" = ( /turf/open/floor/almayer_hull, @@ -2771,9 +2355,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Db" = ( /obj/structure/barricade/handrail/pizza{ @@ -2787,18 +2369,13 @@ /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Dd" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "Dx" = ( /obj/structure/surface/table/reinforced, @@ -2809,9 +2386,7 @@ pixel_y = 4 }, /obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "DF" = ( /obj/structure/disposalpipe/segment{ @@ -2824,9 +2399,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "DH" = ( /obj/structure/platform/kutjevo/smooth, @@ -2837,10 +2410,7 @@ /area/space) "DW" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "Ee" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2861,9 +2431,7 @@ dir = 6 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "Ei" = ( /turf/closed/wall/almayer/outer, @@ -2874,9 +2442,7 @@ id = "pizza_ert_arrival" }, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "EH" = ( /obj/structure/machinery/vending/cigarette{ @@ -2884,28 +2450,21 @@ layer = 3.01; density = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/adminlevel/ert_station/pizza_station) "EK" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; id = "pizza_takeaway" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "EO" = ( /obj/structure/machinery/door/poddoor/almayer/open{ name = "\improper Umbillical Airlock"; id = "pizza_ert_arrival" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "EZ" = ( /obj/structure/disposalpipe/segment{ @@ -2914,17 +2473,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Fd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "Ff" = ( /obj/structure/surface/table/reinforced/cloth, @@ -2950,17 +2505,12 @@ pixel_y = 2; pixel_x = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Fj" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_container/food/snacks/ricepudding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/adminlevel/ert_station/pizza_station) "Fp" = ( /obj/structure/closet/crate/freezer, @@ -2974,10 +2524,7 @@ /obj/item/reagent_container/food/snacks/packaged_burger, /obj/item/reagent_container/food/snacks/packaged_burger, /obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/adminlevel/ert_station/pizza_station) "Fz" = ( /obj/structure/surface/table/reinforced, @@ -2987,9 +2534,7 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "FB" = ( /obj/structure/machinery/light{ @@ -2998,9 +2543,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "FD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -3008,9 +2551,7 @@ id = "pizza_takeaway" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "FL" = ( /turf/closed/shuttle/ert{ @@ -3020,9 +2561,7 @@ /area/adminlevel/ert_station/pizza_station) "FS" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "FY" = ( /obj/structure/surface/table/almayer, @@ -3049,9 +2588,7 @@ pixel_x = 11; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Gd" = ( /obj/structure/prop/souto_land/pole{ @@ -3064,9 +2601,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "Gh" = ( /obj/structure/machinery/disposal{ @@ -3081,9 +2616,7 @@ name = "EAT - poster"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Gj" = ( /obj/structure/barricade/handrail/pizza{ @@ -3092,17 +2625,13 @@ /obj/structure/barricade/handrail/pizza{ pixel_y = -3 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Gm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "Gn" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3127,28 +2656,20 @@ pixel_y = 4; pixel_x = 7 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Gt" = ( /obj/structure/machinery/atm{ pixel_y = 32; pixel_x = 2 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/adminlevel/ert_station/pizza_station) "GB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 30 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/adminlevel/ert_station/pizza_station) "GM" = ( /obj/structure/sign/safety/airlock{ @@ -3166,10 +2687,7 @@ }, /area/adminlevel/ert_station/pizza_station) "Hd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/adminlevel/ert_station/pizza_station) "Hg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3193,9 +2711,7 @@ /obj/item/reagent_container/food/drinks/coffeecup{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "HQ" = ( /obj/structure/surface/table/reinforced/cloth, @@ -3206,18 +2722,13 @@ pixel_y = 10; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Ib" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "Iq" = ( /obj/structure/surface/table/reinforced/cloth, @@ -3232,9 +2743,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "ID" = ( /turf/closed/wall/rock/red, @@ -3243,10 +2752,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "Jd" = ( /obj/structure/closet{ @@ -3256,10 +2762,7 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/pizza_station) "Jl" = ( -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "Jm" = ( /obj/effect/decal/warning_stripes{ @@ -3269,16 +2772,12 @@ /area/adminlevel/ert_station/pizza_station) "Jq" = ( /obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/adminlevel/ert_station/pizza_station) "JP" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "JR" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -3299,9 +2798,7 @@ /obj/item/reagent_container/glass/bucket{ pixel_x = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "JV" = ( /obj/structure/barricade/handrail/pizza{ @@ -3312,9 +2809,7 @@ pixel_y = -1; buckling_y = -1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Kb" = ( /obj/structure/surface/table/almayer, @@ -3326,9 +2821,7 @@ /obj/item/corncob{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Kc" = ( /obj/structure/sign/safety/airlock{ @@ -3356,9 +2849,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "Kv" = ( /obj/structure/surface/table/reinforced, @@ -3368,9 +2859,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "KB" = ( /obj/structure/sign/safety/bathunisex{ @@ -3394,14 +2883,10 @@ /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "KY" = ( -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/adminlevel/ert_station/pizza_station) "La" = ( /obj/structure/surface/table/almayer, @@ -3422,17 +2907,13 @@ /obj/item/reagent_container/food/condiment/hotsauce/cholula{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Lk" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Ln" = ( /obj/structure/surface/table/reinforced/prison, @@ -3456,9 +2937,7 @@ dir = 1; pixel_y = 12 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "LH" = ( /obj/structure/bed/chair/bolted{ @@ -3470,9 +2949,7 @@ dir = 8; pixel_y = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Mj" = ( /obj/structure/bed/chair/dropship/pilot{ @@ -3492,17 +2969,12 @@ /obj/structure/barricade/handrail/pizza{ pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "Mt" = ( /obj/structure/bed/sofa/south/grey/left, /obj/item/storage/briefcase/stowaway, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/adminlevel/ert_station/pizza_station) "Mz" = ( /obj/structure/platform/kutjevo/smooth, @@ -3515,9 +2987,7 @@ /obj/structure/surface/table/reinforced, /obj/item/pizzabox/meat, /obj/item/weapon/pizza_cutter, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "MK" = ( /obj/structure/surface/table/almayer, @@ -3536,9 +3006,7 @@ /obj/item/reagent_container/food/drinks/bottle/whiskey{ pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "MS" = ( /obj/structure/machinery/shower{ @@ -3569,15 +3037,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "MX" = ( -/turf/open/floor/prison{ - icon_state = "red"; - dir = 9 - }, +/turf/open/floor/prison/red/northwest, /area/adminlevel/ert_station/pizza_station) "Nb" = ( /obj/item/reagent_container/food/condiment/hotsauce/franks/macho{ @@ -3599,9 +3062,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Nl" = ( /turf/open/floor/prison, @@ -3620,9 +3081,7 @@ pixel_y = 32; pixel_x = -13 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "Ny" = ( /obj/structure/sink{ @@ -3637,9 +3096,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "NH" = ( /obj/structure/bed/sofa/vert/grey/top, @@ -3659,10 +3116,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 9 - }, +/turf/open/floor/prison/greenblue/northwest, /area/adminlevel/ert_station/pizza_station) "NP" = ( /obj/structure/sink/kitchen{ @@ -3673,9 +3127,7 @@ /obj/structure/sign/safety/water{ pixel_x = 38 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "NT" = ( /obj/structure/platform_decoration/kutjevo{ @@ -3692,9 +3144,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Og" = ( /obj/structure/surface/table/reinforced/cloth, @@ -3710,18 +3160,14 @@ pixel_y = 8; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Oh" = ( /obj/structure/prop/souto_land/streamer{ pixel_y = 9; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "OE" = ( /obj/structure/prop/souto_land/streamer{ @@ -3731,9 +3177,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "OG" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3748,11 +3192,7 @@ /turf/open/space, /area/space) "OJ" = ( -/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/space) "OK" = ( /obj/structure/machinery/vending/cigarette{ @@ -3762,9 +3202,7 @@ /obj/structure/barricade/handrail/pizza{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "OQ" = ( /obj/structure/barricade/handrail/pizza{ @@ -3784,21 +3222,14 @@ pixel_x = -2; layer = 4.11 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "OS" = ( -/turf/open/floor/prison{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "Pa" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Pi" = ( /obj/structure/disposalpipe/segment{ @@ -3807,10 +3238,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "Pl" = ( /obj/structure/barricade/handrail/pizza{ @@ -3829,18 +3257,14 @@ pixel_y = 2; layer = 4.12 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Pn" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/chef/classic, /obj/item/clothing/gloves/latex, /obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Pq" = ( /obj/structure/platform/kutjevo/smooth, @@ -3856,9 +3280,7 @@ pixel_x = -2; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Py" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3882,9 +3304,7 @@ /area/space) "PH" = ( /obj/structure/surface/table/reinforced/cloth, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "PL" = ( /obj/structure/sign/safety/airlock{ @@ -3900,9 +3320,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "QN" = ( /obj/effect/decal/warning_stripes{ @@ -3912,9 +3330,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "Ra" = ( /obj/structure/surface/table/reinforced/cloth, @@ -3930,18 +3346,14 @@ pixel_x = -11; layer = 3.03 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Rf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Rh" = ( /obj/structure/window/framed/almayer/hull, @@ -3969,9 +3381,7 @@ pixel_y = 12; layer = 4.11 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "RP" = ( /obj/structure/barricade/handrail/pizza{ @@ -3984,9 +3394,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor{ - icon_state = "blueyellowfull" - }, +/turf/open/floor/blueyellowfull, /area/adminlevel/ert_station/pizza_station) "RV" = ( /obj/item/clothing/suit/chef/classic, @@ -3996,9 +3404,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Se" = ( /obj/structure/bed/chair/bolted{ @@ -4009,9 +3415,7 @@ /obj/structure/prop/souto_land/streamer{ pixel_y = 9 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Sg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -4028,18 +3432,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "Sp" = ( /obj/structure/barricade/handrail/pizza{ dir = 4 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Sq" = ( /obj/structure/kitchenspike, @@ -4050,9 +3449,7 @@ pixel_y = 2 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/adminlevel/ert_station/pizza_station) "Sr" = ( /obj/structure/surface/table/reinforced/cloth, @@ -4072,16 +3469,12 @@ pixel_y = 5; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Sz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "SL" = ( /obj/structure/surface/table/almayer, @@ -4094,10 +3487,7 @@ pixel_y = 15; pixel_x = -8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/adminlevel/ert_station/pizza_station) "ST" = ( /obj/structure/disposalpipe/segment{ @@ -4110,9 +3500,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "SV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -4122,9 +3510,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Te" = ( /obj/structure/surface/table/reinforced/cloth, @@ -4148,9 +3534,7 @@ pixel_y = 13; pixel_x = 5 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Tu" = ( /obj/structure/disposalpipe/segment{ @@ -4160,24 +3544,16 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "TC" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/adminlevel/ert_station/pizza_station) "TD" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/adminlevel/ert_station/pizza_station) "TE" = ( -/turf/open/mars_dirt{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_dirt/mars_cave_3, /area/space) "TH" = ( /obj/structure/surface/table/almayer, @@ -4191,9 +3567,7 @@ /obj/item/reagent_container/food/drinks/bottle/orangejuice{ layer = 2.97 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "TK" = ( /turf/closed/shuttle/ert, @@ -4216,9 +3590,7 @@ pixel_y = -1 }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "TY" = ( /obj/structure/bed/chair{ @@ -4240,9 +3612,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Uu" = ( /obj/structure/disposalpipe/segment{ @@ -4254,9 +3624,7 @@ /obj/structure/machinery/power/apc/antag{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Ux" = ( /obj/structure/barricade/handrail/pizza{ @@ -4270,24 +3638,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "UB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Vj" = ( /obj/structure/closet/secure_closet/fridge/dry/stock, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 5 - }, +/turf/open/floor/prison/greenblue/northeast, /area/adminlevel/ert_station/pizza_station) "Vm" = ( /obj/structure/surface/table/reinforced, @@ -4297,9 +3658,7 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza{ pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner, /area/adminlevel/ert_station/pizza_station) "Vs" = ( /obj/structure/disposalpipe/segment{ @@ -4313,10 +3672,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "Vt" = ( /turf/closed/shuttle/ert{ @@ -4345,15 +3701,10 @@ /obj/structure/surface/table/almayer{ layer = 4.02 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "VK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/adminlevel/ert_station/pizza_station) "VN" = ( /obj/structure/bed/chair/bolted{ @@ -4369,9 +3720,7 @@ pixel_y = 30; serial_number = 12 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "VQ" = ( /obj/structure/disposalpipe/segment{ @@ -4380,9 +3729,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "VS" = ( /obj/structure/surface/table/almayer, @@ -4403,9 +3750,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Wb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4416,9 +3761,7 @@ id = "pizza_ert_arrival" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "WL" = ( /obj/structure/window/framed/almayer/hull, @@ -4426,9 +3769,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/pizza_station) "WP" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "WS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -4444,9 +3785,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Kitchen and Cleaning" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Xa" = ( /obj/effect/decal/warning_stripes{ @@ -4459,10 +3798,7 @@ pixel_y = 32; pixel_x = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/adminlevel/ert_station/pizza_station) "Xg" = ( /obj/structure/prop/souto_land/streamer{ @@ -4470,9 +3806,7 @@ pixel_x = 1 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "Xj" = ( /obj/effect/decal/warning_stripes{ @@ -4491,9 +3825,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Xn" = ( /obj/structure/platform_decoration/kutjevo{ @@ -4512,9 +3844,7 @@ /obj/item/reagent_container/food/snacks/bigbiteburger{ pixel_x = 4 }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/adminlevel/ert_station/pizza_station) "Xr" = ( /obj/structure/disposalpipe/segment{ @@ -4527,9 +3857,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Xw" = ( /obj/structure/platform/kutjevo/smooth, @@ -4542,9 +3870,7 @@ /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/sliceable/flatdough, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "XB" = ( /obj/structure/machinery/shower{ @@ -4564,10 +3890,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/prison/red/northeast, /area/adminlevel/ert_station/pizza_station) "XV" = ( /obj/structure/prop/souto_land/streamer{ @@ -4577,17 +3900,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "XZ" = ( /obj/structure/barricade/handrail/pizza{ pixel_y = -3 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Ya" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -4600,9 +3919,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "STAFF ONLY" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "Yf" = ( /obj/structure/surface/table/reinforced, @@ -4625,9 +3942,7 @@ pixel_y = 3; pixel_x = 6 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "Yj" = ( /obj/structure/surface/table/reinforced/cloth, @@ -4646,9 +3961,7 @@ pixel_y = -2; pixel_x = 16 }, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Ym" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -4670,9 +3983,7 @@ /area/space) "Yv" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/pizza_station) "Yw" = ( /turf/closed/shuttle/ert{ @@ -4690,10 +4001,7 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 6 - }, +/turf/open/floor/prison/greenblue/southeast, /area/adminlevel/ert_station/pizza_station) "YF" = ( /obj/structure/platform_decoration/kutjevo{ @@ -4714,9 +4022,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Galaxy Pizza!" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "YM" = ( /obj/structure/prop/invuln{ @@ -4746,9 +4052,7 @@ name = "\improper Umbillical Airlock"; id = "pizza_ert_arrival" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/pizza_station) "ZM" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -4762,18 +4066,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greenblue"; - dir = 1 - }, +/turf/open/floor/prison/greenblue/north, /area/adminlevel/ert_station/pizza_station) "ZR" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "cmo" - }, +/turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "ZV" = ( /obj/structure/bed/sofa/vert/grey, @@ -4794,9 +4093,7 @@ /obj/item/tool/kitchen/tray{ pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) (1,1,1) = {" diff --git a/maps/templates/lazy_templates/twe_ert_station.dmm b/maps/templates/lazy_templates/twe_ert_station.dmm index 10e175eae24c..83ecd232b2a5 100644 --- a/maps/templates/lazy_templates/twe_ert_station.dmm +++ b/maps/templates/lazy_templates/twe_ert_station.dmm @@ -7,16 +7,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "aq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/adminlevel/ert_station/royal_marines_station) "ar" = ( /obj/effect/decal/cleanable/dirt, @@ -25,9 +20,7 @@ pixel_x = 1 }, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "aH" = ( /obj/structure/platform{ @@ -42,10 +35,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "aK" = ( /obj/structure/window/framed/almayer, @@ -62,9 +52,7 @@ "aX" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "bp" = ( /turf/closed/shuttle/twe_dropship{ @@ -88,16 +76,11 @@ /area/adminlevel/ert_station/royal_marines_station) "bS" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "co" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "cu" = ( /obj/structure/machinery/shower{ @@ -109,10 +92,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "cL" = ( /obj/structure/platform{ @@ -135,10 +115,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "dm" = ( /obj/structure/closet/coffin/woodencrate, @@ -146,9 +123,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ds" = ( /obj/effect/decal/warning_stripes{ @@ -159,9 +134,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "du" = ( /obj/structure/platform, @@ -176,31 +149,21 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "dK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "eh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "ei" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "eu" = ( /obj/effect/decal/cleanable/dirt, @@ -209,41 +172,28 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ev" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "eV" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "eX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "fp" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/adminlevel/ert_station/royal_marines_station) "ft" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "fx" = ( /obj/structure/platform{ @@ -252,25 +202,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "fD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "fJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ id = "Delta_1"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "fM" = ( /obj/effect/decal/warning_stripes{ @@ -285,26 +227,17 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "gg" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/ert_station/royal_marines_station) "gl" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "go" = ( /obj/structure/platform, @@ -312,31 +245,19 @@ /turf/closed/shuttle/twe_dropship, /area/adminlevel/ert_station/royal_marines_station) "gq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "gx" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "gJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "gS" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/ert_station/royal_marines_station) "gT" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "gU" = ( /turf/closed/shuttle/twe_dropship{ @@ -356,22 +277,15 @@ "hA" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/ert_station/royal_marines_station) "hI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "hL" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/ert_station/royal_marines_station) "iz" = ( /obj/effect/decal/warning_stripes{ @@ -385,24 +299,18 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "iE" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ density = 0; pixel_y = 16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "iG" = ( /obj/structure/bed/alien, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "iI" = ( /turf/closed/shuttle/twe_dropship{ @@ -417,9 +325,7 @@ "iO" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "iR" = ( /obj/structure/platform{ @@ -441,29 +347,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "je" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "jk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "jl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "jr" = ( /turf/closed/shuttle/twe_dropship{ @@ -471,9 +367,7 @@ }, /area/adminlevel/ert_station/royal_marines_station) "ju" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/adminlevel/ert_station/royal_marines_station) "jB" = ( /obj/structure/platform, @@ -489,9 +383,7 @@ /area/adminlevel/ert_station/royal_marines_station) "jD" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "jI" = ( /turf/closed/shuttle/twe_dropship{ @@ -510,9 +402,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "jW" = ( /turf/closed/shuttle/twe_dropship{ @@ -531,9 +421,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kh" = ( /obj/structure/surface/table/almayer, @@ -541,9 +429,7 @@ /area/adminlevel/ert_station/royal_marines_station) "kx" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ky" = ( /obj/structure/platform{ @@ -552,22 +438,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "kH" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kL" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kO" = ( /obj/structure/surface/table/almayer, @@ -576,36 +455,23 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "kW" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "kX" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "ll" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/adminlevel/ert_station/royal_marines_station) "lq" = ( /turf/closed/shuttle/twe_dropship{ @@ -620,16 +486,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lF" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "lG" = ( /obj/effect/decal/warning_stripes{ @@ -640,16 +502,12 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lN" = ( /obj/structure/surface/table/almayer, @@ -667,9 +525,7 @@ layer = 3.1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "mb" = ( /obj/effect/decal/cleanable/dirt, @@ -677,9 +533,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "mc" = ( /obj/structure/platform, @@ -687,10 +541,7 @@ /turf/open/void, /area/adminlevel/ert_station/royal_marines_station) "mo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/adminlevel/ert_station/royal_marines_station) "mw" = ( /turf/closed/shuttle/twe_dropship{ @@ -703,17 +554,13 @@ dir = 1 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "mK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "nj" = ( /turf/closed/wall/r_wall/elevator{ @@ -723,16 +570,11 @@ "nl" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "nn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "nw" = ( /obj/effect/decal/cleanable/dirt, @@ -743,9 +585,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "nI" = ( /obj/structure/machinery/light{ @@ -755,33 +595,23 @@ layer = 3.1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "nT" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "nW" = ( /obj/structure/closet/coffin/woodencrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "od" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station/royal_marines_station) "ol" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -793,9 +623,7 @@ id = "RMC_brig_2"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "oo" = ( /obj/structure/bed/chair/comfy{ @@ -819,39 +647,27 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "oY" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "oZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "pk" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "ps" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/adminlevel/ert_station/royal_marines_station) "pJ" = ( /turf/closed/wall/r_wall/elevator{ @@ -862,10 +678,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "pO" = ( /turf/closed/shuttle/twe_dropship{ @@ -876,10 +689,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "qi" = ( /obj/structure/platform{ @@ -895,26 +705,18 @@ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "qj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "qx" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "qG" = ( /obj/structure/platform, @@ -929,25 +731,18 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "qN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "qZ" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ri" = ( /obj/effect/decal/warning_stripes{ @@ -960,24 +755,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ro" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "rv" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "rI" = ( /turf/closed/wall/r_wall/elevator{ @@ -990,27 +778,18 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "rS" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/adminlevel/ert_station/royal_marines_station) "sb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "su" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sy" = ( /turf/open/floor/plating/kutjevo, @@ -1026,9 +805,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sI" = ( /obj/effect/decal/warning_stripes{ @@ -1038,16 +815,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sP" = ( /obj/structure/surface/table/almayer, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "sR" = ( /obj/structure/platform{ @@ -1062,10 +835,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "tr" = ( /turf/closed/shuttle/twe_dropship{ @@ -1080,15 +850,10 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "tw" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "uc" = ( /turf/closed/shuttle/twe_dropship{ @@ -1097,9 +862,7 @@ /area/adminlevel/ert_station/royal_marines_station) "uq" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "uC" = ( /obj/structure/platform{ @@ -1112,34 +875,25 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "uK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "uQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "uU" = ( /obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "vm" = ( /obj/structure/machinery/light{ @@ -1148,9 +902,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "vB" = ( /obj/effect/decal/cleanable/dirt, @@ -1166,9 +918,7 @@ id = "RMC_brig_1"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "vR" = ( /obj/structure/surface/table/almayer, @@ -1176,9 +926,7 @@ pixel_x = -3; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "wl" = ( /turf/closed/shuttle/twe_dropship{ @@ -1197,9 +945,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "xb" = ( /obj/effect/decal/cleanable/dirt, @@ -1207,9 +953,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "xm" = ( /turf/closed/shuttle/twe_dropship{ @@ -1220,39 +964,27 @@ /obj/structure/machinery/door/airlock/almayer/medical{ name = "Operating Theatre 1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "xx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/ert_station/royal_marines_station) "xy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "xE" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "xN" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "xW" = ( /obj/structure/bed/chair/vehicle{ @@ -1263,44 +995,31 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "xX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "yK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "yQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/ert_station/royal_marines_station) "yW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "zk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zw" = ( /turf/closed/shuttle/twe_dropship{ @@ -1312,9 +1031,7 @@ name = "Spare Prison Uniforms"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zM" = ( /obj/effect/decal/warning_stripes{ @@ -1325,34 +1042,24 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zY" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "Aa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ac" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "Ad" = ( /obj/effect/decal/cleanable/dirt, @@ -1372,9 +1079,7 @@ /obj/item/storage/box/pillbottles{ pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ai" = ( /obj/structure/platform{ @@ -1383,17 +1088,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Am" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "Aq" = ( /obj/structure/machinery/light{ @@ -1402,15 +1101,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Au" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "AQ" = ( /turf/closed/shuttle/twe_dropship{ @@ -1423,41 +1118,27 @@ }, /area/adminlevel/ert_station/royal_marines_station) "Ba" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "Bh" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "Bk" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "BC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "BV" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/adminlevel/ert_station/royal_marines_station) "Ci" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/adminlevel/ert_station/royal_marines_station) "Cj" = ( /turf/closed/shuttle/twe_dropship{ @@ -1473,9 +1154,7 @@ /obj/item/weapon/baton{ pixel_x = -12 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Cu" = ( /turf/open/void, @@ -1496,15 +1175,10 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Dg" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/ert_station/royal_marines_station) "Do" = ( /obj/effect/decal/warning_stripes{ @@ -1516,9 +1190,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "DA" = ( /obj/effect/decal/cleanable/dirt, @@ -1534,9 +1206,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "DS" = ( /turf/closed/shuttle/twe_dropship{ @@ -1549,9 +1219,7 @@ id = "Delta_1"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "DV" = ( /obj/structure/window/framed/almayer, @@ -1561,9 +1229,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "EG" = ( /turf/closed/shuttle/twe_dropship{ @@ -1582,9 +1248,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "EK" = ( /turf/closed/shuttle/twe_dropship{ @@ -1593,10 +1257,7 @@ /area/adminlevel/ert_station/royal_marines_station) "EX" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "Fp" = ( /obj/structure/platform{ @@ -1616,26 +1277,17 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "FA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "FN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "FX" = ( /obj/effect/decal/cleanable/dirt, @@ -1643,21 +1295,14 @@ dir = 4 }, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Gd" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "GM" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) "GO" = ( /obj/structure/platform{ @@ -1688,9 +1333,7 @@ "GZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "He" = ( /obj/structure/platform{ @@ -1705,9 +1348,7 @@ /obj/structure/machinery/power/apc/antag{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Hp" = ( /obj/structure/prop/almayer/cannon_cable_connector{ @@ -1725,24 +1366,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "HD" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "HJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station/royal_marines_station) "HM" = ( /turf/closed/shuttle/twe_dropship{ @@ -1761,9 +1395,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ip" = ( /obj/effect/decal/warning_stripes{ @@ -1773,9 +1405,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ir" = ( /obj/structure/surface/table/almayer, @@ -1805,9 +1435,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "IH" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -1819,9 +1447,7 @@ id = "RMC_Pub_brig"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "IK" = ( /obj/structure/platform{ @@ -1836,10 +1462,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "IY" = ( /obj/effect/decal/warning_stripes{ @@ -1849,17 +1472,12 @@ dir = 4 }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Jg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "JD" = ( /obj/effect/decal/warning_stripes{ @@ -1881,31 +1499,23 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "JM" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "JO" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Kl" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Ko" = ( /obj/structure/platform{ @@ -1922,10 +1532,7 @@ /area/adminlevel/ert_station/royal_marines_station) "Ku" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) "KD" = ( /obj/structure/platform_decoration{ @@ -1942,15 +1549,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Lj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Mb" = ( /obj/structure/closet/secure_closet/brig{ @@ -1958,9 +1561,7 @@ req_one_access = null }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Mg" = ( /obj/structure/surface/table/almayer, @@ -1983,9 +1584,7 @@ pixel_x = -5; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ms" = ( /obj/effect/decal/warning_stripes{ @@ -1998,9 +1597,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MJ" = ( /turf/open/floor/almayer, @@ -2017,17 +1614,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MN" = ( /obj/structure/prop/almayer/cannon_cable_connector{ pixel_y = -3 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "MQ" = ( /turf/closed/shuttle/twe_dropship{ @@ -2039,31 +1632,22 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/ert_station/royal_marines_station) "MY" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "Nc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "Ni" = ( /obj/structure/platform{ @@ -2075,14 +1659,10 @@ /area/adminlevel/ert_station/royal_marines_station) "Nl" = ( /obj/structure/machinery/cm_vending/gear/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Nm" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Nv" = ( /obj/effect/decal/cleanable/dirt, @@ -2091,9 +1671,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "NE" = ( /turf/closed/shuttle/twe_dropship{ @@ -2104,37 +1682,28 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "NV" = ( /turf/closed/wall/r_wall/elevator, /area/adminlevel/ert_station/royal_marines_station) "Oi" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ok" = ( /obj/structure/machinery/cryopod{ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "Or" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "Os" = ( /turf/closed/shuttle/twe_dropship{ @@ -2145,9 +1714,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "OB" = ( /obj/structure/surface/table/almayer, @@ -2160,15 +1727,11 @@ pixel_x = -3; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "OE" = ( /obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "OK" = ( /obj/effect/decal/warning_stripes{ @@ -2177,10 +1740,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "OO" = ( /turf/closed/shuttle/twe_dropship{ @@ -2191,9 +1751,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Pd" = ( /obj/structure/platform{ @@ -2208,9 +1766,7 @@ /obj/structure/machinery/door/airlock/almayer/medical{ name = "Operating Theatre 2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Pl" = ( /obj/effect/decal/cleanable/dirt, @@ -2223,9 +1779,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Px" = ( /turf/closed/shuttle/twe_dropship{ @@ -2233,9 +1787,7 @@ }, /area/adminlevel/ert_station/royal_marines_station) "PB" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) "PC" = ( /obj/effect/decal/warning_stripes{ @@ -2244,10 +1796,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "PD" = ( /obj/effect/decal/cleanable/dirt, @@ -2255,10 +1804,7 @@ id = "RMC_Pub_brig"; pixel_x = -29 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "PL" = ( /obj/structure/bed/chair/comfy{ @@ -2279,10 +1825,7 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "PN" = ( /obj/structure/machinery/light{ @@ -2294,31 +1837,23 @@ /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "PU" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "PY" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Qi" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Qj" = ( /obj/structure/window/framed/almayer, @@ -2348,9 +1883,7 @@ pixel_x = -1 }, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Rw" = ( /obj/structure/platform{ @@ -2361,22 +1894,15 @@ }, /area/adminlevel/ert_station/royal_marines_station) "Ry" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "RF" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "RH" = ( /obj/structure/largecrate/machine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sb" = ( /obj/docking_port/stationary/emergency_response/idle_port6, @@ -2393,9 +1919,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sd" = ( /turf/closed/wall/r_wall/elevator{ @@ -2407,15 +1931,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sv" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sw" = ( /turf/closed/shuttle/twe_dropship{ @@ -2429,9 +1949,7 @@ /area/adminlevel/ert_station/royal_marines_station) "SY" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Tf" = ( /obj/structure/surface/table/almayer, @@ -2459,9 +1977,7 @@ /area/adminlevel/ert_station/royal_marines_station) "TY" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ub" = ( /obj/structure/platform, @@ -2477,9 +1993,7 @@ /area/adminlevel/ert_station/royal_marines_station) "Uc" = ( /obj/structure/largecrate/machine, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Uk" = ( /obj/structure/platform, @@ -2499,33 +2013,23 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Up" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "Uq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Ur" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/royal_marines_station) "Ut" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "Uv" = ( /obj/structure/bed/chair/comfy{ @@ -2538,9 +2042,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "UH" = ( /turf/closed/wall/r_wall/elevator{ @@ -2550,15 +2052,11 @@ "UJ" = ( /obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "UT" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "UV" = ( /obj/effect/decal/warning_stripes{ @@ -2569,9 +2067,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "UZ" = ( /obj/structure/surface/table/almayer, @@ -2587,10 +2083,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "Vu" = ( /turf/closed/shuttle/twe_dropship{ @@ -2603,18 +2096,13 @@ pixel_y = 1 }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "VA" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "VF" = ( /obj/effect/decal/warning_stripes{ @@ -2627,16 +2115,11 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "VG" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "VH" = ( /obj/structure/machinery/light{ @@ -2651,9 +2134,7 @@ /obj/item/device/flash{ pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "VL" = ( /obj/structure/surface/table/almayer, @@ -2664,18 +2145,14 @@ }, /obj/item/restraint/handcuffs, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Wa" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green{ pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "We" = ( /obj/effect/decal/warning_stripes{ @@ -2695,9 +2172,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Wo" = ( /obj/effect/decal/warning_stripes{ @@ -2712,10 +2187,7 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Wt" = ( /obj/effect/decal/warning_stripes{ @@ -2730,10 +2202,7 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Wx" = ( /obj/structure/bed/chair/comfy{ @@ -2760,18 +2229,13 @@ /area/adminlevel/ert_station/royal_marines_station) "WC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/adminlevel/ert_station/royal_marines_station) "WD" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "WI" = ( /obj/structure/closet/secure_closet/brig{ @@ -2785,9 +2249,7 @@ /obj/item/clothing/under/color/orange, /obj/item/clothing/under/color/orange, /obj/item/clothing/under/color/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "WL" = ( /turf/closed/shuttle/twe_dropship{ @@ -2798,10 +2260,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "WS" = ( /turf/closed/wall/almayer, @@ -2815,9 +2274,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "WY" = ( /obj/structure/platform{ @@ -2840,27 +2297,18 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Xe" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "Xh" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/ert_station/royal_marines_station) "XB" = ( /obj/structure/sink{ @@ -2873,15 +2321,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "XF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "XN" = ( /obj/effect/decal/warning_stripes{ @@ -2891,9 +2335,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "XT" = ( /obj/structure/machinery/door_control/brbutton{ @@ -2906,42 +2348,29 @@ pixel_x = 25; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "XV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) "Yk" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "YI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "YZ" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Zf" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Zk" = ( /obj/effect/decal/warning_stripes{ @@ -2954,15 +2383,10 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Zl" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "Zx" = ( /obj/structure/surface/table/almayer, @@ -2971,9 +2395,7 @@ pixel_y = 6 }, /obj/item/storage/box/syringes, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "ZA" = ( /obj/structure/bed/chair/comfy, @@ -2994,9 +2416,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) (1,1,1) = {" diff --git a/maps/templates/lazy_templates/upp_ert_station.dmm b/maps/templates/lazy_templates/upp_ert_station.dmm index fd1e6186bf73..2a210d5969da 100644 --- a/maps/templates/lazy_templates/upp_ert_station.dmm +++ b/maps/templates/lazy_templates/upp_ert_station.dmm @@ -12,10 +12,7 @@ pixel_x = 16; pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "ag" = ( /obj/structure/largecrate/random/barrel/blue, @@ -25,10 +22,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "au" = ( /obj/structure/platform/kutjevo/smooth{ @@ -44,26 +38,17 @@ /obj/item/tool/weldpack{ pixel_x = -2 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ay" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "aA" = ( /obj/structure/bed/chair/comfy/lime{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "aF" = ( /obj/structure/surface/table/reinforced/prison, @@ -72,15 +57,10 @@ pixel_x = 8 }, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "aH" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/adminlevel/ert_station/upp_station) "aO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -94,25 +74,16 @@ density = 0; pixel_x = 32 }, -/turf/open/floor/strata{ - icon_state = "blue3"; - dir = 1 - }, +/turf/open/floor/strata/blue3/north, /area/adminlevel/ert_station/upp_station) "aP" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 - }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "aS" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/adminlevel/ert_station/upp_station) "aV" = ( /obj/item/stack/catwalk, @@ -138,25 +109,16 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "bd" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "bh" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "bi" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -167,10 +129,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "bk" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/adminlevel/ert_station/upp_station) "bp" = ( /obj/structure/machinery/shower{ @@ -179,33 +138,22 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "bM" = ( /obj/structure/machinery/power/apc/antag{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green4" - }, +/turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) "bY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "ce" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "cj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -215,26 +163,17 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "cl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "cs" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "cC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -253,18 +192,12 @@ pixel_y = 13 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "cO" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "da" = ( /turf/closed/shuttle/elevator{ @@ -292,9 +225,7 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "di" = ( /obj/structure/platform_decoration/kutjevo{ @@ -305,32 +236,21 @@ /area/space) "dz" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "dB" = ( -/turf/open/floor/strata{ - icon_state = "green4" - }, +/turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) "dH" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "dK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Station Hallway" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "dL" = ( /obj/structure/surface/table/reinforced/prison, @@ -342,10 +262,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) "dW" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -355,20 +272,14 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "ev" = ( /obj/item/tool/wet_sign, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) "eT" = ( /obj/structure/surface/table/reinforced/prison, @@ -381,19 +292,14 @@ pixel_x = -5 }, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "eU" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) "eV" = ( /obj/structure/platform_decoration/kutjevo, @@ -411,10 +317,7 @@ pixel_x = -8; pixel_y = 18 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) "eY" = ( /obj/structure/barricade/handrail{ @@ -447,10 +350,7 @@ dir = 4; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "fi" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ @@ -460,19 +360,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "fk" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, +/turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) "fA" = ( /obj/effect/decal/warning_stripes{ @@ -486,18 +380,13 @@ /obj/structure/target{ name = "punching bag" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/adminlevel/ert_station/upp_station) "fK" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +/turf/open/floor/strata/green4/west, /area/adminlevel/ert_station/upp_station) "fM" = ( /obj/structure/girder/reinforced, @@ -508,39 +397,25 @@ pixel_x = -1; pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "fW" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "ge" = ( /obj/structure/closet/boxinggloves, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/adminlevel/ert_station/upp_station) "gf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "gt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) "gx" = ( /obj/structure/platform_decoration/strata/metal{ @@ -558,19 +433,13 @@ /area/adminlevel/ert_station/upp_station) "hg" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "hj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Shuttle Bay" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "hA" = ( /obj/structure/platform_decoration/kutjevo{ @@ -580,24 +449,17 @@ /turf/open/space/basic, /area/space) "hF" = ( -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +/turf/open/floor/strata/green4/west, /area/adminlevel/ert_station/upp_station) "hM" = ( -/turf/open/floor/strata{ - icon_state = "damaged3" - }, +/turf/open/floor/strata/damaged3, /area/adminlevel/ert_station/upp_station) "hO" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "hV" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -612,10 +474,7 @@ /area/adminlevel/ert_station/upp_station) "ia" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ie" = ( /obj/structure/machinery/light/double/blue{ @@ -624,64 +483,42 @@ pixel_x = -10 }, /obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "iB" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/adminlevel/ert_station/upp_station) "iJ" = ( /obj/structure/closet/secure_closet/brig{ name = "Spare Prison Uniforms"; req_one_access = null }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/adminlevel/ert_station/upp_station) "iM" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8; name = "\improper Brig Cell" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "iV" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 9 - }, +/turf/open/floor/strata/green3/northwest, /area/adminlevel/ert_station/upp_station) "jc" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/west, /area/adminlevel/ert_station/upp_station) "jg" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +/turf/open/floor/strata/green4/west, /area/adminlevel/ert_station/upp_station) "jh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/bodybags, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "jt" = ( /obj/structure/lattice, @@ -697,25 +534,16 @@ /area/adminlevel/ert_station/upp_station) "kc" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "kf" = ( -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northwest, /area/adminlevel/ert_station/upp_station) "ks" = ( /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 - }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "kF" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ @@ -724,9 +552,7 @@ /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/adminlevel/ert_station/upp_station) "kN" = ( /obj/item/tool/weldingtool, @@ -742,19 +568,13 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, +/turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) "kT" = ( /obj/structure/surface/rack, /obj/item/clothing/gloves/yellow, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "lb" = ( /obj/effect/decal/warning_stripes{ @@ -780,10 +600,7 @@ dir = 4 }, /obj/structure/largecrate/black_market/confiscated_weaponry, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "lo" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -802,17 +619,12 @@ /area/adminlevel/ert_station/upp_station) "lp" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/adminlevel/ert_station/upp_station) "lw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/facepaint/black, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "mb" = ( /obj/structure/machinery/light/double/blue{ @@ -821,9 +633,7 @@ pixel_y = -1 }, /obj/structure/closet/crate/ammo/alt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "me" = ( /obj/structure/surface/table/reinforced/prison, @@ -833,25 +643,17 @@ pixel_y = 1 }, /obj/item/restraint/handcuffs, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/red1, /area/adminlevel/ert_station/upp_station) "mf" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ req_access = null }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "mq" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "mr" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -882,9 +684,7 @@ phone_id = "UPP Station"; do_not_disturb = 2 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "mJ" = ( /obj/structure/lattice, @@ -896,17 +696,11 @@ dir = 1 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ne" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "orange_icorner"; - dir = 1 - }, +/turf/open/floor/strata/orange_icorner/north, /area/adminlevel/ert_station/upp_station) "nh" = ( /obj/structure/surface/table/reinforced/black, @@ -919,9 +713,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "nC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -935,18 +727,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "om" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) "ow" = ( /obj/item/stack/catwalk, @@ -954,10 +741,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "oz" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/adminlevel/ert_station/upp_station) "oJ" = ( /obj/structure/window/reinforced{ @@ -986,16 +770,11 @@ /obj/item/bedsheet/brown{ layer = 3.2 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "oK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "oP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1016,10 +795,7 @@ /turf/open/space/basic, /area/space) "pb" = ( -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/south, /area/adminlevel/ert_station/upp_station) "pc" = ( /obj/structure/bed/chair/comfy/lime{ @@ -1028,10 +804,7 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "pe" = ( /obj/structure/girder/displaced, @@ -1048,10 +821,7 @@ /area/adminlevel/ert_station/upp_station) "pv" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "pK" = ( /obj/structure/monorail{ @@ -1070,18 +840,13 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/north, /area/adminlevel/ert_station/upp_station) "qi" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "qA" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1096,24 +861,16 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "qH" = ( -/turf/open/floor/strata{ - icon_state = "floorscorched2" - }, +/turf/open/floor/strata/floorscorched2, /area/adminlevel/ert_station/upp_station) "qM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "qU" = ( /turf/closed/shuttle/elevator, @@ -1122,10 +879,7 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/adminlevel/ert_station/upp_station) "rb" = ( /turf/open/floor/plating, @@ -1138,28 +892,20 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "rk" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "rr" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "rs" = ( /obj/structure/disposalpipe/segment{ @@ -1172,26 +918,18 @@ /area/adminlevel/ert_station/upp_station) "ry" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "rC" = ( /obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "rL" = ( /obj/structure/machinery/light/double/blue{ dir = 8 }, /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "rT" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1210,10 +948,7 @@ pixel_y = -32; density = 0 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/west, /area/adminlevel/ert_station/upp_station) "sb" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1224,18 +959,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) "sk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/tool/pickaxe/diamonddrill, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/adminlevel/ert_station/upp_station) "sr" = ( /obj/structure/lattice, @@ -1246,17 +977,13 @@ /area/space) "sy" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - icon_state = "damaged3" - }, +/turf/open/floor/strata/damaged3, /area/adminlevel/ert_station/upp_station) "sz" = ( /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floorscorched2" - }, +/turf/open/floor/strata/floorscorched2, /area/adminlevel/ert_station/upp_station) "sA" = ( /obj/effect/decal/warning_stripes{ @@ -1288,17 +1015,13 @@ pixel_y = -1 }, /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "sK" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) "sU" = ( /obj/structure/window/framed/strata, @@ -1318,19 +1041,13 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) "tr" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "tv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1344,29 +1061,20 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "tF" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "tG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ue" = ( /obj/structure/lattice, @@ -1382,31 +1090,21 @@ /area/space) "uf" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/floor/strata{ - icon_state = "green1" - }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) "uj" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) "uE" = ( /obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "uI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "uL" = ( /obj/structure/platform/kutjevo/smooth, @@ -1429,28 +1127,17 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "va" = ( /obj/structure/closet/crate/ammo/alt/flame, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "ve" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "vn" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "vo" = ( /obj/structure/disposalpipe/segment{ @@ -1461,24 +1148,16 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) "vw" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/adminlevel/ert_station/upp_station) "vH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate, /obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "vK" = ( /obj/structure/disposalpipe/segment{ @@ -1496,10 +1175,7 @@ /area/space) "vY" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "vZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1520,10 +1196,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "wr" = ( /obj/structure/platform/strata/metal{ @@ -1541,11 +1214,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "ws" = ( -/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/space) "wu" = ( /obj/effect/decal/warning_stripes{ @@ -1554,10 +1223,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "wA" = ( /obj/structure/machinery/light/double/blue{ @@ -1572,9 +1238,7 @@ desc = "A remote control-switch for the elevator. This one seems broken." }, /obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "wS" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -1584,19 +1248,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "wY" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Station Hallway" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "xj" = ( /obj/structure/girder, @@ -1608,24 +1267,16 @@ dir = 8 }, /obj/item/storage/toolbox/electrical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "xo" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "xy" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/upp_station) "xF" = ( /obj/structure/surface/table/reinforced/prison, @@ -1635,10 +1286,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ya" = ( /obj/effect/decal/warning_stripes{ @@ -1657,9 +1305,7 @@ pixel_x = -9; pixel_y = 19 }, -/turf/open/floor/strata{ - icon_state = "green4" - }, +/turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) "yt" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1668,16 +1314,11 @@ /turf/open/space, /area/space) "yH" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "zr" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "green1" - }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) "zs" = ( /obj/effect/decal/warning_stripes{ @@ -1692,23 +1333,15 @@ /area/adminlevel/ert_station/upp_station) "zx" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "zK" = ( /obj/structure/closet/firecloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "zL" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "zQ" = ( /obj/structure/prop/almayer/missile_tube{ @@ -1716,26 +1349,17 @@ name = "\improper AT-87 ASAT launcher system"; desc = "Cold launch tubes that can fire a few varieties of missiles out of them, the most common being the AT-87 ASAT 11K223 ?Spigot? missile used against satellites and other spacecraft and the 11K221 ?Konkurs? missile which is used for ground attack." }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "zX" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "zY" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "Ae" = ( /obj/structure/surface/table/reinforced/prison, @@ -1743,19 +1367,13 @@ pixel_y = 9; pixel_x = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ak" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, /obj/item/device/defibrillator, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "Au" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1773,10 +1391,7 @@ /area/adminlevel/ert_station/upp_station) "AI" = ( /obj/structure/closet/crate, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "AN" = ( /turf/open/space/basic, @@ -1798,17 +1413,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) "Be" = ( /obj/structure/filingcabinet{ layer = 2.9 }, -/turf/open/floor/strata{ - icon_state = "green1" - }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) "Bp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1852,10 +1463,7 @@ pixel_y = 13 }, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Ce" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -1863,9 +1471,7 @@ pixel_x = -6; pixel_y = 24 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "Cp" = ( /turf/closed/wall/rock/brown, @@ -1875,10 +1481,7 @@ name = "Engineering"; dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Cy" = ( /obj/structure/window/reinforced{ @@ -1907,31 +1510,21 @@ /obj/item/bedsheet/brown{ layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/upp_station) "CG" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "CI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/east, /area/adminlevel/ert_station/upp_station) "CM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/colony{ name = "\improper Elevator Airlock"; dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "CW" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ @@ -1940,17 +1533,11 @@ /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "Df" = ( /obj/structure/closet/firecloset, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 - }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "Dv" = ( /turf/closed/wall/strata_outpost, @@ -1959,10 +1546,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northwest, /area/adminlevel/ert_station/upp_station) "DK" = ( /obj/structure/machinery/computer/emails{ @@ -1970,61 +1554,43 @@ }, /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Eg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) "El" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/adminlevel/ert_station/upp_station) "EA" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "ES" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "EZ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/upp_station) "Fh" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Fj" = ( /obj/structure/surface/table/reinforced/black, /obj/item/folder/black, /obj/item/tool/pen, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "FA" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "FF" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2034,36 +1600,24 @@ /area/adminlevel/ert_station/upp_station) "FI" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "FJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "FL" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/megaphone, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, +/turf/open/floor/strata/green3/north, /area/adminlevel/ert_station/upp_station) "FP" = ( /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "Ga" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2103,10 +1657,7 @@ /turf/open/space/basic, /area/space) "Gw" = ( -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) "GE" = ( /turf/closed/shuttle/elevator{ @@ -2132,10 +1683,7 @@ /area/adminlevel/ert_station/upp_station) "Hb" = ( /obj/structure/largecrate/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Hc" = ( /obj/structure/platform_decoration/kutjevo{ @@ -2159,10 +1707,7 @@ /area/adminlevel/ert_station/upp_station) "Hp" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 8 - }, +/turf/open/floor/strata/red4/west, /area/adminlevel/ert_station/upp_station) "Hx" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2171,17 +1716,11 @@ /area/adminlevel/ert_station/upp_station) "HR" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "Is" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "IC" = ( /obj/structure/barricade/handrail{ @@ -2205,29 +1744,20 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "IQ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/structure/largecrate/black_market/confiscated_equipment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "IT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) "IV" = ( /obj/structure/bedsheetbin{ @@ -2242,10 +1772,7 @@ /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "Jc" = ( /obj/structure/surface/table/reinforced/prison, @@ -2256,26 +1783,17 @@ pixel_y = 2 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Jj" = ( /obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "Jl" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "Jp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2287,10 +1805,7 @@ /area/adminlevel/ert_station/upp_station) "Js" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/adminlevel/ert_station/upp_station) "Jz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -2298,9 +1813,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "JB" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "JV" = ( /obj/item/tool/wet_sign, @@ -2309,32 +1822,22 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "JX" = ( /obj/structure/closet/boxinggloves, -/turf/open/asphalt/cement{ - icon_state = "cement1"; - dir = 1 - }, +/turf/open/asphalt/cement/cement1/north, /area/adminlevel/ert_station/upp_station) "JZ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Kb" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "Kj" = ( /obj/structure/barricade/handrail{ @@ -2368,29 +1871,18 @@ /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/adminlevel/ert_station/upp_station) "KF" = ( /obj/structure/morgue, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "KL" = ( -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northeast, /area/adminlevel/ert_station/upp_station) "KX" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Lg" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2403,17 +1895,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ name = "Engineering" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ln" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "orange_icorner"; - dir = 8 - }, +/turf/open/floor/strata/orange_icorner/west, /area/adminlevel/ert_station/upp_station) "Lo" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2433,10 +1919,7 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1"; - dir = 1 - }, +/turf/open/asphalt/cement/cement1/north, /area/adminlevel/ert_station/upp_station) "LG" = ( /obj/structure/lattice, @@ -2455,25 +1938,17 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "LN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, /obj/item/attachable/bayonet/upp, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/adminlevel/ert_station/upp_station) "LO" = ( /obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "LQ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2481,10 +1956,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Station Hallway" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Mc" = ( /obj/structure/monorail{ @@ -2497,18 +1969,12 @@ /obj/item/clothing/gloves/latex, /obj/item/clothing/head/chefhat, /obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Mk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "Mt" = ( /obj/structure/platform/kutjevo/smooth, @@ -2521,34 +1987,25 @@ /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/adminlevel/ert_station/upp_station) "ME" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/upp, /obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "MG" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "MM" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "MU" = ( /obj/structure/surface/table/reinforced/black, @@ -2558,26 +2015,18 @@ /obj/item/tool/stamp{ pixel_y = 10 }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "Ne" = ( /obj/structure/machinery/light/double/blue, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ni" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ns" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -2589,10 +2038,7 @@ /area/adminlevel/ert_station/upp_station) "Nz" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) "NQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2638,19 +2084,13 @@ "OS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/large_holster/machete/full, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/north, /area/adminlevel/ert_station/upp_station) "Ph" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Pj" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2668,17 +2108,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "PQ" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 4 - }, +/turf/open/floor/strata/red4/east, /area/adminlevel/ert_station/upp_station) "PS" = ( /obj/effect/decal/warning_stripes{ @@ -2687,33 +2121,23 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "PT" = ( /obj/structure/machinery/sleep_console, /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "Qu" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) "Qz" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/adminlevel/ert_station/upp_station) "QG" = ( /turf/closed/shuttle/elevator{ @@ -2724,23 +2148,16 @@ /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "QR" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "Rd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, +/turf/open/floor/strata/red3/north, /area/adminlevel/ert_station/upp_station) "Rf" = ( /turf/open/asphalt/cement, @@ -2774,24 +2191,16 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "RK" = ( /obj/structure/machinery/iv_drip, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/west, /area/adminlevel/ert_station/upp_station) "RQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/adminlevel/ert_station/upp_station) "RR" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2805,10 +2214,7 @@ /area/adminlevel/ert_station/upp_station) "RS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "RU" = ( /obj/effect/decal/warning_stripes{ @@ -2820,10 +2226,7 @@ /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Sf" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2831,19 +2234,13 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Sh" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/adminlevel/ert_station/upp_station) "Si" = ( /obj/structure/bookcase{ @@ -2852,25 +2249,16 @@ pixel_x = 2; density = 0 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, +/turf/open/floor/strata/green3/north, /area/adminlevel/ert_station/upp_station) "Sj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Sn" = ( -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, +/turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) "Sq" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2883,30 +2271,20 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "Sy" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) "SB" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "SC" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) "SI" = ( /obj/structure/surface/table/reinforced, @@ -2925,19 +2303,13 @@ /obj/item/trash/plate{ pixel_y = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "SL" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "SR" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -2945,10 +2317,7 @@ name = "\improper Toilet" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "SS" = ( /obj/docking_port/stationary/emergency_response/idle_port3, @@ -2961,10 +2330,7 @@ /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Tb" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -2974,34 +2340,23 @@ name = "Station Hallway"; dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Tj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) "Tm" = ( /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Tr" = ( /obj/effect/landmark/wo_supplies/storage/m56d, /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "Tu" = ( /obj/structure/sink{ @@ -3016,43 +2371,29 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "Ty" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Shuttle Bay" }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "TB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) "TE" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "TG" = ( -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "TH" = ( /obj/structure/surface/table/reinforced, @@ -3064,17 +2405,11 @@ pixel_x = -8 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "TI" = ( /obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "TM" = ( /obj/structure/barricade/handrail{ @@ -3093,10 +2428,7 @@ /area/space) "TQ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "TT" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -3107,10 +2439,7 @@ /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ug" = ( /obj/structure/surface/table/reinforced/prison, @@ -3121,35 +2450,23 @@ pixel_x = -9 }, /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 5 - }, +/turf/open/floor/strata/green3/northeast, /area/adminlevel/ert_station/upp_station) "Uh" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) "Uk" = ( /obj/structure/pipes/vents/pump{ dir = 1; id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "Ul" = ( /obj/structure/closet/bodybag, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/cyan1/east, /area/adminlevel/ert_station/upp_station) "Um" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3179,10 +2496,7 @@ desc = "A sterile mask designed to help prevent the spread of diseases. This one has already been used."; name = "used sterile mask" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/adminlevel/ert_station/upp_station) "Uu" = ( /obj/structure/window/reinforced{ @@ -3211,9 +2525,7 @@ /obj/item/bedsheet/brown{ layer = 3.2 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "UA" = ( /obj/structure/surface/table/reinforced/black, @@ -3221,10 +2533,7 @@ pixel_y = -3; pixel_x = 16 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, +/turf/open/floor/strata/green3/north, /area/adminlevel/ert_station/upp_station) "UB" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3241,10 +2550,7 @@ /area/adminlevel/ert_station/upp_station) "UM" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "UU" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3264,10 +2570,7 @@ /turf/open/space/basic, /area/space) "Vo" = ( -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 1 - }, +/turf/open/floor/strata/red4/north, /area/adminlevel/ert_station/upp_station) "Vp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3281,10 +2584,7 @@ /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) "Vx" = ( /turf/closed/shuttle/elevator{ @@ -3312,15 +2612,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 - }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "Wb" = ( -/turf/open/floor/strata{ - icon_state = "blue4" - }, +/turf/open/floor/strata/blue4, /area/adminlevel/ert_station/upp_station) "We" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3342,10 +2637,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Wr" = ( /obj/structure/disposalpipe/segment{ @@ -3357,16 +2649,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Station Hallway" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "WL" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "WQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3379,17 +2666,12 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, +/turf/open/floor/strata/green3/north, /area/adminlevel/ert_station/upp_station) "WZ" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "Xb" = ( /obj/structure/monorail{ @@ -3412,9 +2694,7 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "XG" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/adminlevel/ert_station/upp_station) "XL" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -3422,29 +2702,21 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floorscorched1" - }, +/turf/open/floor/strata/floorscorched1, /area/adminlevel/ert_station/upp_station) "XM" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "Yy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "YH" = ( /obj/effect/decal/warning_stripes{ @@ -3467,29 +2739,21 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "YS" = ( /obj/structure/bed/roller, /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) "YW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green1" - }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) "YY" = ( /obj/effect/decal/warning_stripes{ @@ -3498,23 +2762,14 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Zm" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Zt" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "ZH" = ( /obj/structure/lattice, @@ -3528,34 +2783,22 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "ZR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate, /obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "ZS" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +/turf/open/floor/strata/green4/west, /area/adminlevel/ert_station/upp_station) "ZX" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, +/turf/open/floor/strata/blue3/west, /area/adminlevel/ert_station/upp_station) (1,1,1) = {" diff --git a/maps/templates/lazy_templates/uscm_ert_station.dmm b/maps/templates/lazy_templates/uscm_ert_station.dmm new file mode 100644 index 000000000000..36c040706ed9 --- /dev/null +++ b/maps/templates/lazy_templates/uscm_ert_station.dmm @@ -0,0 +1,9486 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/adminlevel/ert_station/uscm_station) +"ac" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"af" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ag" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ah" = ( +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate/northeast, +/area/adminlevel/ert_station/uscm_station) +"au" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"aw" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"aC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"aD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"aF" = ( +/obj/item/ammo_magazine/rifle/lmg, +/obj/item/weapon/gun/rifle/lmg, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"aJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"aM" = ( +/obj/structure/window/framed/almayer/hull, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "engladder"; + height = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"aW" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"ba" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"bc" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"bl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"bv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"bB" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"bU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"bV" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"bX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"bY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = -19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"cf" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 13; + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ci" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"cp" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"cy" = ( +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"cz" = ( +/obj/item/hardpoint/support/artillery_module, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"cG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"cU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/podhatch/southeast, +/area/adminlevel/ert_station/uscm_station) +"cW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"cX" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"cZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"df" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"di" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"du" = ( +/obj/structure/bed/roller, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"dy" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dz" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"dH" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"dP" = ( +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"dQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"dR" = ( +/obj/structure/sign/safety/galley{ + pixel_y = -30 + }, +/obj/structure/sign/safety/food_storage{ + pixel_y = -30; + pixel_x = 15 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"dW" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"dX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ej" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ek" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"ep" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/red, +/area/adminlevel/ert_station/uscm_station) +"er" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"es" = ( +/obj/effect/decal/warning_stripes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"et" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"eu" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"eG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eL" = ( +/turf/open/floor/almayer/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"eW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"eY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" + }, +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"fc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"fe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"fh" = ( +/obj/item/weapon/gun/rifle/m41a, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/attached_gun/shotgun, +/obj/item/attachable/attached_gun/shotgun, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"fi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/adminlevel/ert_station/uscm_station) +"fj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"fn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"fo" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/item/hardpoint/special/firing_port_weapon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"fu" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"fw" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"fz" = ( +/obj/item/weapon/gun/pistol/highpower, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/ap, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/hp, +/obj/item/ammo_magazine/pistol/incendiary, +/obj/item/ammo_magazine/pistol/m1911, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red/southeast, +/area/adminlevel/ert_station/uscm_station) +"fE" = ( +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"fI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"fN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"fP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"fQ" = ( +/obj/item/storage/lockbox/loyalty{ + req_access = list(200) + }, +/obj/item/storage/briefcase, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"fV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"fY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gE" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"gQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"gW" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"gY" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/adminlevel/ert_station/uscm_station) +"hc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"hi" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"hk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/adminlevel/ert_station/uscm_station) +"hm" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"ho" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"hq" = ( +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"hu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"hw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hy" = ( +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"hz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"hJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"hN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + indestructible = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"hO" = ( +/obj/structure/ladder{ + id = "regladder5"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"hY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole, +/obj/structure/sign/safety/autodoc{ + pixel_x = -18; + pixel_y = 25 + }, +/obj/structure/sign/safety/med_life_support{ + pixel_y = 25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"if" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"im" = ( +/obj/item/bedsheet/hos, +/obj/item/clothing/mask/balaclava, +/obj/structure/bed, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"in" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"ip" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"iq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"ir" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/adminlevel/ert_station/uscm_station) +"iv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"iD" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"iE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/uscm/directional, +/area/adminlevel/ert_station/uscm_station) +"iK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder2"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"iP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station/uscm_station) +"iW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"ja" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder2"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ji" = ( +/turf/closed/wall/almayer/white/hull, +/area/adminlevel/ert_station/uscm_station) +"jk" = ( +/turf/open/floor/podhatch/northeast, +/area/adminlevel/ert_station/uscm_station) +"jn" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"jA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"jM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"jP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"jW" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"jZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ka" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"kb" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"kf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"kA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northwest, +/area/adminlevel/ert_station/uscm_station) +"kE" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"kX" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"kZ" = ( +/turf/open/space/basic, +/area/space) +"lf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"li" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"lj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lu" = ( +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"lz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"lA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"lE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lG" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"lH" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"lI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"lO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"lP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"lY" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"lZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"md" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"mh" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -24; + pixel_y = 32 + }, +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"mk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/adminlevel/ert_station/uscm_station) +"mo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"mp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"ms" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"mv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"mw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"mx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"mD" = ( +/turf/closed/wall/almayer/white, +/area/adminlevel/ert_station/uscm_station) +"mF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"mM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv, +/obj/item/storage/belt/medical/lifesaver/full, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"mO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"mR" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"mY" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz1"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"na" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/hardpoint/locomotion/apc_wheels, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"nc" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "oxygen_lower_out" + }, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"nd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"nq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"nu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/crap, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"nw" = ( +/obj/item/ammo_magazine/revolver/mateba, +/obj/item/ammo_magazine/rifle/ap, +/obj/item/ammo_magazine/rifle/incendiary, +/obj/item/ammo_magazine/rifle/lmg, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/smg/m39/ap, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"nH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nJ" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"nK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"nN" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"nP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nQ" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz5"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"nS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"nY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"od" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz6"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"oe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"oh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"om" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ot" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ow" = ( +/obj/item/hardpoint/primary/arc_sentry{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"oC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"oD" = ( +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station/uscm_station) +"oE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + indestructible = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"oT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"oU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + req_one_access = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"pg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ph" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"pi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"ps" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"py" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"pF" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pI" = ( +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"pM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"pP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"pR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"pX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"qi" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"qu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"qx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"qy" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"qE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"qH" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"qI" = ( +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"qQ" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"qT" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ra" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"rd" = ( +/obj/structure/ladder{ + id = "regladder6"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"rr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"rs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"rw" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"rC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"rD" = ( +/obj/structure/target, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"rG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"rP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"rS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"rW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"rY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"sa" = ( +/obj/structure/ladder{ + id = "regladder5"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder1"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sd" = ( +/obj/structure/platform, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"sg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"si" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -22 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sj" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"st" = ( +/obj/structure/bed/roller, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"su" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"sy" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"sG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sH" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"sL" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"sN" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"sU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"tf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"th" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = -19 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"tl" = ( +/obj/structure/largecrate/supply/powerloader, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"to" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"tw" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"tx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"ty" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"tC" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"tD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"tE" = ( +/obj/structure/closet/secure_closet/securecom, +/obj/item/weapon/gun/smartgun, +/turf/open/floor/red/northwest, +/area/adminlevel/ert_station/uscm_station) +"tM" = ( +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"tP" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"tY" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = 32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"us" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"ux" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"uD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"uF" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"uG" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/rifle/m41a/training, +/turf/open/floor/almayer/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"uL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"uM" = ( +/obj/structure/largecrate/guns, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"uR" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating/platebotc, +/area/adminlevel/ert_station/uscm_station) +"uY" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"vc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"vm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"vo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"vu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator/upgraded, +/obj/item/device/defibrillator/upgraded, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"vv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"vx" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"vy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"vF" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"vG" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"vH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"vI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wc" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"wi" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"wo" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"wp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"wr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"ws" = ( +/obj/structure/bookcase{ + dir = 4 + }, +/obj/item/book/manual/evaguide, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"wt" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"ww" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"wx" = ( +/turf/open/floor/red/north, +/area/adminlevel/ert_station/uscm_station) +"wA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"wE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"wF" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/adminlevel/ert_station/uscm_station) +"wH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + req_one_access = list(100) + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wI" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"wO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xl" = ( +/turf/open/floor/red/northeast, +/area/adminlevel/ert_station/uscm_station) +"xn" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"xu" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"xw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xA" = ( +/obj/structure/largecrate/random, +/obj/item/seeds/ambrosiavulgarisseed{ + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"xB" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"xF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xK" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"xL" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"xP" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"xT" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"xU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"xX" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ym" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"yq" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yx" = ( +/obj/structure/prop/dam/crane, +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + name = "Damaged FS/ACS-9 cooling system"; + desc = "A cooling system for the Tripoli. It produces additional cooling reducing delays between launch. The pipes are crooked and bent, hoses are sliced open, and that's not even mentioning the bullet holes. Looks to be an older model as well."; + density = 1; + pixel_y = 16; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yz" = ( +/obj/structure/largecrate/supply/ammo/m41a, +/obj/structure/largecrate/supply/ammo/sentry{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yL" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"yO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/item/clothing/glasses/welding, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"yU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"yX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"yY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"zi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"zm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"zo" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/laser{ + pixel_y = -32; + pixel_x = 13 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"zr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"zt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"zC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"zG" = ( +/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" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"zK" = ( +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"zO" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"zQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"zT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"zW" = ( +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Ad" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"Am" = ( +/obj/structure/morgue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"AA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"AR" = ( +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"AT" = ( +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Ba" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"Bc" = ( +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Bh" = ( +/obj/structure/ladder{ + id = "regladder3"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"Bp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Bs" = ( +/turf/open/floor/almayer_hull, +/area/space) +"Bv" = ( +/obj/structure/morgue/crematorium{ + id = "crema" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bz" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = -22 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"BF" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"BH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"BI" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"BJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"BO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"BQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"BS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"BX" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ch" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/rifle/l42a/training, +/turf/open/floor/almayer/red/north, +/area/adminlevel/ert_station/uscm_station) +"Cj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/uscm/directional/north, +/area/adminlevel/ert_station/uscm_station) +"Cl" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Cx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"CC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"CF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"CL" = ( +/turf/open/floor/podhatch/north, +/area/adminlevel/ert_station/uscm_station) +"CN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"CO" = ( +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"CR" = ( +/obj/structure/machinery/door/poddoor/almayer, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"CS" = ( +/turf/open/floor/almayer/redcorner/west, +/area/adminlevel/ert_station/uscm_station) +"CT" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Df" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"Dh" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Dj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"Dp" = ( +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder1"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Dy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Dz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"DE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"DG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"DH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"DM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"DR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"DW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"Ef" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Ei" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Ej" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/ladder{ + id = "regladder3"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Eq" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Er" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"Eu" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"EA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"EG" = ( +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"EH" = ( +/obj/structure/machinery/chem_dispenser/medbay, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"EL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"EN" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"EQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"ER" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"EY" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Fb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Fg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Fk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Fo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Fq" = ( +/obj/structure/largecrate/random, +/obj/item/ammo_magazine/pistol/holdout{ + layer = 2 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ft" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"Fx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = -20; + pixel_y = -7 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -20; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Fz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"FB" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"FE" = ( +/obj/item/book/manual/security_space_law, +/obj/item/tool/crowbar, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/storage/backpack/satchel, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"FG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"FH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"FV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + indestructible = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"FX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"FZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Gd" = ( +/obj/structure/platform_decoration, +/obj/item/hardpoint/armor/paladin, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ge" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Gf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/explosives/grenades, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Gg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Gj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/adminlevel/ert_station/uscm_station) +"Gm" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 7; + pixel_y = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"Gn" = ( +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"Gv" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"GD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 14; + pixel_y = 31 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"GG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"GJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"GK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"GL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"GT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"GW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ha" = ( +/obj/structure/sign/safety/firingrange, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Hc" = ( +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Hm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/adminlevel/ert_station/uscm_station) +"HG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"HI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HK" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"HT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/adminlevel/ert_station/uscm_station) +"HU" = ( +/obj/structure/ladder{ + id = "regladder4"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ie" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"IE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"IH" = ( +/obj/docking_port/stationary/emergency_response/idle_port6{ + name = "USS Kurtz Landing Pad" + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"IJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/apc_cmd/decrepit{ + dir = 8; + pixel_y = -34; + pixel_x = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"IN" = ( +/obj/structure/machinery/optable, +/turf/open/floor/podhatch, +/area/adminlevel/ert_station/uscm_station) +"IP" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"IV" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Jc" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"Je" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ji" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"Ju" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Jv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Jw" = ( +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"JF" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"JO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"JP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + dir = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Ka" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Kj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Kl" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_one_access = null; + dir = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"Kn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ks" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Kw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ky" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"KS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"KX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/pistol/mod88/training, +/turf/open/floor/almayer/red/north, +/area/adminlevel/ert_station/uscm_station) +"KY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"KZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"Lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Lg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Li" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"Lo" = ( +/obj/structure/foamed_metal/iron, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Lq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Lu" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/pistol/m4a3/training, +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/ert_station/uscm_station) +"Lx" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ly" = ( +/obj/structure/largecrate/random/case{ + pixel_y = -5 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Lz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory"; + dir = 2 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"LE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"LG" = ( +/obj/structure/ladder{ + id = "engladder"; + height = 2 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"LH" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/adminlevel/ert_station/uscm_station) +"LJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/crane/cargo{ + dir = 4; + desc = "Standard cargo crane used by the USCM. Looks like this one has replacement parts for the Tripoli on it. You probably couldn't name half of these." + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"LN" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"LO" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"Mj" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"Mn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"Mz" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"MB" = ( +/obj/structure/filingcabinet/security, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"MJ" = ( +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MV" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/turf/open/floor/podhatch/southwest, +/area/adminlevel/ert_station/uscm_station) +"Ny" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"NE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"NN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"NQ" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/adminlevel/ert_station/uscm_station) +"NU" = ( +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/adminlevel/ert_station/uscm_station) +"Oh" = ( +/obj/structure/bed/roller, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"Ol" = ( +/obj/structure/closet/coffin, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OA" = ( +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"OE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OM" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"ON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"OU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/arc{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 2; + indestructible = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Pa" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz2"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Po" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Px" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"PD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"PE" = ( +/obj/structure/ladder{ + id = "regladder4"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PH" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PK" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"PT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/podhatch/northwest, +/area/adminlevel/ert_station/uscm_station) +"Qa" = ( +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"Qf" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qh" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Qj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Qm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qt" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"Qu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Qv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"QB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"QC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"QD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"QI" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"QL" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"QU" = ( +/obj/effect/vehicle_spawner/van/fixed{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ra" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"Rg" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station/uscm_station) +"Rh" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz3"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Rl" = ( +/obj/structure/ship_ammo/rocket/napalm, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Rv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ry" = ( +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"RA" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"RE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"RI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"RJ" = ( +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"RL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"RP" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"RR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"RW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"Sj" = ( +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Sr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"SC" = ( +/obj/item/weapon/gun/shotgun/combat{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"SF" = ( +/turf/open/floor/plating, +/area/space) +"SP" = ( +/obj/structure/ladder{ + id = "regladder6"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"SX" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Td" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Th" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Tm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Tr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"TB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"TF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"TH" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"TP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"TX" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile"; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Uc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ug" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"Uh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"Ui" = ( +/obj/structure/largecrate/supply/weapons/m56d, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Un" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Uu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Uy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"UF" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"UH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"UL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"UU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"Vc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Vk" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Vm" = ( +/obj/item/storage/box/monkeycubes, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"Vt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"VA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"VE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"VF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"VI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"VO" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"VZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Wd" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Wm" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Wq" = ( +/obj/structure/transmitter/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"Wr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Wv" = ( +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/obj/structure/largecrate/random/case, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Wz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"WE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"WO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"WU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"WV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"WW" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -26; + pixel_y = -32 + }, +/obj/item/tool/warning_cone{ + pixel_y = 8; + pixel_x = -13 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/adminlevel/ert_station/uscm_station) +"WZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30; + pixel_x = 31 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station/uscm_station) +"Xd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/clothing/under/liaison_suit/suspenders, +/obj/item/clothing/under/liaison_suit/outing, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Xh" = ( +/obj/structure/bookcase{ + density = 0 + }, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Xz" = ( +/obj/structure/largecrate/random, +/obj/item/ammo_magazine/pistol/holdout{ + layer = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"XA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"XC" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"XM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"XT" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"XX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Yb" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_y = 30 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_y = 30; + pixel_x = 15 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"Yo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Yp" = ( +/obj/structure/machinery/pipedispenser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Yq" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"Ys" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"YJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"YM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"YP" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/adminlevel/ert_station/uscm_station) +"YV" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"YY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"YZ" = ( +/obj/structure/machinery/telecomms/server/presets, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"Zb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ze" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"Zf" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz4"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Zj" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"Zm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/adminlevel/ert_station/uscm_station) +"Zp" = ( +/turf/open/space, +/area/space) +"Zs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Zx" = ( +/obj/structure/machinery/telecomms/bus, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"ZI" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"ZS" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"ZW" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) + +(1,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(2,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(3,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(4,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +zK +zK +zK +zK +zK +zK +zK +zK +zK +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(5,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +zK +zK +tE +NU +ZI +ZI +Ft +Ft +hJ +zK +zK +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(6,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +zK +GW +GW +GW +zK +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +zK +zK +zK +zK +zK +zK +zK +wx +wr +wr +wr +Bn +rS +ep +zK +zK +rr +LE +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(7,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +SP +mh +nS +WW +jd +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +zK +ej +DW +XM +Zd +DW +Lz +xl +aF +fh +SC +nw +AA +fz +zK +zK +Bs +fw +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +"} +(8,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +hO +OM +ks +ir +sb +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +mD +fN +ji +ji +ji +ji +ji +ji +zK +FX +zK +zK +zK +aJ +zK +zK +zK +aJ +zK +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(9,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +Dy +sU +VF +sU +rj +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +LO +Uh +ym +tC +mD +PT +MZ +mD +Bz +BJ +si +Hc +YZ +OA +YZ +YZ +YZ +OA +hi +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(10,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +HU +OM +ks +Lg +Bk +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +VZ +mD +Qt +CO +CO +Er +Kl +CL +IN +mD +qL +ks +qL +Hc +YZ +OA +OA +OA +OA +OA +hi +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(11,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +Bh +Ad +PD +fu +dR +vo +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +aw +CO +CO +Er +mD +jk +cU +mD +Lg +ks +Dp +Hc +YZ +OA +OA +Zx +Zx +OA +hi +zK +LE +Zp +Zp +Zp +Zp +Zp +"} +(12,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +GW +GW +GW +GW +GW +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +WU +Ik +gl +Er +mD +mD +mD +mD +ms +PD +fV +Hc +YZ +OA +qy +Zx +Zx +OA +hi +zK +fw +Zp +Zp +Zp +Zp +Zp +"} +(13,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +hY +fY +oC +fi +EN +pM +qQ +mp +Dp +bY +Hc +Hc +Hc +xX +OA +OA +OA +OA +zo +zK +zK +Zp +Zp +Zp +Zp +Zp +"} +(14,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Zd +mD +Oh +IE +IE +Dm +BQ +Vm +YJ +rP +sU +Qj +Mj +tx +Mj +OA +OA +OA +OA +OA +cp +zK +zK +zK +Zp +Zp +Zp +Zp +"} +(15,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +FB +VO +BF +Ys +Xb +Rg +Yq +mD +ms +nu +Hc +Hc +Hc +jW +fE +Li +JF +fE +OA +GT +DW +zK +zK +Zp +Zp +Zp +"} +(16,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +RE +mD +mD +mD +mD +mD +ph +Er +mD +mD +vI +Ky +yg +Hc +Zx +OA +Hc +EY +EY +EY +Hc +Hc +Rj +Hc +zK +Zp +Zp +Zp +"} +(17,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +IP +sL +zG +mD +ph +fi +OR +mD +Lg +ks +Lg +Hc +Zx +OA +EY +iD +xP +XT +iD +Hc +Zd +uM +zK +Zp +Zp +Zp +"} +(18,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Ji +rr +rr +zK +DW +sj +Vt +TP +RL +ja +zC +CO +bU +mD +Lg +ks +Lg +Hc +Zx +OA +EY +eW +Ka +eF +pD +tx +DW +hc +zK +Zp +Zp +Zp +"} +(19,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +Bs +zK +DW +mD +Ra +xu +ci +mD +vu +mM +iY +mD +fI +NE +FZ +Hc +Zx +OA +EY +pD +VA +zZ +pD +Hc +DW +Xz +zK +Zp +Zp +Zp +"} +(20,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +Bs +zK +DW +mD +mD +vG +Gm +mD +mD +mD +mD +mD +GD +Hc +ks +Hc +Hc +Hc +Hc +AR +di +pD +Df +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(21,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +zK +zK +DW +xA +mD +lz +bl +LN +Uh +LN +Tr +vG +Qv +Kw +xw +Hc +pD +pD +pD +AR +di +Eq +th +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(22,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +zK +PC +Zd +au +mD +Fz +fn +Dm +dT +pP +Er +in +Dp +yY +EQ +ra +dQ +nK +wo +UL +cG +BO +ER +Hc +DW +om +zK +Zp +Zp +Zp +"} +(23,1,1) = {" +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +DW +mD +mD +mD +lH +EH +cW +KS +mx +iv +vG +Dp +PD +Lg +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +DW +GL +zK +Zp +Zp +Zp +"} +(24,1,1) = {" +kZ +kZ +kZ +kZ +zK +GW +GW +GW +zK +zK +zK +zK +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +DW +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +Dp +ks +Fb +Hc +kA +oh +vy +zm +Jd +iO +Gj +Hc +DW +Fq +zK +Zp +Zp +Zp +"} +(25,1,1) = {" +kZ +kZ +kZ +kZ +zK +Lx +nS +XC +XX +CF +Lg +WO +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +Zd +mD +ac +ac +ac +jA +ac +ac +ac +vF +mD +Dp +ks +QI +to +ak +PL +yS +lA +PL +KY +HT +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(26,1,1) = {" +kZ +kZ +kZ +kZ +zK +Od +Qv +nH +YM +xF +FZ +zK +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +aW +mD +MJ +MJ +MJ +xU +WE +ot +nH +nH +BX +sU +ei +Lg +Hc +Hc +Hc +Hc +iM +Hc +Hc +UH +Hc +DW +Hc +zK +LE +Zp +Zp +"} +(27,1,1) = {" +kZ +kZ +kZ +kZ +zK +Ks +lY +kE +rw +Lg +Dp +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Rv +FG +Rv +Rv +Rv +Rv +Rv +Rv +Rv +MJ +mD +vv +ks +Dp +Hc +Lo +Hc +RW +es +aC +Hc +UH +DW +DW +Xz +zK +fw +Zp +Zp +"} +(28,1,1) = {" +kZ +kZ +kZ +kZ +zK +wH +Eu +zK +zK +dP +OZ +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Bv +Rv +pF +pF +pF +Rv +pF +pF +pF +MJ +mD +tD +fj +MJ +Hc +Lo +Hc +Hc +wN +Hc +Hc +Hc +Hc +Zd +Xz +zK +zK +Zp +Zp +"} +(29,1,1) = {" +kZ +kZ +kZ +kZ +zK +wA +wt +zK +fe +Dg +mw +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +mD +tY +ac +ac +ac +qL +Am +Am +Am +MJ +mD +tD +fj +MJ +Hc +Lo +Lo +Hc +Hc +Hc +IV +DW +XM +DW +DW +DW +zK +Zp +Zp +"} +(30,1,1) = {" +kZ +kZ +kZ +zK +hN +rs +rs +JP +RJ +Po +LG +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Qf +Rv +tD +MJ +MJ +qL +tD +tD +tD +MJ +mD +Ry +ks +Dp +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +dz +zK +Zp +Zp +"} +(31,1,1) = {" +kZ +kZ +kZ +zK +cy +nN +cy +zK +lG +CC +ux +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Rv +qL +Rv +Rv +Rv +Rv +Rv +Rv +Rv +qL +TF +Dp +ks +Dp +EY +Sj +hq +HK +Ba +AT +Hc +li +pi +Ei +ws +Xh +zK +Zp +Zp +"} +(32,1,1) = {" +kZ +kZ +kZ +kZ +zK +zK +FV +zK +zK +oE +zK +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +pF +Rv +pF +pF +pF +tf +pF +pF +pF +Ol +mD +Dp +PD +Dp +EY +Sj +wI +HI +hq +AT +Hc +GJ +Jv +Sj +AT +AT +zK +Zp +Zp +"} +(33,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +zK +kZ +kZ +zK +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +zK +zK +ji +mD +SX +mD +mD +mD +mD +mD +mD +mD +mD +mD +Lg +ks +Dp +Hc +Sj +hq +ty +bB +AT +Hc +xB +hq +hq +AT +AT +zK +Zp +Zp +"} +(34,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Ly +Rv +MJ +tD +GG +Fx +eb +eb +eb +eb +FZ +MJ +yg +Hc +Lg +jZ +sU +vc +BS +uY +hm +Wq +AT +Hc +eY +hq +hq +AT +fQ +zK +Zp +Zp +"} +(35,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Wv +hz +lP +lP +ON +hW +lP +lP +mw +Px +LJ +MJ +tD +lE +Lg +ks +pS +Hc +zT +oT +oT +oT +GK +Wr +uL +oT +oT +Qu +Xd +zK +Zp +Zp +"} +(36,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +bX +qI +qI +qI +qI +qI +qI +DW +er +jZ +WE +ot +ot +sU +Qj +us +Hc +AT +AT +AT +AT +AT +Hc +MB +hq +hq +jP +im +zK +Zp +Zp +"} +(37,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +bX +qI +qI +qI +qI +qI +qI +qI +hw +Qj +MJ +MJ +Hc +Dp +PD +Lg +EY +AT +AT +ka +AT +AT +Hc +lR +hq +Hm +FE +pI +zK +Zp +Zp +"} +(38,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +Pt +qI +qI +qI +qI +qI +qI +qI +pR +PD +MJ +st +EY +fI +NE +FZ +EY +AT +AT +AT +AT +AT +Hc +Hc +dW +zK +zK +zK +zK +Zp +Zp +"} +(39,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +Pt +qI +qI +qI +qI +qI +qI +qI +Lq +ks +tD +yg +Hc +PD +Hc +PD +Hc +qH +jn +vm +Sj +qH +Hc +bc +Zd +zK +Bs +fw +Zp +Zp +Zp +"} +(40,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +pR +ks +tD +Hc +Hc +rG +Kw +mO +Hc +Hc +Hc +Hc +Hc +Hc +Hc +DW +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(41,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +hw +ei +tD +EY +rd +Dp +PD +Dp +iK +Hc +et +au +qi +af +Hc +RE +Hc +zK +Bs +fw +Zp +Zp +Zp +"} +(42,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +pR +ks +tD +EY +sa +YP +HE +LH +Dw +Hc +au +Uu +DW +DW +DW +DW +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(43,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +QL +lf +Gf +Dz +Zs +su +ag +ag +ag +Pr +ks +tD +EY +Dy +Cj +mk +iF +rj +Hc +hc +DW +DW +DH +Hc +mv +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(44,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Ui +MJ +Wm +MJ +Qv +nH +yd +eb +eb +hB +ei +tD +EY +PE +wF +hk +NQ +hu +Hc +xT +DW +Zd +DW +Hc +Hc +DW +zK +Bs +fw +kZ +kZ +kZ +"} +(45,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +yz +Dh +MJ +mD +mD +mD +QC +rW +uR +mD +PD +MJ +EY +Ej +sU +NE +sU +sG +pX +DW +DW +bc +bc +Hc +DW +DW +zK +Bs +qr +kZ +kZ +kZ +"} +(46,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +zK +Hc +Hc +mD +UU +HG +Zm +CO +ba +uR +PD +MJ +Hc +Ky +Fo +xL +MJ +yO +Hc +Hc +Hc +Hc +Hc +Hc +Bp +Hc +zK +zK +kZ +kZ +kZ +kZ +"} +(47,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +ww +zK +Lo +Hc +mD +NN +IE +gj +CO +Er +mD +PD +tD +tD +ks +tD +tD +MJ +PD +st +MV +RP +MP +iW +PK +MJ +Vk +qT +zK +kZ +kZ +kZ +kZ +"} +(48,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +zK +Lo +Hc +mD +Yb +du +iS +CO +zW +uR +yY +eb +eb +pg +eb +yd +eb +pg +eb +nH +nH +eb +eb +eb +xb +EI +tD +zK +kZ +kZ +kZ +kZ +"} +(49,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +zK +zK +zK +ji +mD +uR +nY +fc +uR +mD +PD +tD +tD +qL +tD +fj +tD +qL +tD +MJ +Rl +MN +iP +tM +tD +PD +MJ +zK +kZ +kZ +kZ +kZ +"} +(50,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +qE +Bs +zK +tD +tD +yY +nH +nH +Ge +lN +MJ +MJ +Rv +MJ +kf +MJ +Rv +MJ +tD +tD +MN +MJ +tM +tD +PD +MJ +zK +kZ +kZ +kZ +kZ +"} +(51,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +ww +lZ +zK +XA +Px +PD +MJ +MJ +mo +ho +Yo +Fk +Rv +Uc +Yo +Fk +Rv +Uc +Yo +Yo +Yo +ho +sH +tD +nP +ps +zK +kZ +kZ +kZ +kZ +"} +(52,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +pR +PD +QU +Rv +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +IH +uD +fI +yR +ir +mR +kZ +kZ +kZ +kZ +"} +(53,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +jZ +ot +rj +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +WZ +kf +zr +ir +mR +kZ +kZ +kZ +kZ +"} +(54,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +ks +MJ +tD +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +tD +MJ +zr +ir +mR +kZ +kZ +kZ +kZ +"} +(55,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +ks +MJ +qL +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +tD +MJ +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(56,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +KZ +er +ks +MJ +tD +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +MJ +MJ +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(57,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +jZ +ot +zt +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +hv +OE +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(58,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +OU +ks +MJ +Rv +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +uD +Ii +yR +ir +mR +Zp +Zp +Zp +Zp +"} +(59,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +zK +QB +yr +PD +MJ +MJ +wp +bv +Ey +Sr +Rv +jM +Ey +vH +Rv +jM +Ey +Ey +Ey +bv +DG +tD +EL +WV +zK +Zp +Zp +Zp +Zp +"} +(60,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Ji +zK +tD +tD +PD +MJ +tD +tD +MJ +MJ +MJ +Rv +MJ +Qm +MJ +Rv +MJ +MJ +MJ +MJ +MP +tD +tD +PD +tD +zK +Zp +Zp +Zp +Zp +"} +(61,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +MP +tD +Qv +nH +yd +EI +MJ +MJ +MJ +qL +tD +fj +tD +qL +tD +tD +MJ +MJ +tD +tD +tD +oe +tD +zK +Zp +Zp +Zp +Zp +"} +(62,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +Hc +Hc +Hc +MJ +Ky +Qv +nH +bV +TX +Mz +yd +pg +yd +eb +eb +eb +nH +nH +eb +eb +nH +tP +qc +zK +Zp +Zp +Zp +Zp +"} +(63,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +Lo +Lo +Hc +MJ +Ky +PH +Vk +vx +vx +vx +ks +tD +PD +tD +MJ +yx +MJ +md +MJ +gQ +lj +iE +iW +zK +Zp +Zp +Zp +Zp +"} +(64,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +zK +zK +Hc +MJ +yO +Hc +Hc +vx +vx +Gg +PD +Ju +PD +tD +MJ +MJ +Hc +Hc +zK +zK +zK +zK +zK +zK +Zp +Zp +Zp +Zp +"} +(65,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +mY +RA +Lu +Dp +Kn +uG +Hc +Hc +Hc +Hc +Je +Hc +Je +ek +Hc +Hc +Hc +kX +zK +EG +EG +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(66,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Bs +RA +KX +Lg +wW +CS +eL +FH +Hc +Ze +PD +MJ +PD +yg +Hc +Yp +qL +kb +xn +nc +gE +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(67,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Pa +RA +Ch +fI +NE +FZ +oD +FH +Hc +Ze +PD +MJ +sN +iW +Hc +Td +qL +CT +zK +EG +EG +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(68,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Bs +RA +Vc +lN +Rv +Qv +nq +Lg +Hc +BH +ks +tD +PD +YY +Hc +Un +qL +CN +zK +zK +zK +zK +Bs +qr +Zp +Zp +Zp +Zp +"} +(69,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Rh +RA +tw +tw +aD +tw +uF +UF +Hc +BH +Ii +yd +lN +Rv +oU +qL +wE +CT +zK +EG +EG +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(70,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +RA +ah +Gn +fP +Gn +Cx +yX +Hc +BH +qL +jZ +nH +nH +nH +nH +FZ +Ef +xn +Ug +YV +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(71,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Zf +zK +ah +Gn +zQ +rC +cZ +Ha +Hc +zt +ot +Qj +MJ +MJ +Th +TH +PD +JI +zK +EG +EG +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(72,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +zK +ah +Gn +zQ +rC +cZ +EY +cf +tD +Ny +PD +MJ +df +Hc +TH +PD +gY +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(73,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +nQ +zK +ZS +Gn +zQ +rC +cZ +EY +ec +tD +tD +PD +MJ +df +Hc +dH +kf +tD +MJ +Gv +wO +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(74,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +zK +nd +hy +zQ +rC +cZ +Hc +Hc +yq +xK +PD +tl +zO +Hc +dH +Rv +qL +tD +Wd +wO +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(75,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +od +zK +nd +rC +fP +nJ +nW +dX +Hc +Hc +Hc +ab +Hc +Hc +Hc +Qa +MJ +tD +MJ +Gv +dy +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(76,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +lZ +lZ +zK +VE +rC +Zb +Gn +rD +zK +zK +zK +DE +lO +sg +zK +zK +zK +if +py +qx +Gv +dy +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(77,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +zK +EA +lO +ul +zK +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(78,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +EA +lO +sy +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(79,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +ip +lO +sy +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(80,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +ip +lO +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(81,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +iq +Jc +zi +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(82,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +wc +lO +nd +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(83,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +lO +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(84,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +eG +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(85,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +eG +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(86,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +Wz +DR +Mn +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(87,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +BI +zK +ab +Hc +ab +zK +zK +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(88,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +zK +zK +RJ +Dj +tD +Kt +QD +zK +zK +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(89,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +fo +ZW +Fm +Pw +Lf +RJ +rY +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(90,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +cz +na +sd +JI +yf +TB +rs +rs +Kj +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(91,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +RR +Bc +cX +dP +qu +mF +rs +rs +RJ +RA +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(92,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +IJ +cX +ow +RI +Cl +wi +rs +RJ +RA +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(93,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +RR +eu +dP +Tm +nv +RJ +rs +rs +aM +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(94,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +RR +eu +yU +mw +Ee +Jw +Qd +Qd +aM +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(95,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +VI +lu +gW +Po +aP +lI +tD +MJ +JO +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(96,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +Gd +Qh +HM +Fg +ue +cy +Zj +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(97,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +zK +zK +RJ +Ze +BH +Uy +DM +zK +zK +qr +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(98,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +zK +zK +zK +zK +zK +zK +zK +qr +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(99,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(100,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} diff --git a/maps/templates/lazy_templates/weyland_ert_station.dmm b/maps/templates/lazy_templates/weyland_ert_station.dmm index 365789da3150..2eeabcb4fc3e 100644 --- a/maps/templates/lazy_templates/weyland_ert_station.dmm +++ b/maps/templates/lazy_templates/weyland_ert_station.dmm @@ -1,32 +1,22 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ab" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) "al" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "ap" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/adminlevel/ert_station/weyland_station) "au" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "aG" = ( /obj/structure/surface/table/woodentable/fancy, @@ -47,26 +37,18 @@ pixel_x = 5; pixel_y = 13 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/adminlevel/ert_station/weyland_station) "bk" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "bp" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "bv" = ( /obj/structure/machinery/vending/coffee, @@ -82,56 +64,41 @@ dir = 8 }, /obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "bG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) "ck" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "cm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "cn" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "cq" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) "cr" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -139,16 +106,11 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/weyland_station) "cw" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "cz" = ( /obj/structure/surface/table/woodentable/fancy, @@ -157,67 +119,46 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "cK" = ( /obj/structure/surface/table, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "cU" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/adminlevel/ert_station/weyland_station) "cW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "cX" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/adminlevel/ert_station/weyland_station) "cY" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/adminlevel/ert_station/weyland_station) "cZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "dc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "dx" = ( /obj/structure/window/framed/corsat/indestructible/research, @@ -235,9 +176,7 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "dz" = ( /obj/structure/machinery/light/double{ @@ -246,41 +185,28 @@ pixel_y = 1 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "dC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "dE" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner, /area/adminlevel/ert_station/weyland_station) "dM" = ( /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/adminlevel/ert_station/weyland_station) "dO" = ( /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/adminlevel/ert_station/weyland_station) "dT" = ( /obj/structure/machinery/light/double{ @@ -289,16 +215,11 @@ pixel_y = 1 }, /obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "ee" = ( /obj/structure/bed/roller, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/adminlevel/ert_station/weyland_station) "eh" = ( /obj/structure/machinery/shower{ @@ -311,33 +232,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "ei" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) "ek" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "el" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) "er" = ( /obj/structure/surface/table/woodentable/fancy, @@ -345,34 +255,23 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "eA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clothing/gloves/yellow, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "eB" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ req_access = null }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "eG" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/adminlevel/ert_station/weyland_station) "eJ" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -380,26 +279,17 @@ name = "\improper Brig Cell 2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "eO" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/adminlevel/ert_station/weyland_station) "eQ" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "eX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "fe" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -410,9 +300,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) "fl" = ( /obj/structure/flora/pottedplant{ @@ -427,16 +315,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "fC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/adminlevel/ert_station/weyland_station) "fD" = ( /obj/structure/closet/emcloset{ @@ -449,18 +331,13 @@ pixel_x = -8; pixel_y = 15 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) "fF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "fI" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -469,9 +346,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "fX" = ( /turf/closed/wall/r_wall/biodome, @@ -481,10 +356,7 @@ /obj/structure/machinery/autodoc_console{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "gh" = ( /obj/effect/decal/warning_stripes{ @@ -494,39 +366,28 @@ /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "gj" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "gm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "gq" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "gC" = ( /obj/structure/closet/crate/ammo/alt/flame, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) "gH" = ( /obj/item/reagent_container/glass/bucket/janibucket{ @@ -541,64 +402,43 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) "gK" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "gL" = ( /obj/structure/surface/table, /obj/item/storage/box/wy_mre, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "gW" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "ha" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "ho" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/adminlevel/ert_station/weyland_station) "hu" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/adminlevel/ert_station/weyland_station) "hz" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "hC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -606,30 +446,20 @@ id = "WY_center_medbay"; name = "\improper Central Medbay Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "hG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) "hK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/adminlevel/ert_station/weyland_station) "hM" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "hZ" = ( /obj/structure/closet/secure_closet/brig{ @@ -642,41 +472,29 @@ pixel_x = -7; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "ib" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) "id" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "ik" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "in" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "iw" = ( /obj/structure/surface/table/woodentable/fancy, @@ -691,15 +509,11 @@ /area/adminlevel/ert_station/weyland_station) "iE" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "iJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) "iP" = ( /obj/structure/closet/fireaxecabinet{ @@ -708,10 +522,7 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) "iT" = ( /obj/structure/surface/table/reinforced, @@ -723,29 +534,19 @@ pixel_x = -8 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "iU" = ( /obj/structure/closet/crate/internals, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "iV" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) "jb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "je" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -759,17 +560,13 @@ /obj/structure/machinery/cm_vending/clothing/antag{ name = "\improper Response Team Automated Equipment Rack" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "jz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "jE" = ( /obj/structure/machinery/shower{ @@ -779,9 +576,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "damaged1" - }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) "jK" = ( /obj/structure/machinery/light/double{ @@ -789,75 +584,48 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) "jY" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "ka" = ( /obj/structure/closet/crate/medical, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "kn" = ( /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "kq" = ( /obj/structure/bed/chair/wheelchair, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "kr" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "ky" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) "kA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "kF" = ( /obj/structure/machinery/power/smes, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "kM" = ( /obj/structure/largecrate/supply/weapons/flamers, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "kO" = ( /obj/structure/window/framed/corsat/research, @@ -873,50 +641,36 @@ /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/adminlevel/ert_station/weyland_station) "kW" = ( /obj/structure/machinery/sleep_console{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "la" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) "lh" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "ll" = ( /obj/item/storage/firstaid/adv, /obj/item/storage/belt/medical/lifesaver/full, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "lo" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "lq" = ( /obj/structure/bed{ @@ -930,29 +684,19 @@ /obj/item/reagent_container/food/snacks/milosoup{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "lw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "lx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/adminlevel/ert_station/weyland_station) "lD" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) "lE" = ( /obj/structure/bed{ @@ -961,10 +705,7 @@ /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/adminlevel/ert_station/weyland_station) "lH" = ( /obj/structure/machinery/light/double{ @@ -972,16 +713,11 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/adminlevel/ert_station/weyland_station) "lI" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "lS" = ( /obj/structure/largecrate/supply/medicine/blood, @@ -990,19 +726,14 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) "lT" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "lU" = ( /obj/effect/decal/warning_stripes{ @@ -1014,10 +745,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) "lY" = ( /obj/structure/window/framed/corsat/indestructible, @@ -1027,9 +755,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "mg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1038,17 +764,11 @@ "mh" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/adminlevel/ert_station/weyland_station) "mn" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/adminlevel/ert_station/weyland_station) "mv" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1056,77 +776,52 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/weyland_station) "mx" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "mE" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/adminlevel/ert_station/weyland_station) "mI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "mV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ name = "\improper Telecomms" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "nb" = ( /obj/structure/filingcabinet/filingcabinet{ density = 0; pixel_x = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "ng" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "nq" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "ns" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Bathroom" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/adminlevel/ert_station/weyland_station) "nw" = ( /obj/structure/surface/rack, @@ -1136,9 +831,7 @@ /obj/item/weapon/gun/rifle/m41a/elite{ pixel_y = -4 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "nG" = ( /obj/structure/machinery/autolathe/full, @@ -1147,35 +840,24 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) "nI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "nJ" = ( /obj/item/roller, /obj/item/roller, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "nQ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "nS" = ( /obj/effect/decal/warning_stripes{ @@ -1200,34 +882,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/adminlevel/ert_station/weyland_station) "nT" = ( /obj/structure/showcase{ icon_state = "broadcast receiver"; name = "Subspace Receiver" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "nY" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) "ob" = ( /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "og" = ( /obj/structure/machinery/light/double{ @@ -1235,29 +907,18 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) "ou" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "oE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/adminlevel/ert_station/weyland_station) "oL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) "oM" = ( /obj/structure/window/framed/corsat/research, @@ -1274,9 +935,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "oT" = ( /obj/structure/bed, @@ -1284,33 +943,24 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) "oX" = ( /obj/structure/surface/rack, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "pa" = ( /obj/vehicle/powerloader/ft{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "pc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) "pf" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -1318,23 +968,17 @@ pixel_y = 8 }, /obj/item/ammo_box/magazine/ap, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "pq" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "pv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "pB" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ @@ -1344,32 +988,21 @@ use_snowflake_points = 1 }, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "pE" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/adminlevel/ert_station/weyland_station) "pF" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) "pK" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "pY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) "qu" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -1377,46 +1010,31 @@ name = "\improper Brig Cell 3" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "qv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "qD" = ( /obj/structure/surface/table/reinforced/black, /obj/item/folder/black, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/adminlevel/ert_station/weyland_station) "qF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/west, /area/adminlevel/ert_station/weyland_station) "qL" = ( /obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "qV" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "rc" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1424,9 +1042,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "damaged1" - }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) "ro" = ( /obj/structure/bed/chair/comfy/beige{ @@ -1436,9 +1052,7 @@ /area/adminlevel/ert_station/weyland_station) "rB" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "rD" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1450,10 +1064,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "rF" = ( /obj/structure/bed/chair{ @@ -1462,18 +1073,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/adminlevel/ert_station/weyland_station) "rK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "rN" = ( /obj/structure/bed/chair/comfy/orange, @@ -1482,44 +1088,29 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/adminlevel/ert_station/weyland_station) "rX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/adminlevel/ert_station/weyland_station) "rY" = ( /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "sg" = ( /obj/structure/machinery/power/apc/antag{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "sq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/adminlevel/ert_station/weyland_station) "sr" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1542,9 +1133,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "sA" = ( /obj/structure/machinery/blackbox_recorder, @@ -1554,10 +1143,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/adminlevel/ert_station/weyland_station) "sH" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1591,24 +1177,15 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/adminlevel/ert_station/weyland_station) "tc" = ( /obj/structure/bed/sofa/south/white/right, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "td" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/adminlevel/ert_station/weyland_station) "th" = ( /obj/structure/closet/secure_closet/surgical{ @@ -1626,16 +1203,10 @@ pixel_y = 9; req_access_txt = "1" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/adminlevel/ert_station/weyland_station) "ts" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/adminlevel/ert_station/weyland_station) "tz" = ( /obj/effect/decal/warning_stripes{ @@ -1644,10 +1215,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) "tR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1663,22 +1231,15 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "tX" = ( -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "ul" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "uv" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/adminlevel/ert_station/weyland_station) "uw" = ( /obj/structure/mirror{ @@ -1689,9 +1250,7 @@ pixel_y = 21 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "uE" = ( /obj/structure/surface/rack, @@ -1702,9 +1261,7 @@ pixel_y = -4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "uR" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -1712,9 +1269,7 @@ /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "uX" = ( /obj/structure/surface/table, @@ -1726,19 +1281,14 @@ pixel_y = 9 }, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "va" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) "vb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ @@ -1748,29 +1298,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "vc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) "vh" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) "vv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "vz" = ( /obj/structure/pipes/vents/pump{ @@ -1787,10 +1327,7 @@ /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/adminlevel/ert_station/weyland_station) "vU" = ( /obj/structure/machinery/light/double{ @@ -1798,39 +1335,27 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) "vW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "vX" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "wa" = ( /obj/item/device/defibrillator/upgraded, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northeast, /area/adminlevel/ert_station/weyland_station) "wE" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) "wU" = ( /obj/structure/surface/rack, @@ -1841,26 +1366,20 @@ /obj/item/storage/pill_bottle/kelotane{ pixel_x = -7 }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "xg" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) "xh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "xk" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1872,10 +1391,7 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "xA" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/adminlevel/ert_station/weyland_station) "xD" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1883,35 +1399,26 @@ id = "WY_meeting"; name = "\improper Meeting Room Shutters" }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) "xE" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "xN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "xT" = ( /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/adminlevel/ert_station/weyland_station) "xZ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1922,15 +1429,11 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "yb" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "yi" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1949,19 +1452,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/adminlevel/ert_station/weyland_station) "yo" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "yp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ @@ -1971,9 +1469,7 @@ id = "WY_aft_medbay"; name = "\improper Aft Medbay Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "yD" = ( /obj/structure/bed{ @@ -1983,22 +1479,13 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "yH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/adminlevel/ert_station/weyland_station) "yM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/adminlevel/ert_station/weyland_station) "zh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) "zC" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -2008,9 +1495,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "zD" = ( /obj/structure/surface/rack, @@ -2038,52 +1523,35 @@ pixel_y = 9 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) "zI" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave{ pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "zN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/adminlevel/ert_station/weyland_station) "zR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/adminlevel/ert_station/weyland_station) "zS" = ( /obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "zT" = ( /obj/structure/window/reinforced/toughened, /obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/adminlevel/ert_station/weyland_station) "Ai" = ( /obj/item/device/defibrillator/upgraded, @@ -2095,16 +1563,10 @@ pixel_y = 9; req_access_txt = "1" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "Ak" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "Ax" = ( /obj/effect/decal/warning_stripes{ @@ -2116,49 +1578,34 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "AA" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "AD" = ( /obj/structure/surface/table/reinforced/black, /obj/effect/spawner/random/facepaint, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/adminlevel/ert_station/weyland_station) "AG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "AH" = ( /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) "AO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "AQ" = ( /obj/structure/machinery/light/double{ @@ -2167,10 +1614,7 @@ pixel_y = 1 }, /obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) "AR" = ( /obj/structure/bed/chair/office/dark{ @@ -2180,9 +1624,7 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "AU" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) "AV" = ( /obj/effect/decal/warning_stripes{ @@ -2192,10 +1634,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "AY" = ( /obj/structure/machinery/washing_machine, @@ -2203,19 +1642,14 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Bk" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "Bu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2224,24 +1658,18 @@ /obj/structure/machinery/door/window{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Bx" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Bz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Barracks" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "BG" = ( /obj/effect/decal/warning_stripes{ @@ -2255,18 +1683,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/adminlevel/ert_station/weyland_station) "BL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) "BM" = ( /obj/structure/surface/table, @@ -2282,10 +1705,7 @@ /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/adminlevel/ert_station/weyland_station) "BT" = ( /obj/structure/window/framed/corsat, @@ -2296,19 +1716,14 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) "BV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/adminlevel/ert_station/weyland_station) "Cm" = ( /obj/structure/showcase{ icon_state = "hub"; name = "Telecommunication Hub" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Cv" = ( /obj/structure/machinery/light/double{ @@ -2325,24 +1740,17 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ name = "Cryogenics" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Cy" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "CI" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/adminlevel/ert_station/weyland_station) "CK" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2350,25 +1758,17 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) "CU" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "De" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Dk" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2377,28 +1777,19 @@ pixel_y = 6 }, /obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Dn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "Dr" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Ds" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/adminlevel/ert_station/weyland_station) "DF" = ( /obj/structure/bookcase{ @@ -2428,18 +1819,14 @@ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "DO" = ( /obj/structure/showcase{ icon_state = "relay"; name = "Telecommunication Relay" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "DT" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2449,9 +1836,7 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "DZ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) "Eg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ @@ -2461,9 +1846,7 @@ id = "WY_center_medbay"; name = "\improper Central Medbay Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "El" = ( /obj/structure/surface/table/reinforced, @@ -2472,44 +1855,30 @@ /obj/structure/window/reinforced/tinted/frosted{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Er" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) "EB" = ( /obj/structure/barricade/handrail/wire, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) "EC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/adminlevel/ert_station/weyland_station) "ED" = ( /obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "EG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) "ES" = ( /obj/docking_port/stationary/emergency_response/idle_port2, @@ -2521,9 +1890,7 @@ density = 0; pixel_y = 23 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Fr" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2536,10 +1903,7 @@ /obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/adminlevel/ert_station/weyland_station) "FA" = ( /obj/structure/bed, @@ -2548,38 +1912,27 @@ layer = 2.9 }, /obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "FD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/weldingtool, /obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "FE" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "FO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Gb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) "Gd" = ( /obj/structure/pipes/vents/pump{ @@ -2589,10 +1942,7 @@ /area/adminlevel/ert_station/weyland_station) "Gg" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "Gs" = ( /obj/structure/machinery/light/double{ @@ -2601,9 +1951,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Gx" = ( /obj/item/tool/weldpack{ @@ -2613,34 +1961,24 @@ /obj/item/tool/weldpack{ pixel_x = -2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Gz" = ( /obj/structure/pipes/standard/cap/hidden, /obj/structure/machinery/cryo_cell{ layer = 3.20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "GM" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/adminlevel/ert_station/weyland_station) "Hc" = ( /obj/structure/closet/medical_wall{ pixel_x = -30 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "He" = ( /turf/open/floor/wood/ship, @@ -2650,22 +1988,15 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "Hk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "Hr" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "HE" = ( /obj/structure/machinery/light/double{ @@ -2687,16 +2018,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "If" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) "Ik" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2707,72 +2033,49 @@ pixel_x = 1; pixel_y = 23 }, -/turf/open/floor/corsat{ - icon_state = "damaged1" - }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) "Im" = ( /obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) "Iv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) "IB" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "II" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/adminlevel/ert_station/weyland_station) "IQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "IV" = ( /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/adminlevel/ert_station/weyland_station) "Jc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) "Jd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner, /area/adminlevel/ert_station/weyland_station) "Je" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "Jk" = ( /obj/structure/sink{ @@ -2782,10 +2085,7 @@ /obj/structure/mirror{ pixel_x = -28 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/adminlevel/ert_station/weyland_station) "Jr" = ( /obj/structure/machinery/light/double{ @@ -2796,9 +2096,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) "Js" = ( /obj/structure/surface/table/reinforced/black, @@ -2808,16 +2106,11 @@ phone_category = "W-Y"; phone_id = "W-Y Station CiC" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Jt" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/adminlevel/ert_station/weyland_station) "Ju" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2841,37 +2134,26 @@ /obj/structure/reagent_dispensers/beerkeg{ density = 0 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "JA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/adminlevel/ert_station/weyland_station) "JK" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/adminlevel/ert_station/weyland_station) "JQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Kd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Kg" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2882,9 +2164,7 @@ pixel_y = 9; req_access_txt = "1" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Kk" = ( /obj/effect/decal/warning_stripes{ @@ -2893,10 +2173,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "Ku" = ( /obj/structure/surface/table/reinforced, @@ -2909,9 +2186,7 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "KC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ @@ -2923,34 +2198,23 @@ id = "WY_meeting"; name = "\improper Meeting Room Shutters" }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) "KD" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/adminlevel/ert_station/weyland_station) "KF" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/adminlevel/ert_station/weyland_station) "KK" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/communications{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/adminlevel/ert_station/weyland_station) "KM" = ( /obj/item/weapon/gun/shotgun/combat{ @@ -2964,18 +2228,13 @@ pixel_y = 2 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "KP" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "KW" = ( /obj/structure/window/framed/corsat/indestructible/security, @@ -2989,34 +2248,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "Le" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Ls" = ( /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) "Lz" = ( /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/adminlevel/ert_station/weyland_station) "LF" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3027,16 +2276,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) "Ma" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/adminlevel/ert_station/weyland_station) "Mn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3044,23 +2287,15 @@ id = "WY_aft_medbay"; name = "\improper Aft Medbay Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "MA" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "MP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) "MQ" = ( /obj/structure/pipes/unary/freezer{ @@ -3069,10 +2304,7 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) "MV" = ( /obj/item/clothing/gloves/latex, @@ -3080,10 +2312,7 @@ /obj/item/clothing/mask/surgical, /obj/item/clothing/mask/surgical, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/adminlevel/ert_station/weyland_station) "MW" = ( /obj/structure/surface/table, @@ -3091,9 +2320,7 @@ pixel_x = -7; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "Nd" = ( /obj/structure/window/framed/corsat/research, @@ -3105,65 +2332,46 @@ /area/adminlevel/ert_station/weyland_station) "Nf" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "Np" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/effect/spawner/random/facepaint, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Nr" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Ns" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/southwest, /area/adminlevel/ert_station/weyland_station) "NC" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "NK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) "NN" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/adminlevel/ert_station/weyland_station) "NO" = ( /obj/structure/showcase{ icon_state = "bus" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "NR" = ( /obj/structure/machinery/light/double{ @@ -3179,38 +2387,26 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/adminlevel/ert_station/weyland_station) "Oc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/adminlevel/ert_station/weyland_station) "Og" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/adminlevel/ert_station/weyland_station) "Oj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) "On" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "Oo" = ( /obj/structure/surface/rack, @@ -3221,26 +2417,20 @@ /obj/item/storage/pill_bottle/antitox{ pixel_x = -5 }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "Oq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/gibber{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Ot" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Ov" = ( /obj/effect/decal/warning_stripes{ @@ -3248,9 +2438,7 @@ pixel_y = 2 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "OD" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -3259,38 +2447,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "OE" = ( /obj/structure/closet/wardrobe/chemistry_white, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/west, /area/adminlevel/ert_station/weyland_station) "OG" = ( /obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) "OY" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "Pc" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) "Pk" = ( /obj/structure/machinery/light/double, @@ -3305,19 +2480,13 @@ name = "\improper Dormitories" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/adminlevel/ert_station/weyland_station) "Qa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/adminlevel/ert_station/weyland_station) "Qb" = ( /obj/structure/machinery/shower{ @@ -3327,18 +2496,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) "Qc" = ( /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) "Qk" = ( /obj/structure/machinery/light/double{ @@ -3347,10 +2511,7 @@ pixel_y = 1 }, /obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) "Qr" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3361,16 +2522,11 @@ /obj/item/weapon/gun/smg/m39/elite{ pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "QI" = ( /obj/structure/bed/sofa/south/white/left, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "QQ" = ( /obj/structure/pipes/standard/cap/hidden, @@ -3382,10 +2538,7 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "QR" = ( /obj/structure/machinery/light/double{ @@ -3396,10 +2549,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) "QT" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -3424,16 +2574,11 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "Rd" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "Re" = ( /obj/structure/machinery/light/double{ @@ -3441,24 +2586,17 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "Rj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) "Rr" = ( /obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Rv" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3467,18 +2605,14 @@ pixel_y = 3 }, /obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "RB" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "RE" = ( /obj/structure/machinery/cm_vending/gear/antag{ @@ -3486,21 +2620,14 @@ name = "\improper Response Team Automated Gear Rack"; use_snowflake_points = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "RF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/adminlevel/ert_station/weyland_station) "RG" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "RL" = ( /obj/structure/window/framed/corsat, @@ -3515,9 +2642,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) "RT" = ( /obj/effect/decal/warning_stripes{ @@ -3527,10 +2652,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) "RZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3539,9 +2661,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "Si" = ( /obj/structure/bed/roller, @@ -3550,25 +2670,17 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) "Sr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/adminlevel/ert_station/weyland_station) "Ss" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "St" = ( /obj/structure/closet/fireaxecabinet{ @@ -3579,19 +2691,13 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "Sw" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) "SE" = ( /obj/structure/surface/table/woodentable/fancy, @@ -3609,22 +2715,15 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) "SI" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) "SJ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "SM" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -3634,9 +2733,7 @@ /obj/structure/machinery/cryopod/right{ pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) "SY" = ( /obj/structure/surface/table/reinforced, @@ -3658,9 +2755,7 @@ /obj/structure/window/reinforced/tinted/frosted{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Ta" = ( /obj/structure/bed/chair{ @@ -3669,10 +2764,7 @@ /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/adminlevel/ert_station/weyland_station) "Tf" = ( /obj/structure/surface/rack, @@ -3689,10 +2781,7 @@ pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) "Tk" = ( /obj/effect/decal/warning_stripes{ @@ -3704,16 +2793,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) "Tx" = ( /obj/structure/bed/roller, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) "TL" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ @@ -3724,52 +2808,36 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) "TN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) "TT" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) "TW" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) "Ub" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "Ud" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/adminlevel/ert_station/weyland_station) "Uk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -3777,21 +2845,13 @@ name = "\improper Toilet" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "Us" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) "Uu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) "Ux" = ( /turf/open/space/basic, @@ -3806,16 +2866,10 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) "UV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/adminlevel/ert_station/weyland_station) "Vm" = ( /obj/effect/decal/warning_stripes{ @@ -3824,23 +2878,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) "Vp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) "VA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "VJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3852,9 +2899,7 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) "Wj" = ( /obj/structure/bed/chair{ @@ -3863,17 +2908,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) "Wo" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ name = "Engineering" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "Wu" = ( /obj/effect/decal/warning_stripes{ @@ -3897,9 +2938,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/adminlevel/ert_station/weyland_station) "WD" = ( /obj/structure/flora/pottedplant{ @@ -3909,39 +2948,25 @@ /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) "WE" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/adminlevel/ert_station/weyland_station) "WU" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "WW" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "Xh" = ( /obj/structure/window/reinforced/toughened{ dir = 4 }, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) "Xi" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) "Xj" = ( /obj/structure/surface/table/woodentable/fancy, @@ -3951,10 +2976,7 @@ /area/adminlevel/ert_station/weyland_station) "Xn" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "Xo" = ( /obj/structure/machinery/vending/dinnerware, @@ -3963,27 +2985,18 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "Xs" = ( /obj/structure/target, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) "Xt" = ( -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "Xw" = ( /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) "Xx" = ( /obj/structure/coatrack{ @@ -3993,16 +3006,10 @@ /area/adminlevel/ert_station/weyland_station) "XD" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) "XQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/adminlevel/ert_station/weyland_station) "XR" = ( /obj/structure/machinery/light/double{ @@ -4010,10 +3017,7 @@ pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) "Ya" = ( /obj/effect/decal/warning_stripes{ @@ -4023,10 +3027,7 @@ pixel_x = 30 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) "Yb" = ( /obj/structure/surface/table/woodentable/fancy, @@ -4034,24 +3035,15 @@ /area/adminlevel/ert_station/weyland_station) "Yj" = ( /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/adminlevel/ert_station/weyland_station) "Yt" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) "Yv" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) "YB" = ( /obj/structure/machinery/photocopier{ @@ -4064,18 +3056,14 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "YN" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "YZ" = ( /obj/structure/mirror{ @@ -4085,16 +3073,11 @@ pixel_x = 1; pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "Za" = ( /obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "Zl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -4103,24 +3086,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) "Zn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "Zt" = ( /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/adminlevel/ert_station/weyland_station) "Zu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ @@ -4135,39 +3110,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) "ZH" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) "ZU" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) "ZV" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "ZX" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) (1,1,1) = {" diff --git a/maps/tutorial/tutorial_reqs_line.dmm b/maps/tutorial/tutorial_reqs_line.dmm index ca010dd68fca..cdbe225c1f89 100644 --- a/maps/tutorial/tutorial_reqs_line.dmm +++ b/maps/tutorial/tutorial_reqs_line.dmm @@ -13,17 +13,11 @@ /area/misc/tutorial) "l" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/misc/tutorial) "m" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/misc/tutorial) "n" = ( /obj/structure/surface/table/almayer{ @@ -38,9 +32,6 @@ }, /turf/open/floor/almayer, /area/misc/tutorial) -"o" = ( -/turf/closed/wall/almayer/outer, -/area/misc/tutorial) "w" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/almayer, @@ -49,17 +40,11 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/misc/tutorial) "y" = ( /obj/structure/machinery/line_nexter, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/misc/tutorial) "E" = ( /obj/structure/bed/chair/office/dark{ @@ -134,7 +119,7 @@ a K n w -o +a a a a diff --git a/nano/templates/chem_simulator.tmpl b/nano/templates/chem_simulator.tmpl deleted file mode 100644 index 47057f13bf85..000000000000 --- a/nano/templates/chem_simulator.tmpl +++ /dev/null @@ -1,366 +0,0 @@ - -
    -
    - STATUS: {{:data.status_bar}} -
    - RESEARCH CREDITS: {{:data.rsc_credits}} -
    - {{if data.mode == 4 }} - CREATION NAME: {{:data.creation_name}}
    - CREATION COST: {{:data.creation_cost}}
    - ESTIMATED OVERDOSE LVL: {{:data.od_lvl}} UNITS - {{else}} - {{if data.target }} - TARGET DATA: {{:data.target}} - {{else}} - TARGET DATA: NOT FOUND - {{/if}} -
    - {{if data.reference }} - REFERENCE DATA: {{:data.reference}} - {{else}} - REFERENCE DATA: NOT FOUND - {{/if}} -
    - ESTIMATED OVERDOSE LVL: {{:data.od_lvl}} UNITS - {{/if}} -
    - {{if data.simulating }} - - {{else}} - - {{/if}} - -
    -
    -
    - {{if data.mode != 4 }} -
    - {{if data.target_property}} -

    {{:data.property_codings[data.target_property]}} - {{:data.target_property}}

    -

    - {{:data.target_info}} -
    Type: {{:data.target_categories}} -
    Research Cost: {{:data.property_costs[data.target_property]}} -

    - {{/if}} -
    -
    -

    Target Properties

    - {{if data.target}} - {{if data.target_property_list }} -
    - {{props data.target_property_list :level:property}} - {{:helper.link('' + data.property_codings[property] + ' Level ' + level + '', null, {'set_target' : property}, (data.target_property == property) ? 'selected' : null, 'propbutton')}} - {{/props}} -
    - {{else}} - PROPERTIES CAN NOT BE SIMULATED - {{/if}} - {{/if}} -
    - {{else}} -
    -
    - {{if data.complexity_editor }} - {{:helper.link(data.complexity[0], 'gear', {'set_complexity' : 1}, null, 'menubutton templateButton')}} - {{:helper.link(data.complexity[1], 'gear', {'set_complexity' : 2}, null, 'menubutton templateButton')}} - {{:helper.link(data.complexity[2], 'gear', {'set_complexity' : 3}, null, 'menubutton templateButton')}} - {{else}} - {{:helper.link('SET LVL', 'gear', {'set_level' : 1}, (data.target_property && data.property_data_list[data.target_property] >= 1) ? null : 'disabled', 'menubutton templateButton')}} - {{:helper.link('SET NAME', 'gear', {'set_name' : 1}, null, 'templateButton')}} - {{:helper.link('SET OD', 'gear', {'set_od' : 1}, null, 'templateButton')}} - {{props data.template_filter :setting:configuration}} - {{if setting[0] == 1 }} - {{:helper.link(configuration, null, {'set_filter' : configuration, 'config_value' : setting[1]}, null, 'modebutton templateButton enabled')}} - {{else}} - {{:helper.link(configuration, null, {'set_filter' : configuration, 'config_value' : setting[1]}, null, 'modebutton templateButton')}} - {{/if}} - {{/props}} - {{/if}} -
    -
    - {{props data.property_data_list :level:property}} - {{if data.target_property == property}} - {{if level > 0 }} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp targetedEnabled')}} - {{else}} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp targetedDisabled')}} - {{/if}} - {{else}} - {{if level > 0 }} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp')}} - {{else}} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp disabled')}} - {{/if}} - {{/if}} - {{/props}} -
    -
    - {{/if}} -
    -
    - {{if data.mode == 3 }} -
    - {{if data.reference_property }} -

    {{:data.property_codings[data.reference_property]}} - {{:data.reference_property}}

    -

    - {{:data.reference_info}} -
    Type: {{:data.reference_categories}} -

    - {{/if}} -
    -
    -

    Reference Properties

    - {{if data.reference}} - {{if data.reference_property_list }} -
    - {{props data.reference_property_list :level:property}} - {{:helper.link('' + data.property_codings[property] + ' Level ' + level + '', null, {'set_reference' : property}, (data.reference_property == property) ? 'selected' : null, 'propbutton')}} - {{/props}} -
    - {{else}} - PROPERTIES CAN NOT BE SIMULATED - {{/if}} - {{/if}} -
    - {{else}} - {{if data.mode == 4 }} -
    - {{if data.target_property}} -

    {{:data.property_codings[data.target_property]}} - {{:data.target_property}}

    -

    - {{:data.target_info}} -
    Type: {{:data.target_categories}} -
    Value per level: {{:data.property_costs[data.target_property]}} -

    - {{/if}} -
    - {{/if}} - {{/if}} -
    -
    diff --git a/sound/mecha/powerloader_attack.ogg b/sound/mecha/powerloader_attack.ogg index 6cff269d30fe..6f821f2b0e9e 100644 Binary files a/sound/mecha/powerloader_attack.ogg and b/sound/mecha/powerloader_attack.ogg differ diff --git a/sound/mecha/powerloader_step.ogg b/sound/mecha/powerloader_step.ogg index af427df86590..1f8b4b3c7f4c 100644 Binary files a/sound/mecha/powerloader_step.ogg and b/sound/mecha/powerloader_step.ogg differ diff --git a/sound/mecha/powerloader_step2.ogg b/sound/mecha/powerloader_step2.ogg index 60aaa6bd3458..4edbec2a11b7 100644 Binary files a/sound/mecha/powerloader_step2.ogg and b/sound/mecha/powerloader_step2.ogg differ diff --git a/sound/mecha/powerloader_turn.ogg b/sound/mecha/powerloader_turn.ogg index bccdc879d003..bb18cdc57e9c 100644 Binary files a/sound/mecha/powerloader_turn.ogg and b/sound/mecha/powerloader_turn.ogg differ diff --git a/sound/mecha/powerloader_turn2.ogg b/sound/mecha/powerloader_turn2.ogg index c3816df9d9e2..647dde5affdb 100644 Binary files a/sound/mecha/powerloader_turn2.ogg and b/sound/mecha/powerloader_turn2.ogg differ diff --git a/sound/mecha/powerloader_unbuckle.ogg b/sound/mecha/powerloader_unbuckle.ogg index 98e53bfd7dc3..c70ab4ef7751 100644 Binary files a/sound/mecha/powerloader_unbuckle.ogg and b/sound/mecha/powerloader_unbuckle.ogg differ diff --git a/tgui/packages/tgui/interfaces/ChemSimulator.jsx b/tgui/packages/tgui/interfaces/ChemSimulator.jsx new file mode 100644 index 000000000000..4243386e14c3 --- /dev/null +++ b/tgui/packages/tgui/interfaces/ChemSimulator.jsx @@ -0,0 +1,629 @@ +import { map } from 'common/collections'; + +import { useBackend, useSharedState } from '../backend'; +import { + Box, + Button, + Divider, + Flex, + NoticeBox, + ProgressBar, + Section, + Stack, +} from '../components'; +import { Window } from '../layouts'; + +export const InfoPanel = () => { + const { data } = useBackend(); + const { + credits, + status, + od_level, + chemical_name, + estimated_cost, + reference_name, + } = data; + return ( +
    + + + +

    RESEARCH CREDITS: {credits}

    +
    +
    + + STATUS: {status} + + + ESTIMATED SIMULATING COST: {estimated_cost} + + + TARGET NAME: {chemical_name} + + + REFERENCE NAME: {reference_name} + + + OVERDOSE LEVEL AFTER SIMULATION: {od_level} + +
    +
    + ); +}; + +export const Controls = (props) => { + const { act, data } = useBackend(); + const { + selectedMode, + setSelectedMode, + complexityMenu, + setComplexityMenu, + setSelectedReferenceProperty, + setSelectedTargetProperty, + } = props; + const { + mode_data, + can_simulate, + can_eject_target, + can_eject_reference, + can_cancel_simulation, + lock_control, + } = data; + return ( + + + + + {can_cancel_simulation ? ( + + ) : ( + + )} + + + + + + + + + + + + + + + {mode_data.map((mode_data, id) => ( + + + + ))} + + + + ); +}; + +export const RecipeOptions = () => { + const { act, data } = useBackend(); + const [selectedRecipe, setSelectedRecipe] = useSharedState('recipe', null); + const { reagent_option_data } = data; + return ( + + + + {map(reagent_option_data, (recipe, id) => ( + + ))} + + + ); +}; + +export const ModeChange = (props) => { + const { act, data } = useBackend(); + const { target_data, lock_control } = data; + const { selectedTargetProperty, setSelectedTargetProperty } = props; + return ( + (target_data && ( + + + + Target Data + + + + {map(target_data, (property) => ( + + ))} + + + + + + {map( + target_data, + (property) => + property.code === selectedTargetProperty && ( + + +
    {property.desc}
    +
    + + Price of the operation : {property.cost} + +
    + ), + )} +
    +
    + )) || ( + + No data inserted! + + ) + ); +}; + +export const ModeRelate = (props) => { + const { act, data } = useBackend(); + const { target_data, reference_data, lock_control } = data; + const { + setSelectedTargetProperty, + setSelectedReferenceProperty, + selectedReferenceProperty, + selectedTargetProperty, + } = props; + return ( + (target_data && reference_data && ( + + + + Target Data + + + + {map(target_data, (property) => ( + + ))} + + + + + + + Reference Data + + + + {map(reference_data, (property) => ( + + ))} + + + + + + {map( + target_data, + (property) => + property.code === selectedTargetProperty && ( + + +
    {property.desc}
    +
    + + Price of the operation : {property.cost} + +
    + ), + )} +
    +
    + )) || ( + + No data inserted! + + ) + ); +}; + +export const ModeCreate = (props) => { + const { act, data } = useBackend(); + const { complexityMenu } = props; + const { known_properties } = data; + const [selectedProperty, setSelectedProperty] = useSharedState(false); + return ( + + + + + + + {map(known_properties, (property) => ( + + + + ))} + + + + {map( + known_properties, + (property) => + property.code === selectedProperty && ( +
    +

    {property.desc}

    +
    + ), + )} +
    +
    + ); +}; + +export const CreateControl = (props) => { + const { act, data } = useBackend(); + const { template_filters, lock_control, complexity_list } = data; + const { complexityMenu } = props; + return !complexityMenu ? ( + + + + + + + + + + + {map(template_filters, (flag, name) => ( + + + + ))} + + ) : ( + + {map(complexity_list, (rarity, id) => ( + + + + ))} + + ); +}; + +export const ChemSimulator = () => { + const { data } = useBackend(); + const { is_picking_recipe } = data; + const [selectedMode, setSelectedMode] = useSharedState('modes'); + const [complexityMenu, setComplexityMenu] = useSharedState( + 'complexity_flip', + false, + ); + const [selectedTargetProperty, setSelectedTargetProperty] = useSharedState( + 'target', + false, + ); + const [selectedReferenceProperty, setSelectedReferenceProperty] = + useSharedState('reference_relate', false); + return ( + + + + + + + + {(!is_picking_recipe && ( + + )) || } + + + + {selectedMode === 1 && ( + + )} + {selectedMode === 2 && ( + + )} + {selectedMode === 3 && ( + + )} + {selectedMode === 4 && } + + + ); +}; diff --git a/tgui/packages/tgui/styles/themes/weyland.scss b/tgui/packages/tgui/styles/themes/weyland.scss index 665a975e933d..bf2cbbd29cc6 100644 --- a/tgui/packages/tgui/styles/themes/weyland.scss +++ b/tgui/packages/tgui/styles/themes/weyland.scss @@ -28,7 +28,7 @@ $weyland: #af7f38; '../components/Button.scss', $with: ( 'color-default': $weyland, - 'color-selected': #9d0808, + 'color-selected': #e4c69a, 'color-caution': #be6209, 'color-danger': #9a9d00, 'color-transparent-text': color.scale($weyland, $lightness: 30%) @@ -47,6 +47,10 @@ $weyland: #af7f38; '../layouts/TitleBar.scss', $with: ('background-color': color.scale(#252832, $lightness: -25%)) ); + @include meta.load-css( + '../components/Divider.scss', + $with: ('color': rgba(28, 30, 32, 0.932), 'thickness': base.em(4px)) + ); .Button { font-family: consolas; @@ -59,7 +63,7 @@ $weyland: #af7f38; background-color: #252832; background-image: url('../../assets/bg-weyland.png'); background-position: top; - background-size: contain; + background-size: auto; background-repeat: repeat no-repeat; } diff --git a/tools/UpdatePaths/Scripts/6656-no-bad-dirs.txt b/tools/UpdatePaths/Scripts/6656-no-bad-dirs.txt new file mode 100644 index 000000000000..3e65581f646d --- /dev/null +++ b/tools/UpdatePaths/Scripts/6656-no-bad-dirs.txt @@ -0,0 +1,11 @@ +/obj/@SUBTYPES{dir=0} : /obj/@SUBTYPES{@OLD;dir=@SKIP;} +/mob/@SUBTYPES{dir=0} : /mob/@SUBTYPES{@OLD;dir=@SKIP;} +/turf/@SUBTYPES{dir=0} : /turf/@SUBTYPES{@OLD;dir=@SKIP;} + +/obj/@SUBTYPES{dir=3} : /obj/@SUBTYPES{@OLD;dir=@SKIP;} +/mob/@SUBTYPES{dir=3} : /mob/@SUBTYPES{@OLD;dir=@SKIP;} +/turf/@SUBTYPES{dir=3} : /turf/@SUBTYPES{@OLD;dir=@SKIP;} + +/obj/@SUBTYPES{dir=7} : /obj/@SUBTYPES{@OLD;dir=@SKIP;} +/mob/@SUBTYPES{dir=7} : /mob/@SUBTYPES{@OLD;dir=@SKIP;} +/turf/@SUBTYPES{dir=7} : /turf/@SUBTYPES{@OLD;dir=@SKIP;} diff --git a/tools/UpdatePaths/Scripts/6656-no-more-open-turf-edits.txt b/tools/UpdatePaths/Scripts/6656-no-more-open-turf-edits.txt new file mode 100644 index 000000000000..9eebcd7f11d8 --- /dev/null +++ b/tools/UpdatePaths/Scripts/6656-no-more-open-turf-edits.txt @@ -0,0 +1,1482 @@ +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached1";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached1 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached12";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached12 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached13";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached13 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached14";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached14 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached15";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached15 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached16";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached16 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached17";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached17 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached18";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached18 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached19";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached19 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached2";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached2 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached20";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached20 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached3";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached3 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached4";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached4 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached6";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached6 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached9";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached9 +/turf/open/asphalt/cement{icon_state="cement1";dir=1;} : /turf/open/asphalt/cement/cement1/north +/turf/open/asphalt/cement{icon_state="cement1";} : /turf/open/asphalt/cement/cement1 +/turf/open/asphalt/cement{icon_state="cement12";} : /turf/open/asphalt/cement/cement12 +/turf/open/asphalt/cement{icon_state="cement13";} : /turf/open/asphalt/cement/cement13 +/turf/open/asphalt/cement{icon_state="cement14";} : /turf/open/asphalt/cement/cement14 +/turf/open/asphalt/cement{icon_state="cement15";} : /turf/open/asphalt/cement/cement15 +/turf/open/asphalt/cement{icon_state="cement2";} : /turf/open/asphalt/cement/cement2 +/turf/open/asphalt/cement{icon_state="cement3";} : /turf/open/asphalt/cement/cement3 +/turf/open/asphalt/cement{icon_state="cement4";} : /turf/open/asphalt/cement/cement4 +/turf/open/asphalt/cement{icon_state="cement7";} : /turf/open/asphalt/cement/cement7 +/turf/open/asphalt/cement{icon_state="cement9";} : /turf/open/asphalt/cement/cement9 +/turf/open/asphalt{icon_state="tile";} : /turf/open/asphalt/tile +/turf/open/desert/cave/cave_shore{dir=4;} : /turf/open/desert/cave/cave_shore/east +/turf/open/desert/cave/cave_shore{dir=5;} : /turf/open/desert/cave/cave_shore/northeast +/turf/open/desert/cave/cave_shore{dir=6;} : /turf/open/desert/cave/cave_shore/southeast +/turf/open/desert/desert_shore/desert_shore1{dir=1;} : /turf/open/desert/desert_shore/desert_shore1/north +/turf/open/desert/desert_shore/desert_shore1{dir=4;} : /turf/open/desert/desert_shore/desert_shore1/east +/turf/open/desert/desert_shore/desert_shore1{dir=8;} : /turf/open/desert/desert_shore/desert_shore1/west +/turf/open/desert/desert_shore/shore_corner1{dir=1;} : /turf/open/desert/desert_shore/shore_corner1/north +/turf/open/desert/desert_shore/shore_corner1{dir=8;} : /turf/open/desert/desert_shore/shore_corner1/west +/turf/open/desert/desert_shore/shore_corner2{dir=1;} : /turf/open/desert/desert_shore/shore_corner2/north +/turf/open/desert/desert_shore/shore_corner2{dir=4;} : /turf/open/desert/desert_shore/shore_corner2/east +/turf/open/desert/desert_shore/shore_corner2{dir=8;} : /turf/open/desert/desert_shore/shore_corner2/west +/turf/open/desert/desert_shore/shore_edge1{dir=1;} : /turf/open/desert/desert_shore/shore_edge1/north +/turf/open/desert/desert_shore/shore_edge1{dir=4;} : /turf/open/desert/desert_shore/shore_edge1/east +/turf/open/desert/desert_shore/shore_edge1{dir=8;} : /turf/open/desert/desert_shore/shore_edge1/west +/turf/open/desert/dirt{dir=10;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southwest +/turf/open/desert/dirt{dir=1;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/north +/turf/open/desert/dirt{dir=1;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/north +/turf/open/desert/dirt{dir=4;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/east +/turf/open/desert/dirt{dir=4;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/east +/turf/open/desert/dirt{dir=5;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northeast +/turf/open/desert/dirt{dir=6;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southeast +/turf/open/desert/dirt{dir=8;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/west +/turf/open/desert/dirt{dir=8;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/west +/turf/open/desert/dirt{dir=9;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northwest +/turf/open/desert/dirt{icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1 +/turf/open/desert/dirt{icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1 +/turf/open/desert/dirt{icon_state="dirt2";} : /turf/open/desert/dirt/dirt2 +/turf/open/desert/dirt{icon_state="rock1";} : /turf/open/desert/dirt/rock1 +/turf/open/desert/excavation/component1{dir=10;} : /turf/open/desert/excavation/component1/southwest +/turf/open/desert/excavation/component1{dir=1;} : /turf/open/desert/excavation/component1/north +/turf/open/desert/excavation/component1{dir=4;} : /turf/open/desert/excavation/component1/east +/turf/open/desert/excavation/component1{dir=5;} : /turf/open/desert/excavation/component1/northeast +/turf/open/desert/excavation/component1{dir=6;} : /turf/open/desert/excavation/component1/southeast +/turf/open/desert/excavation/component1{dir=8;} : /turf/open/desert/excavation/component1/west +/turf/open/desert/excavation/component2{dir=1;} : /turf/open/desert/excavation/component2/north +/turf/open/desert/excavation/component2{dir=4;} : /turf/open/desert/excavation/component2/east +/turf/open/desert/excavation/component2{dir=6;} : /turf/open/desert/excavation/component2/southeast +/turf/open/desert/excavation/component2{dir=8;} : /turf/open/desert/excavation/component2/west +/turf/open/desert/excavation/component3{dir=10;} : /turf/open/desert/excavation/component3/southwest +/turf/open/desert/excavation/component3{dir=1;} : /turf/open/desert/excavation/component3/north +/turf/open/desert/excavation/component3{dir=4;} : /turf/open/desert/excavation/component3/east +/turf/open/desert/excavation/component3{dir=5;} : /turf/open/desert/excavation/component3/northeast +/turf/open/desert/excavation/component3{dir=6;} : /turf/open/desert/excavation/component3/southeast +/turf/open/desert/excavation/component3{dir=8;} : /turf/open/desert/excavation/component3/west +/turf/open/desert/excavation/component4{dir=1;} : /turf/open/desert/excavation/component4/north +/turf/open/desert/excavation/component4{dir=4;} : /turf/open/desert/excavation/component4/east +/turf/open/desert/excavation/component4{dir=6;} : /turf/open/desert/excavation/component4/southeast +/turf/open/desert/excavation/component4{dir=8;} : /turf/open/desert/excavation/component4/west +/turf/open/desert/excavation/component5{dir=10;} : /turf/open/desert/excavation/component5/southwest +/turf/open/desert/excavation/component5{dir=1;} : /turf/open/desert/excavation/component5/north +/turf/open/desert/excavation/component5{dir=4;} : /turf/open/desert/excavation/component5/east +/turf/open/desert/excavation/component5{dir=5;} : /turf/open/desert/excavation/component5/northeast +/turf/open/desert/excavation/component5{dir=6;} : /turf/open/desert/excavation/component5/southeast +/turf/open/desert/excavation/component5{dir=8;} : /turf/open/desert/excavation/component5/west +/turf/open/desert/excavation/component6{dir=10;} : /turf/open/desert/excavation/component6/southwest +/turf/open/desert/excavation/component6{dir=1;} : /turf/open/desert/excavation/component6/north +/turf/open/desert/excavation/component6{dir=4;} : /turf/open/desert/excavation/component6/east +/turf/open/desert/excavation/component6{dir=5;} : /turf/open/desert/excavation/component6/northeast +/turf/open/desert/excavation/component6{dir=6;} : /turf/open/desert/excavation/component6/southeast +/turf/open/desert/excavation/component6{dir=8;} : /turf/open/desert/excavation/component6/west +/turf/open/desert/excavation/component7{dir=10;} : /turf/open/desert/excavation/component7/southwest +/turf/open/desert/excavation/component7{dir=1;} : /turf/open/desert/excavation/component7/north +/turf/open/desert/excavation/component7{dir=4;} : /turf/open/desert/excavation/component7/east +/turf/open/desert/excavation/component7{dir=5;} : /turf/open/desert/excavation/component7/northeast +/turf/open/desert/excavation/component7{dir=6;} : /turf/open/desert/excavation/component7/southeast +/turf/open/desert/excavation/component7{dir=8;} : /turf/open/desert/excavation/component7/west +/turf/open/desert/excavation/component8{dir=10;} : /turf/open/desert/excavation/component8/southwest +/turf/open/desert/excavation/component8{dir=1;} : /turf/open/desert/excavation/component8/north +/turf/open/desert/excavation/component8{dir=4;} : /turf/open/desert/excavation/component8/east +/turf/open/desert/excavation/component8{dir=5;} : /turf/open/desert/excavation/component8/northeast +/turf/open/desert/excavation/component8{dir=6;} : /turf/open/desert/excavation/component8/southeast +/turf/open/desert/excavation/component8{dir=8;} : /turf/open/desert/excavation/component8/west +/turf/open/desert/excavation/component8{dir=9;} : /turf/open/desert/excavation/component8/northwest +/turf/open/desert/excavation/component9{dir=10;} : /turf/open/desert/excavation/component9/southwest +/turf/open/desert/excavation/component9{dir=1;} : /turf/open/desert/excavation/component9/north +/turf/open/desert/excavation/component9{dir=4;} : /turf/open/desert/excavation/component9/east +/turf/open/desert/excavation/component9{dir=6;} : /turf/open/desert/excavation/component9/southeast +/turf/open/desert/excavation/component9{dir=8;} : /turf/open/desert/excavation/component9/west +/turf/open/desert/rock/deep/transition{dir=10;} : /turf/open/desert/rock/deep/transition/southwest +/turf/open/desert/rock/deep/transition{dir=1;} : /turf/open/desert/rock/deep/transition/north +/turf/open/desert/rock/deep/transition{dir=4;} : /turf/open/desert/rock/deep/transition/east +/turf/open/desert/rock/deep/transition{dir=5;} : /turf/open/desert/rock/deep/transition/northeast +/turf/open/desert/rock/deep/transition{dir=6;} : /turf/open/desert/rock/deep/transition/southeast +/turf/open/desert/rock/deep/transition{dir=8;} : /turf/open/desert/rock/deep/transition/west +/turf/open/desert/rock/deep/transition{dir=9;} : /turf/open/desert/rock/deep/transition/northwest +/turf/open/desert/rock/deep{icon_state="rock3";} : /turf/open/desert/rock/deep/rock3 +/turf/open/desert/rock/deep{icon_state="rock4";} : /turf/open/desert/rock/deep/rock4 +/turf/open/desert/rock/edge1{dir=4;} : /turf/open/desert/rock/edge1/east +/turf/open/floor/airless{dir=5;icon_state="asteroidfloor";} : /turf/open/floor/airless/asteroidfloor/northeast +/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";light_range=4;} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range +/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3 +/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/east +/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/east +/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/west +/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/west +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_cargo";} : /turf/open/floor/almayer/aicore/no_build/ai_cargo +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_floor2";} : /turf/open/floor/almayer/aicore/no_build/ai_floor2 +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_plates";} : /turf/open/floor/almayer/aicore/no_build/ai_plates +/turf/open/floor/almayer/no_build{icon_state="ai_floors";} : /turf/open/floor/almayer/no_build/ai_floors +/turf/open/floor/almayer/no_build{icon_state="plating";} : /turf/open/floor/almayer/no_build/plating +/turf/open/floor/almayer/no_build{icon_state="test_floor4";} : /turf/open/floor/almayer/no_build/test_floor4 +/turf/open/floor/almayer/research/containment/corner_var1{dir=4;} : /turf/open/floor/almayer/research/containment/corner_var1/east +/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 +/turf/open/floor/almayer/research/containment/corner{dir=1;} : /turf/open/floor/almayer/research/containment/corner/north +/turf/open/floor/almayer/research/containment/corner{dir=4;} : /turf/open/floor/almayer/research/containment/corner/east +/turf/open/floor/almayer/research/containment/entrance{dir=8;} : /turf/open/floor/almayer/research/containment/entrance/west +/turf/open/floor/almayer/research/containment/floor2{dir=1;} : /turf/open/floor/almayer/research/containment/floor2/north +/turf/open/floor/almayer/research/containment/floor2{dir=8;} : /turf/open/floor/almayer/research/containment/floor2/west +/turf/open/floor/almayer/uscm/directional{dir=10;} : /turf/open/floor/almayer/uscm/directional/southwest +/turf/open/floor/almayer/uscm/directional{dir=1;} : /turf/open/floor/almayer/uscm/directional/north +/turf/open/floor/almayer/uscm/directional{dir=4;} : /turf/open/floor/almayer/uscm/directional/east +/turf/open/floor/almayer/uscm/directional{dir=5;} : /turf/open/floor/almayer/uscm/directional/northeast +/turf/open/floor/almayer/uscm/directional{dir=6;} : /turf/open/floor/almayer/uscm/directional/southeast +/turf/open/floor/almayer/uscm/directional{dir=8;icon_state="logo_c";} : /turf/open/floor/almayer/uscm/directional/logo_c/west +/turf/open/floor/almayer/uscm/directional{dir=8;} : /turf/open/floor/almayer/uscm/directional/west +/turf/open/floor/almayer/uscm/directional{dir=9;} : /turf/open/floor/almayer/uscm/directional/northwest +/turf/open/floor/almayer_hull{dir=10;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southwest +/turf/open/floor/almayer_hull{dir=1;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/north +/turf/open/floor/almayer_hull{dir=4;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/east +/turf/open/floor/almayer_hull{dir=5;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northeast +/turf/open/floor/almayer_hull{dir=6;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southeast +/turf/open/floor/almayer_hull{dir=8;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/west +/turf/open/floor/almayer_hull{dir=9;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northwest +/turf/open/floor/almayer_hull{icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir +/turf/open/floor/almayer{allow_construction=0;icon_state="plate";} : /turf/open/floor/almayer/no_build/plate +/turf/open/floor/almayer{allow_construction=0;} : /turf/open/floor/almayer/no_build +/turf/open/floor/almayer{desc="There's a hatch above it, presumably to allow pods to drop in.";icon_state="test_floor4";name="pod landing floor";} : /turf/open/floor/almayer/pod_landing_floor +/turf/open/floor/almayer{dir=10;icon_state="blue";} : /turf/open/floor/almayer/blue/southwest +/turf/open/floor/almayer{dir=10;icon_state="cargo";} : /turf/open/floor/almayer/cargo/southwest +/turf/open/floor/almayer{dir=10;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southwest +/turf/open/floor/almayer{dir=10;icon_state="green";} : /turf/open/floor/almayer/green/southwest +/turf/open/floor/almayer{dir=10;icon_state="orange";} : /turf/open/floor/almayer/orange/southwest +/turf/open/floor/almayer{dir=10;icon_state="red";} : /turf/open/floor/almayer/red/southwest +/turf/open/floor/almayer{dir=10;icon_state="silver";} : /turf/open/floor/almayer/silver/southwest +/turf/open/floor/almayer{dir=10;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southwest +/turf/open/floor/almayer{dir=1;icon_state="blue";} : /turf/open/floor/almayer/blue/north +/turf/open/floor/almayer{dir=1;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/north +/turf/open/floor/almayer{dir=1;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/north +/turf/open/floor/almayer{dir=1;icon_state="emerald";} : /turf/open/floor/almayer/emerald/north +/turf/open/floor/almayer{dir=1;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/north +/turf/open/floor/almayer{dir=1;icon_state="green";} : /turf/open/floor/almayer/green/north +/turf/open/floor/almayer{dir=1;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/north +/turf/open/floor/almayer{dir=1;icon_state="orange";} : /turf/open/floor/almayer/orange/north +/turf/open/floor/almayer{dir=1;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/north +/turf/open/floor/almayer{dir=1;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/north +/turf/open/floor/almayer{dir=1;icon_state="red";} : /turf/open/floor/almayer/red/north +/turf/open/floor/almayer{dir=1;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/north +/turf/open/floor/almayer{dir=1;icon_state="silver";} : /turf/open/floor/almayer/silver/north +/turf/open/floor/almayer{dir=1;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/north +/turf/open/floor/almayer{dir=1;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/north +/turf/open/floor/almayer{dir=1;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/north +/turf/open/floor/almayer{dir=1;icon_state="w-y0";} : /turf/open/floor/almayer/w_y0/north +/turf/open/floor/almayer{dir=1;icon_state="w-y1";} : /turf/open/floor/almayer/w_y1/north +/turf/open/floor/almayer{dir=1;icon_state="w-y2";} : /turf/open/floor/almayer/w_y2/north +/turf/open/floor/almayer{dir=2;icon_state="green";} : /turf/open/floor/almayer/green/south +/turf/open/floor/almayer{dir=4;icon_state="blue";} : /turf/open/floor/almayer/blue/east +/turf/open/floor/almayer{dir=4;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/east +/turf/open/floor/almayer{dir=4;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/east +/turf/open/floor/almayer{dir=4;icon_state="emerald";} : /turf/open/floor/almayer/emerald/east +/turf/open/floor/almayer{dir=4;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/east +/turf/open/floor/almayer{dir=4;icon_state="green";} : /turf/open/floor/almayer/green/east +/turf/open/floor/almayer{dir=4;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/east +/turf/open/floor/almayer{dir=4;icon_state="orange";} : /turf/open/floor/almayer/orange/east +/turf/open/floor/almayer{dir=4;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/east +/turf/open/floor/almayer{dir=4;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/east +/turf/open/floor/almayer{dir=4;icon_state="red";} : /turf/open/floor/almayer/red/east +/turf/open/floor/almayer{dir=4;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/east +/turf/open/floor/almayer{dir=4;icon_state="silver";} : /turf/open/floor/almayer/silver/east +/turf/open/floor/almayer{dir=4;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/east +/turf/open/floor/almayer{dir=4;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/east +/turf/open/floor/almayer{dir=4;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/east +/turf/open/floor/almayer{dir=5;icon_state="blue";} : /turf/open/floor/almayer/blue/northeast +/turf/open/floor/almayer{dir=5;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northeast +/turf/open/floor/almayer{dir=5;icon_state="green";} : /turf/open/floor/almayer/green/northeast +/turf/open/floor/almayer{dir=5;icon_state="orange";} : /turf/open/floor/almayer/orange/northeast +/turf/open/floor/almayer{dir=5;icon_state="plating";} : /turf/open/floor/almayer/plating/northeast +/turf/open/floor/almayer{dir=5;icon_state="red";} : /turf/open/floor/almayer/red/northeast +/turf/open/floor/almayer{dir=5;icon_state="silver";} : /turf/open/floor/almayer/silver/northeast +/turf/open/floor/almayer{dir=5;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northeast +/turf/open/floor/almayer{dir=6;icon_state="blue";} : /turf/open/floor/almayer/blue/southeast +/turf/open/floor/almayer{dir=6;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southeast +/turf/open/floor/almayer{dir=6;icon_state="green";} : /turf/open/floor/almayer/green/southeast +/turf/open/floor/almayer{dir=6;icon_state="orange";} : /turf/open/floor/almayer/orange/southeast +/turf/open/floor/almayer{dir=6;icon_state="red";} : /turf/open/floor/almayer/red/southeast +/turf/open/floor/almayer{dir=6;icon_state="silver";} : /turf/open/floor/almayer/silver/southeast +/turf/open/floor/almayer{dir=6;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southeast +/turf/open/floor/almayer{dir=8;icon_state="blue";} : /turf/open/floor/almayer/blue/west +/turf/open/floor/almayer{dir=8;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/west +/turf/open/floor/almayer{dir=8;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/west +/turf/open/floor/almayer{dir=8;icon_state="emerald";} : /turf/open/floor/almayer/emerald/west +/turf/open/floor/almayer{dir=8;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/west +/turf/open/floor/almayer{dir=8;icon_state="green";} : /turf/open/floor/almayer/green/west +/turf/open/floor/almayer{dir=8;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/west +/turf/open/floor/almayer{dir=8;icon_state="orange";} : /turf/open/floor/almayer/orange/west +/turf/open/floor/almayer{dir=8;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/west +/turf/open/floor/almayer{dir=8;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/west +/turf/open/floor/almayer{dir=8;icon_state="red";} : /turf/open/floor/almayer/red/west +/turf/open/floor/almayer{dir=8;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/west +/turf/open/floor/almayer{dir=8;icon_state="silver";} : /turf/open/floor/almayer/silver/west +/turf/open/floor/almayer{dir=8;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/west +/turf/open/floor/almayer{dir=8;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/west +/turf/open/floor/almayer{dir=8;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/west +/turf/open/floor/almayer{dir=9;icon_state="blue";} : /turf/open/floor/almayer/blue/northwest +/turf/open/floor/almayer{dir=9;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northwest +/turf/open/floor/almayer{dir=9;icon_state="green";} : /turf/open/floor/almayer/green/northwest +/turf/open/floor/almayer{dir=9;icon_state="orange";} : /turf/open/floor/almayer/orange/northwest +/turf/open/floor/almayer{dir=9;icon_state="red";} : /turf/open/floor/almayer/red/northwest +/turf/open/floor/almayer{dir=9;icon_state="silver";} : /turf/open/floor/almayer/silver/northwest +/turf/open/floor/almayer{dir=9;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northwest +/turf/open/floor/almayer{icon_state="ai_floors";} : /turf/open/floor/almayer/ai_floors +/turf/open/floor/almayer{icon_state="blue";} : /turf/open/floor/almayer/blue +/turf/open/floor/almayer{icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner +/turf/open/floor/almayer{icon_state="bluefull";} : /turf/open/floor/almayer/bluefull +/turf/open/floor/almayer{icon_state="cargo";} : /turf/open/floor/almayer/cargo +/turf/open/floor/almayer{icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow +/turf/open/floor/almayer{icon_state="dark_sterile";} : /turf/open/floor/almayer/dark_sterile +/turf/open/floor/almayer{icon_state="emerald";} : /turf/open/floor/almayer/emerald +/turf/open/floor/almayer{icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner +/turf/open/floor/almayer{icon_state="emeraldfull";} : /turf/open/floor/almayer/emeraldfull +/turf/open/floor/almayer{icon_state="floor";} : /turf/open/floor/almayer/floor +/turf/open/floor/almayer{icon_state="green";} : /turf/open/floor/almayer/green +/turf/open/floor/almayer{icon_state="greencorner";} : /turf/open/floor/almayer/greencorner +/turf/open/floor/almayer{icon_state="greenfull";} : /turf/open/floor/almayer/greenfull +/turf/open/floor/almayer{icon_state="mono";} : /turf/open/floor/almayer/mono +/turf/open/floor/almayer{icon_state="orange";} : /turf/open/floor/almayer/orange +/turf/open/floor/almayer{icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner +/turf/open/floor/almayer{icon_state="orangefull";} : /turf/open/floor/almayer/orangefull +/turf/open/floor/almayer{icon_state="plate";} : /turf/open/floor/almayer/plate +/turf/open/floor/almayer{icon_state="plating";} : /turf/open/floor/almayer/plating +/turf/open/floor/almayer{icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped +/turf/open/floor/almayer{icon_state="red";} : /turf/open/floor/almayer/red +/turf/open/floor/almayer{icon_state="redcorner";} : /turf/open/floor/almayer/redcorner +/turf/open/floor/almayer{icon_state="redfull";} : /turf/open/floor/almayer/redfull +/turf/open/floor/almayer{icon_state="silver";} : /turf/open/floor/almayer/silver +/turf/open/floor/almayer{icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner +/turf/open/floor/almayer{icon_state="silverfull";} : /turf/open/floor/almayer/silverfull +/turf/open/floor/almayer{icon_state="sterile";} : /turf/open/floor/almayer/sterile +/turf/open/floor/almayer{icon_state="sterile_green";} : /turf/open/floor/almayer/sterile_green +/turf/open/floor/almayer{icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner +/turf/open/floor/almayer{icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side +/turf/open/floor/almayer{icon_state="tcomms";} : /turf/open/floor/almayer/tcomms +/turf/open/floor/almayer{icon_state="test_floor4";} : /turf/open/floor/almayer/test_floor4 +/turf/open/floor/almayer{icon_state="test_floor5";} : /turf/open/floor/almayer/test_floor5 +/turf/open/floor/bluegrid{icon_state="bcircuitoff";} : /turf/open/floor/bluegrid/bcircuitoff +/turf/open/floor/bluegrid{icon_state="damaged3";} : /turf/open/floor/bluegrid/damaged3 +/turf/open/floor/bluegrid{icon_state="damaged4";} : /turf/open/floor/bluegrid/damaged4 +/turf/open/floor/bluegrid{icon_state="damaged5";} : /turf/open/floor/bluegrid/damaged5 +/turf/open/floor/carpet/edge{dir=10;} : /turf/open/floor/carpet/edge/southwest +/turf/open/floor/carpet/edge{dir=1;} : /turf/open/floor/carpet/edge/north +/turf/open/floor/carpet/edge{dir=4;} : /turf/open/floor/carpet/edge/east +/turf/open/floor/carpet/edge{dir=5;} : /turf/open/floor/carpet/edge/northeast +/turf/open/floor/carpet/edge{dir=6;} : /turf/open/floor/carpet/edge/southeast +/turf/open/floor/carpet/edge{dir=8;} : /turf/open/floor/carpet/edge/west +/turf/open/floor/carpet/edge{dir=9;} : /turf/open/floor/carpet/edge/northwest +/turf/open/floor/carpet{desc="Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft.";name="\improper carpet";} : /turf/open/floor/carpet +/turf/open/floor/carpet{icon_state="bcarpet01";} : /turf/open/floor/carpet/bcarpet01 +/turf/open/floor/carpet{icon_state="bcarpet02";} : /turf/open/floor/carpet/bcarpet02 +/turf/open/floor/carpet{icon_state="bcarpet03";} : /turf/open/floor/carpet/bcarpet03 +/turf/open/floor/carpet{icon_state="bcarpet07";} : /turf/open/floor/carpet/bcarpet07 +/turf/open/floor/carpet{icon_state="bcarpet08";} : /turf/open/floor/carpet/bcarpet08 +/turf/open/floor/carpet{icon_state="bcarpet09";} : /turf/open/floor/carpet/bcarpet09 +/turf/open/floor/carpet{name="\improper carpet";} : /turf/open/floor/carpet +/turf/open/floor/coagulation{icon_state="0,0";} : /turf/open/floor/coagulation/icon0_0 +/turf/open/floor/coagulation{icon_state="0,4";} : /turf/open/floor/coagulation/icon0_4 +/turf/open/floor/coagulation{icon_state="0,5";} : /turf/open/floor/coagulation/icon0_5 +/turf/open/floor/coagulation{icon_state="0,8";} : /turf/open/floor/coagulation/icon0_8 +/turf/open/floor/coagulation{icon_state="1,1";} : /turf/open/floor/coagulation/icon1_1 +/turf/open/floor/coagulation{icon_state="1,7";} : /turf/open/floor/coagulation/icon1_7 +/turf/open/floor/coagulation{icon_state="2,0";} : /turf/open/floor/coagulation/icon2_0 +/turf/open/floor/coagulation{icon_state="4,8";} : /turf/open/floor/coagulation/icon4_8 +/turf/open/floor/coagulation{icon_state="5,8";} : /turf/open/floor/coagulation/icon5_8 +/turf/open/floor/coagulation{icon_state="6,8";} : /turf/open/floor/coagulation/icon6_8 +/turf/open/floor/coagulation{icon_state="6,8-2";} : /turf/open/floor/coagulation/icon6_8_2 +/turf/open/floor/coagulation{icon_state="7,0";} : /turf/open/floor/coagulation/icon7_0 +/turf/open/floor/coagulation{icon_state="7,1";} : /turf/open/floor/coagulation/icon7_1 +/turf/open/floor/coagulation{icon_state="7,7";} : /turf/open/floor/coagulation/icon7_7 +/turf/open/floor/coagulation{icon_state="7,7-2";} : /turf/open/floor/coagulation/icon7_7_2 +/turf/open/floor/coagulation{icon_state="7,8";} : /turf/open/floor/coagulation/icon7_8 +/turf/open/floor/coagulation{icon_state="7,8-2";} : /turf/open/floor/coagulation/icon7_8_2 +/turf/open/floor/coagulation{icon_state="8,0";} : /turf/open/floor/coagulation/icon8_0 +/turf/open/floor/coagulation{icon_state="8,3";} : /turf/open/floor/coagulation/icon8_3 +/turf/open/floor/coagulation{icon_state="8,4";} : /turf/open/floor/coagulation/icon8_4 +/turf/open/floor/coagulation{icon_state="8,6";} : /turf/open/floor/coagulation/icon8_6 +/turf/open/floor/coagulation{icon_state="8,7";} : /turf/open/floor/coagulation/icon8_7 +/turf/open/floor/coagulation{icon_state="8,7-2";} : /turf/open/floor/coagulation/icon8_7_2 +/turf/open/floor/coagulation{icon_state="8,8";} : /turf/open/floor/coagulation/icon8_8 +/turf/open/floor/corsat{dir=10;icon_state="blue";} : /turf/open/floor/corsat/blue/southwest +/turf/open/floor/corsat{dir=10;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southwest +/turf/open/floor/corsat{dir=10;icon_state="brown";} : /turf/open/floor/corsat/brown/southwest +/turf/open/floor/corsat{dir=10;icon_state="corsat_teleporter_static";} : /turf/open/floor/corsat/corsat_teleporter_static/southwest +/turf/open/floor/corsat{dir=10;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southwest +/turf/open/floor/corsat{dir=10;icon_state="green";} : /turf/open/floor/corsat/green/southwest +/turf/open/floor/corsat{dir=10;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southwest +/turf/open/floor/corsat{dir=10;icon_state="purple";} : /turf/open/floor/corsat/purple/southwest +/turf/open/floor/corsat{dir=10;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southwest +/turf/open/floor/corsat{dir=10;icon_state="red";} : /turf/open/floor/corsat/red/southwest +/turf/open/floor/corsat{dir=10;icon_state="tcomms";} : /turf/open/floor/corsat/tcomms/southwest +/turf/open/floor/corsat{dir=10;icon_state="white";} : /turf/open/floor/corsat/white/southwest +/turf/open/floor/corsat{dir=10;icon_state="whitebluefull";} : /turf/open/floor/corsat/whitebluefull/southwest +/turf/open/floor/corsat{dir=10;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southwest +/turf/open/floor/corsat{dir=10;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southwest +/turf/open/floor/corsat{dir=1;icon_state="blue";} : /turf/open/floor/corsat/blue/north +/turf/open/floor/corsat{dir=1;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/north +/turf/open/floor/corsat{dir=1;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/north +/turf/open/floor/corsat{dir=1;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/north +/turf/open/floor/corsat{dir=1;icon_state="brown";} : /turf/open/floor/corsat/brown/north +/turf/open/floor/corsat{dir=1;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/north +/turf/open/floor/corsat{dir=1;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/north +/turf/open/floor/corsat{dir=1;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/north +/turf/open/floor/corsat{dir=1;icon_state="green";} : /turf/open/floor/corsat/green/north +/turf/open/floor/corsat{dir=1;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/north +/turf/open/floor/corsat{dir=1;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/north +/turf/open/floor/corsat{dir=1;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="purple";} : /turf/open/floor/corsat/purple/north +/turf/open/floor/corsat{dir=1;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/north +/turf/open/floor/corsat{dir=1;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/north +/turf/open/floor/corsat{dir=1;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="red";} : /turf/open/floor/corsat/red/north +/turf/open/floor/corsat{dir=1;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/north +/turf/open/floor/corsat{dir=1;icon_state="squareswood";} : /turf/open/floor/corsat/squareswood/north +/turf/open/floor/corsat{dir=1;icon_state="tan";} : /turf/open/floor/corsat/tan/north +/turf/open/floor/corsat{dir=1;icon_state="white";} : /turf/open/floor/corsat/white/north +/turf/open/floor/corsat{dir=1;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/north +/turf/open/floor/corsat{dir=1;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/north +/turf/open/floor/corsat{dir=1;icon_state="yellow";} : /turf/open/floor/corsat/yellow/north +/turf/open/floor/corsat{dir=1;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/north +/turf/open/floor/corsat{dir=4;icon_state="blue";} : /turf/open/floor/corsat/blue/east +/turf/open/floor/corsat{dir=4;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/east +/turf/open/floor/corsat{dir=4;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/east +/turf/open/floor/corsat{dir=4;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/east +/turf/open/floor/corsat{dir=4;icon_state="brown";} : /turf/open/floor/corsat/brown/east +/turf/open/floor/corsat{dir=4;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/east +/turf/open/floor/corsat{dir=4;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/east +/turf/open/floor/corsat{dir=4;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/east +/turf/open/floor/corsat{dir=4;icon_state="green";} : /turf/open/floor/corsat/green/east +/turf/open/floor/corsat{dir=4;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/east +/turf/open/floor/corsat{dir=4;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/east +/turf/open/floor/corsat{dir=4;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="purple";} : /turf/open/floor/corsat/purple/east +/turf/open/floor/corsat{dir=4;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/east +/turf/open/floor/corsat{dir=4;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/east +/turf/open/floor/corsat{dir=4;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="red";} : /turf/open/floor/corsat/red/east +/turf/open/floor/corsat{dir=4;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/east +/turf/open/floor/corsat{dir=4;icon_state="white";} : /turf/open/floor/corsat/white/east +/turf/open/floor/corsat{dir=4;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/east +/turf/open/floor/corsat{dir=4;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/east +/turf/open/floor/corsat{dir=4;icon_state="yellow";} : /turf/open/floor/corsat/yellow/east +/turf/open/floor/corsat{dir=4;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/east +/turf/open/floor/corsat{dir=5;icon_state="blue";} : /turf/open/floor/corsat/blue/northeast +/turf/open/floor/corsat{dir=5;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northeast +/turf/open/floor/corsat{dir=5;icon_state="brown";} : /turf/open/floor/corsat/brown/northeast +/turf/open/floor/corsat{dir=5;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northeast +/turf/open/floor/corsat{dir=5;icon_state="green";} : /turf/open/floor/corsat/green/northeast +/turf/open/floor/corsat{dir=5;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northeast +/turf/open/floor/corsat{dir=5;icon_state="purple";} : /turf/open/floor/corsat/purple/northeast +/turf/open/floor/corsat{dir=5;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northeast +/turf/open/floor/corsat{dir=5;icon_state="red";} : /turf/open/floor/corsat/red/northeast +/turf/open/floor/corsat{dir=5;icon_state="white";} : /turf/open/floor/corsat/white/northeast +/turf/open/floor/corsat{dir=5;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northeast +/turf/open/floor/corsat{dir=5;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northeast +/turf/open/floor/corsat{dir=6;icon_state="blue";} : /turf/open/floor/corsat/blue/southeast +/turf/open/floor/corsat{dir=6;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southeast +/turf/open/floor/corsat{dir=6;icon_state="brown";} : /turf/open/floor/corsat/brown/southeast +/turf/open/floor/corsat{dir=6;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southeast +/turf/open/floor/corsat{dir=6;icon_state="green";} : /turf/open/floor/corsat/green/southeast +/turf/open/floor/corsat{dir=6;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southeast +/turf/open/floor/corsat{dir=6;icon_state="purple";} : /turf/open/floor/corsat/purple/southeast +/turf/open/floor/corsat{dir=6;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southeast +/turf/open/floor/corsat{dir=6;icon_state="red";} : /turf/open/floor/corsat/red/southeast +/turf/open/floor/corsat{dir=6;icon_state="white";} : /turf/open/floor/corsat/white/southeast +/turf/open/floor/corsat{dir=6;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southeast +/turf/open/floor/corsat{dir=6;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southeast +/turf/open/floor/corsat{dir=8;icon_state="blue";} : /turf/open/floor/corsat/blue/west +/turf/open/floor/corsat{dir=8;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/west +/turf/open/floor/corsat{dir=8;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/west +/turf/open/floor/corsat{dir=8;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/west +/turf/open/floor/corsat{dir=8;icon_state="brown";} : /turf/open/floor/corsat/brown/west +/turf/open/floor/corsat{dir=8;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/west +/turf/open/floor/corsat{dir=8;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/west +/turf/open/floor/corsat{dir=8;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/west +/turf/open/floor/corsat{dir=8;icon_state="green";} : /turf/open/floor/corsat/green/west +/turf/open/floor/corsat{dir=8;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/west +/turf/open/floor/corsat{dir=8;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/west +/turf/open/floor/corsat{dir=8;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="purple";} : /turf/open/floor/corsat/purple/west +/turf/open/floor/corsat{dir=8;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/west +/turf/open/floor/corsat{dir=8;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/west +/turf/open/floor/corsat{dir=8;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="red";} : /turf/open/floor/corsat/red/west +/turf/open/floor/corsat{dir=8;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/west +/turf/open/floor/corsat{dir=8;icon_state="white";} : /turf/open/floor/corsat/white/west +/turf/open/floor/corsat{dir=8;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/west +/turf/open/floor/corsat{dir=8;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/west +/turf/open/floor/corsat{dir=8;icon_state="yellow";} : /turf/open/floor/corsat/yellow/west +/turf/open/floor/corsat{dir=8;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/west +/turf/open/floor/corsat{dir=9;icon_state="blue";} : /turf/open/floor/corsat/blue/northwest +/turf/open/floor/corsat{dir=9;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northwest +/turf/open/floor/corsat{dir=9;icon_state="brown";} : /turf/open/floor/corsat/brown/northwest +/turf/open/floor/corsat{dir=9;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northwest +/turf/open/floor/corsat{dir=9;icon_state="green";} : /turf/open/floor/corsat/green/northwest +/turf/open/floor/corsat{dir=9;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northwest +/turf/open/floor/corsat{dir=9;icon_state="purple";} : /turf/open/floor/corsat/purple/northwest +/turf/open/floor/corsat{dir=9;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northwest +/turf/open/floor/corsat{dir=9;icon_state="red";} : /turf/open/floor/corsat/red/northwest +/turf/open/floor/corsat{dir=9;icon_state="white";} : /turf/open/floor/corsat/white/northwest +/turf/open/floor/corsat{dir=9;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northwest +/turf/open/floor/corsat{dir=9;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northwest +/turf/open/floor/corsat{icon_state="arrow_east";} : /turf/open/floor/corsat/arrow_east +/turf/open/floor/corsat{icon_state="arrow_north";} : /turf/open/floor/corsat/arrow_north +/turf/open/floor/corsat{icon_state="arrow_south";} : /turf/open/floor/corsat/arrow_south +/turf/open/floor/corsat{icon_state="arrow_west";} : /turf/open/floor/corsat/arrow_west +/turf/open/floor/corsat{icon_state="blue";} : /turf/open/floor/corsat/blue +/turf/open/floor/corsat{icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner +/turf/open/floor/corsat{icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey +/turf/open/floor/corsat{icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner +/turf/open/floor/corsat{icon_state="brown";} : /turf/open/floor/corsat/brown +/turf/open/floor/corsat{icon_state="browncorner";} : /turf/open/floor/corsat/browncorner +/turf/open/floor/corsat{icon_state="cargo";} : /turf/open/floor/corsat/cargo +/turf/open/floor/corsat{icon_state="damaged1";} : /turf/open/floor/corsat/damaged1 +/turf/open/floor/corsat{icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen +/turf/open/floor/corsat{icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner +/turf/open/floor/corsat{icon_state="gamma";} : /turf/open/floor/corsat/gamma +/turf/open/floor/corsat{icon_state="green";} : /turf/open/floor/corsat/green +/turf/open/floor/corsat{icon_state="greencorner";} : /turf/open/floor/corsat/greencorner +/turf/open/floor/corsat{icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite +/turf/open/floor/corsat{icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner +/turf/open/floor/corsat{icon_state="lightplate";} : /turf/open/floor/corsat/lightplate +/turf/open/floor/corsat{icon_state="marked";} : /turf/open/floor/corsat/marked +/turf/open/floor/corsat{icon_state="officesquares";} : /turf/open/floor/corsat/officesquares +/turf/open/floor/corsat{icon_state="omega";} : /turf/open/floor/corsat/omega +/turf/open/floor/corsat{icon_state="plate";} : /turf/open/floor/corsat/plate +/turf/open/floor/corsat{icon_state="purple";} : /turf/open/floor/corsat/purple +/turf/open/floor/corsat{icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner +/turf/open/floor/corsat{icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite +/turf/open/floor/corsat{icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner +/turf/open/floor/corsat{icon_state="red";dir=10;} : /turf/open/floor/corsat/red/southwest +/turf/open/floor/corsat{icon_state="red";dir=1;} : /turf/open/floor/corsat/red/north +/turf/open/floor/corsat{icon_state="red";dir=4;} : /turf/open/floor/corsat/red/east +/turf/open/floor/corsat{icon_state="red";dir=5;} : /turf/open/floor/corsat/red/northeast +/turf/open/floor/corsat{icon_state="red";dir=6;} : /turf/open/floor/corsat/red/southeast +/turf/open/floor/corsat{icon_state="red";dir=8;} : /turf/open/floor/corsat/red/west +/turf/open/floor/corsat{icon_state="red";dir=9;} : /turf/open/floor/corsat/red/northwest +/turf/open/floor/corsat{icon_state="red";} : /turf/open/floor/corsat/red +/turf/open/floor/corsat{icon_state="redcorner";dir=1;} : /turf/open/floor/corsat/redcorner/north +/turf/open/floor/corsat{icon_state="redcorner";dir=4;} : /turf/open/floor/corsat/redcorner/east +/turf/open/floor/corsat{icon_state="redcorner";} : /turf/open/floor/corsat/redcorner +/turf/open/floor/corsat{icon_state="retrosquares";} : /turf/open/floor/corsat/retrosquares +/turf/open/floor/corsat{icon_state="retrosquareslight";} : /turf/open/floor/corsat/retrosquareslight +/turf/open/floor/corsat{icon_state="sigma";} : /turf/open/floor/corsat/sigma +/turf/open/floor/corsat{icon_state="spiralplate";} : /turf/open/floor/corsat/spiralplate +/turf/open/floor/corsat{icon_state="spiralwoodalt";} : /turf/open/floor/corsat/spiralwoodalt +/turf/open/floor/corsat{icon_state="squares";} : /turf/open/floor/corsat/squares +/turf/open/floor/corsat{icon_state="sterileplate";} : /turf/open/floor/corsat/sterileplate +/turf/open/floor/corsat{icon_state="theta";} : /turf/open/floor/corsat/theta +/turf/open/floor/corsat{icon_state="white";} : /turf/open/floor/corsat/white +/turf/open/floor/corsat{icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner +/turf/open/floor/corsat{icon_state="whitetan";} : /turf/open/floor/corsat/whitetan +/turf/open/floor/corsat{icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner +/turf/open/floor/corsat{icon_state="yellow";dir=1;} : /turf/open/floor/corsat/yellow/north +/turf/open/floor/corsat{icon_state="yellow";dir=4;} : /turf/open/floor/corsat/yellow/east +/turf/open/floor/corsat{icon_state="yellow";} : /turf/open/floor/corsat/yellow +/turf/open/floor/corsat{icon_state="yellowcorner";dir=4;} : /turf/open/floor/corsat/yellowcorner/east +/turf/open/floor/corsat{icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner +/turf/open/floor/engine{color="#AAAAAA";} : /turf/open/floor/engine/simulator_center +/turf/open/floor/filtrationside{dir=10;} : /turf/open/floor/filtrationside/southwest +/turf/open/floor/filtrationside{dir=1;} : /turf/open/floor/filtrationside/north +/turf/open/floor/filtrationside{dir=4;} : /turf/open/floor/filtrationside/east +/turf/open/floor/filtrationside{dir=5;} : /turf/open/floor/filtrationside/northeast +/turf/open/floor/filtrationside{dir=6;} : /turf/open/floor/filtrationside/southeast +/turf/open/floor/filtrationside{dir=8;} : /turf/open/floor/filtrationside/west +/turf/open/floor/filtrationside{dir=9;} : /turf/open/floor/filtrationside/northwest +/turf/open/floor/holofloor{dir=2;icon_state="cult";} : /turf/open/floor/holofloor/cult/south +/turf/open/floor/holofloor{icon_state="cult";} : /turf/open/floor/holofloor/cult +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor6";} : /turf/open/floor/icefloor/shuttle_floor6 +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor7";} : /turf/open/floor/icefloor/shuttle_floor7 +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="vfloor";} : /turf/open/floor/icefloor/shuttle_vfloor +/turf/open/floor/icefloor{icon_state="ramptop";} : /turf/open/floor/icefloor/ramptop +/turf/open/floor/icefloor{icon_state="rockvault";} : /turf/open/floor/icefloor/rockvault +/turf/open/floor/kutjevo/colors/blue/edge{dir=4;} : /turf/open/floor/kutjevo/colors/blue/edge/east +/turf/open/floor/kutjevo/colors/blue/edge{dir=8;} : /turf/open/floor/kutjevo/colors/blue/edge/west +/turf/open/floor/kutjevo/colors/cyan/edge{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/edge/north +/turf/open/floor/kutjevo/colors/cyan/edge{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/edge/east +/turf/open/floor/kutjevo/colors/cyan/edge{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/edge/west +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/north +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/east +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/west +/turf/open/floor/kutjevo/colors/orange/edge{dir=10;} : /turf/open/floor/kutjevo/colors/orange/edge/southwest +/turf/open/floor/kutjevo/colors/orange/edge{dir=1;} : /turf/open/floor/kutjevo/colors/orange/edge/north +/turf/open/floor/kutjevo/colors/orange/edge{dir=4;} : /turf/open/floor/kutjevo/colors/orange/edge/east +/turf/open/floor/kutjevo/colors/orange/edge{dir=5;} : /turf/open/floor/kutjevo/colors/orange/edge/northeast +/turf/open/floor/kutjevo/colors/orange/edge{dir=6;} : /turf/open/floor/kutjevo/colors/orange/edge/southeast +/turf/open/floor/kutjevo/colors/orange/edge{dir=8;} : /turf/open/floor/kutjevo/colors/orange/edge/west +/turf/open/floor/kutjevo/colors/orange/edge{dir=9;} : /turf/open/floor/kutjevo/colors/orange/edge/northwest +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/north +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/east +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/west +/turf/open/floor/kutjevo/colors/purple/edge{dir=1;} : /turf/open/floor/kutjevo/colors/purple/edge/north +/turf/open/floor/kutjevo/colors/purple/edge{dir=4;} : /turf/open/floor/kutjevo/colors/purple/edge/east +/turf/open/floor/kutjevo/colors/purple/edge{dir=5;} : /turf/open/floor/kutjevo/colors/purple/edge/northeast +/turf/open/floor/kutjevo/colors/purple/edge{dir=8;} : /turf/open/floor/kutjevo/colors/purple/edge/west +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/north +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/east +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/west +/turf/open/floor/kutjevo/multi_tiles{dir=10;} : /turf/open/floor/kutjevo/multi_tiles/southwest +/turf/open/floor/kutjevo/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/multi_tiles/north +/turf/open/floor/kutjevo/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/multi_tiles/east +/turf/open/floor/kutjevo/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/multi_tiles/southeast +/turf/open/floor/kutjevo/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/multi_tiles/west +/turf/open/floor/kutjevo/tan/alt_edge{dir=10;} : /turf/open/floor/kutjevo/tan/alt_edge/southwest +/turf/open/floor/kutjevo/tan/alt_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_edge/north +/turf/open/floor/kutjevo/tan/alt_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_edge/east +/turf/open/floor/kutjevo/tan/alt_edge{dir=5;} : /turf/open/floor/kutjevo/tan/alt_edge/northeast +/turf/open/floor/kutjevo/tan/alt_edge{dir=6;} : /turf/open/floor/kutjevo/tan/alt_edge/southeast +/turf/open/floor/kutjevo/tan/alt_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_edge/west +/turf/open/floor/kutjevo/tan/alt_edge{dir=9;} : /turf/open/floor/kutjevo/tan/alt_edge/northwest +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/north +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/east +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/west +/turf/open/floor/kutjevo/tan/grey_edge{dir=10;} : /turf/open/floor/kutjevo/tan/grey_edge/southwest +/turf/open/floor/kutjevo/tan/grey_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_edge/north +/turf/open/floor/kutjevo/tan/grey_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_edge/east +/turf/open/floor/kutjevo/tan/grey_edge{dir=5;} : /turf/open/floor/kutjevo/tan/grey_edge/northeast +/turf/open/floor/kutjevo/tan/grey_edge{dir=6;} : /turf/open/floor/kutjevo/tan/grey_edge/southeast +/turf/open/floor/kutjevo/tan/grey_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_edge/west +/turf/open/floor/kutjevo/tan/grey_edge{dir=9;} : /turf/open/floor/kutjevo/tan/grey_edge/northwest +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/north +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/east +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/west +/turf/open/floor/kutjevo/tan/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/tan/multi_tiles/north +/turf/open/floor/kutjevo/tan/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/tan/multi_tiles/east +/turf/open/floor/kutjevo/tan/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/tan/multi_tiles/southeast +/turf/open/floor/kutjevo/tan/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/tan/multi_tiles/west +/turf/open/floor/mech_bay_recharge_floor{name="Shuttle Landing Lights";} : /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights +/turf/open/floor/plating/almayer{allow_construction=0;} : /turf/open/floor/plating/almayer/no_build +/turf/open/floor/plating/icefloor{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southwest +/turf/open/floor/plating/icefloor{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/north +/turf/open/floor/plating/icefloor{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/east +/turf/open/floor/plating/icefloor{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northeast +/turf/open/floor/plating/icefloor{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southeast +/turf/open/floor/plating/icefloor{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/west +/turf/open/floor/plating/icefloor{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northwest +/turf/open/floor/plating/icefloor{icon_state="asteroidplating";} : /turf/open/floor/plating/icefloor/asteroidplating +/turf/open/floor/plating/icefloor{icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate +/turf/open/floor/plating/kutjevo{icon_state="panelscorched";} : /turf/open/floor/plating/kutjevo/panelscorched +/turf/open/floor/plating/kutjevo{icon_state="platingdmg1";} : /turf/open/floor/plating/kutjevo/platingdmg1 +/turf/open/floor/plating/kutjevo{icon_state="platingdmg3";} : /turf/open/floor/plating/kutjevo/platingdmg3 +/turf/open/floor/plating{burnt=1;dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/burnt_platingdmg3/west +/turf/open/floor/plating{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southwest +/turf/open/floor/plating{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southwest +/turf/open/floor/plating{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/plating/asteroidfloor/north +/turf/open/floor/plating{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/north +/turf/open/floor/plating{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/north +/turf/open/floor/plating{dir=1;icon_state="warnplatecorner";} : /turf/open/floor/plating/warnplatecorner/north +/turf/open/floor/plating{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/east +/turf/open/floor/plating{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/east +/turf/open/floor/plating{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northeast +/turf/open/floor/plating{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northeast +/turf/open/floor/plating{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southeast +/turf/open/floor/plating{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southeast +/turf/open/floor/plating{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/west +/turf/open/floor/plating{dir=8;icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2/west +/turf/open/floor/plating{dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3/west +/turf/open/floor/plating{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/west +/turf/open/floor/plating{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northwest +/turf/open/floor/plating{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northwest +/turf/open/floor/plating{icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning +/turf/open/floor/plating{icon_state="panelscorched";} : /turf/open/floor/plating/panelscorched +/turf/open/floor/plating{icon_state="platebot";} : /turf/open/floor/plating/platebot +/turf/open/floor/plating{icon_state="platebotc";} : /turf/open/floor/plating/platebotc +/turf/open/floor/plating{icon_state="platingdmg1";} : /turf/open/floor/plating/platingdmg1 +/turf/open/floor/plating{icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2 +/turf/open/floor/plating{icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3 +/turf/open/floor/plating{icon_state="warnplate";} : /turf/open/floor/plating/warnplate +/turf/open/floor/plating{icon_state="wood";} : /turf/open/floor/plating/wood +/turf/open/floor/plating{icon_state="wood-broken2";} : /turf/open/floor/plating/wood_broken2 +/turf/open/floor/plating{icon_state="wood-broken3";} : /turf/open/floor/plating/wood_broken3 +/turf/open/floor/plating{icon_state="wood-broken4";} : /turf/open/floor/plating/wood_broken4 +/turf/open/floor/plating{icon_state="wood-broken5";} : /turf/open/floor/plating/wood_broken5 +/turf/open/floor/plating{icon_state="wood-broken6";} : /turf/open/floor/plating/wood_broken6 +/turf/open/floor/prison/chapel_carpet{dir=1;icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside/north +/turf/open/floor/prison/chapel_carpet{icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside +/turf/open/floor/prison{dir=10;icon_state="blue";} : /turf/open/floor/prison/blue/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean";} : /turf/open/floor/prison/bright_clean/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked/southwest +/turf/open/floor/prison{dir=10;icon_state="damaged1";} : /turf/open/floor/prison/damaged1/southwest +/turf/open/floor/prison{dir=10;icon_state="damaged2";} : /turf/open/floor/prison/damaged2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/southwest +/turf/open/floor/prison{dir=10;icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate/southwest +/turf/open/floor/prison{dir=10;icon_state="green";} : /turf/open/floor/prison/green/southwest +/turf/open/floor/prison{dir=10;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southwest +/turf/open/floor/prison{dir=10;icon_state="kitchen";} : /turf/open/floor/prison/kitchen/southwest +/turf/open/floor/prison{dir=10;icon_state="red";} : /turf/open/floor/prison/red/southwest +/turf/open/floor/prison{dir=10;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/southwest +/turf/open/floor/prison{dir=10;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southwest +/turf/open/floor/prison{dir=10;icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull/southwest +/turf/open/floor/prison{dir=10;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southwest +/turf/open/floor/prison{dir=10;icon_state="whitered";} : /turf/open/floor/prison/whitered/southwest +/turf/open/floor/prison{dir=10;icon_state="yellow";} : /turf/open/floor/prison/yellow/southwest +/turf/open/floor/prison{dir=10;icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull/southwest +/turf/open/floor/prison{dir=10;} : /turf/open/floor/prison/southwest +/turf/open/floor/prison{dir=1;icon_state="blue";} : /turf/open/floor/prison/blue/north +/turf/open/floor/prison{dir=1;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/north +/turf/open/floor/prison{dir=1;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/north +/turf/open/floor/prison{dir=1;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/north +/turf/open/floor/prison{dir=1;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/north +/turf/open/floor/prison{dir=1;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/north +/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/north +/turf/open/floor/prison{dir=1;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/north +/turf/open/floor/prison{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/north +/turf/open/floor/prison{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/north +/turf/open/floor/prison{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/north +/turf/open/floor/prison{dir=1;icon_state="green";} : /turf/open/floor/prison/green/north +/turf/open/floor/prison{dir=1;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/north +/turf/open/floor/prison{dir=1;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/north +/turf/open/floor/prison{dir=1;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/north +/turf/open/floor/prison{dir=1;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/north +/turf/open/floor/prison{dir=1;icon_state="red";} : /turf/open/floor/prison/red/north +/turf/open/floor/prison{dir=1;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/north +/turf/open/floor/prison{dir=1;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/north +/turf/open/floor/prison{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/north +/turf/open/floor/prison{dir=1;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/north +/turf/open/floor/prison{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/north +/turf/open/floor/prison{dir=1;icon_state="whitered";} : /turf/open/floor/prison/whitered/north +/turf/open/floor/prison{dir=1;icon_state="yellow";} : /turf/open/floor/prison/yellow/north +/turf/open/floor/prison{dir=1;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/north +/turf/open/floor/prison{dir=2;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/south +/turf/open/floor/prison{dir=4;icon_state="blue";} : /turf/open/floor/prison/blue/east +/turf/open/floor/prison{dir=4;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/east +/turf/open/floor/prison{dir=4;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/east +/turf/open/floor/prison{dir=4;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/east +/turf/open/floor/prison{dir=4;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/east +/turf/open/floor/prison{dir=4;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/east +/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/east +/turf/open/floor/prison{dir=4;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/east +/turf/open/floor/prison{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/east +/turf/open/floor/prison{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2/east +/turf/open/floor/prison{dir=4;icon_state="green";} : /turf/open/floor/prison/green/east +/turf/open/floor/prison{dir=4;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/east +/turf/open/floor/prison{dir=4;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/east +/turf/open/floor/prison{dir=4;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/east +/turf/open/floor/prison{dir=4;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/east +/turf/open/floor/prison{dir=4;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/east +/turf/open/floor/prison{dir=4;icon_state="red";} : /turf/open/floor/prison/red/east +/turf/open/floor/prison{dir=4;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/east +/turf/open/floor/prison{dir=4;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/east +/turf/open/floor/prison{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/east +/turf/open/floor/prison{dir=4;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/east +/turf/open/floor/prison{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/east +/turf/open/floor/prison{dir=4;icon_state="whitered";} : /turf/open/floor/prison/whitered/east +/turf/open/floor/prison{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/east +/turf/open/floor/prison{dir=4;icon_state="yellow";} : /turf/open/floor/prison/yellow/east +/turf/open/floor/prison{dir=4;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/east +/turf/open/floor/prison{dir=5;icon_state="blue";} : /turf/open/floor/prison/blue/northeast +/turf/open/floor/prison{dir=5;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northeast +/turf/open/floor/prison{dir=5;icon_state="green";} : /turf/open/floor/prison/green/northeast +/turf/open/floor/prison{dir=5;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northeast +/turf/open/floor/prison{dir=5;icon_state="red";} : /turf/open/floor/prison/red/northeast +/turf/open/floor/prison{dir=5;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northeast +/turf/open/floor/prison{dir=5;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northeast +/turf/open/floor/prison{dir=5;icon_state="whitered";} : /turf/open/floor/prison/whitered/northeast +/turf/open/floor/prison{dir=5;icon_state="yellow";} : /turf/open/floor/prison/yellow/northeast +/turf/open/floor/prison{dir=6;icon_state="blue";} : /turf/open/floor/prison/blue/southeast +/turf/open/floor/prison{dir=6;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southeast +/turf/open/floor/prison{dir=6;icon_state="green";} : /turf/open/floor/prison/green/southeast +/turf/open/floor/prison{dir=6;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southeast +/turf/open/floor/prison{dir=6;icon_state="red";} : /turf/open/floor/prison/red/southeast +/turf/open/floor/prison{dir=6;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southeast +/turf/open/floor/prison{dir=6;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southeast +/turf/open/floor/prison{dir=6;icon_state="whitered";} : /turf/open/floor/prison/whitered/southeast +/turf/open/floor/prison{dir=6;icon_state="yellow";} : /turf/open/floor/prison/yellow/southeast +/turf/open/floor/prison{dir=8;icon_state="blue";} : /turf/open/floor/prison/blue/west +/turf/open/floor/prison{dir=8;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/west +/turf/open/floor/prison{dir=8;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/west +/turf/open/floor/prison{dir=8;icon_state="bluefull";} : /turf/open/floor/prison/bluefull/west +/turf/open/floor/prison{dir=8;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/west +/turf/open/floor/prison{dir=8;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/west +/turf/open/floor/prison{dir=8;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/west +/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/west +/turf/open/floor/prison{dir=8;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/west +/turf/open/floor/prison{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/west +/turf/open/floor/prison{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/west +/turf/open/floor/prison{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/west +/turf/open/floor/prison{dir=8;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/west +/turf/open/floor/prison{dir=8;icon_state="green";} : /turf/open/floor/prison/green/west +/turf/open/floor/prison{dir=8;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/west +/turf/open/floor/prison{dir=8;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/west +/turf/open/floor/prison{dir=8;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/west +/turf/open/floor/prison{dir=8;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/west +/turf/open/floor/prison{dir=8;icon_state="red";} : /turf/open/floor/prison/red/west +/turf/open/floor/prison{dir=8;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/west +/turf/open/floor/prison{dir=8;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/west +/turf/open/floor/prison{dir=8;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/west +/turf/open/floor/prison{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/west +/turf/open/floor/prison{dir=8;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/west +/turf/open/floor/prison{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/west +/turf/open/floor/prison{dir=8;icon_state="whitered";} : /turf/open/floor/prison/whitered/west +/turf/open/floor/prison{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/west +/turf/open/floor/prison{dir=8;icon_state="yellow";} : /turf/open/floor/prison/yellow/west +/turf/open/floor/prison{dir=8;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/west +/turf/open/floor/prison{dir=8;} : /turf/open/floor/prison/west +/turf/open/floor/prison{dir=9;icon_state="blue";} : /turf/open/floor/prison/blue/northwest +/turf/open/floor/prison{dir=9;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/northwest +/turf/open/floor/prison{dir=9;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northwest +/turf/open/floor/prison{dir=9;icon_state="green";} : /turf/open/floor/prison/green/northwest +/turf/open/floor/prison{dir=9;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northwest +/turf/open/floor/prison{dir=9;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/northwest +/turf/open/floor/prison{dir=9;icon_state="red";} : /turf/open/floor/prison/red/northwest +/turf/open/floor/prison{dir=9;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northwest +/turf/open/floor/prison{dir=9;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northwest +/turf/open/floor/prison{dir=9;icon_state="whitered";} : /turf/open/floor/prison/whitered/northwest +/turf/open/floor/prison{dir=9;icon_state="yellow";} : /turf/open/floor/prison/yellow/northwest +/turf/open/floor/prison{icon_state="blue";} : /turf/open/floor/prison/blue +/turf/open/floor/prison{icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate +/turf/open/floor/prison{icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner +/turf/open/floor/prison{icon_state="bluefull";} : /turf/open/floor/prison/bluefull +/turf/open/floor/prison{icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2 +/turf/open/floor/prison{icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked +/turf/open/floor/prison{icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe +/turf/open/floor/prison{icon_state="damaged2";} : /turf/open/floor/prison/damaged2 +/turf/open/floor/prison{icon_state="damaged3";} : /turf/open/floor/prison/damaged3 +/turf/open/floor/prison{icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2 +/turf/open/floor/prison{icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3 +/turf/open/floor/prison{icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2 +/turf/open/floor/prison{icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3 +/turf/open/floor/prison{icon_state="darkbrownfull2";} : /turf/open/floor/prison/darkbrownfull2 +/turf/open/floor/prison{icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2 +/turf/open/floor/prison{icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2 +/turf/open/floor/prison{icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2 +/turf/open/floor/prison{icon_state="darkred2";} : /turf/open/floor/prison/darkred2 +/turf/open/floor/prison{icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2 +/turf/open/floor/prison{icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2 +/turf/open/floor/prison{icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2 +/turf/open/floor/prison{icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2 +/turf/open/floor/prison{icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2 +/turf/open/floor/prison{icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked +/turf/open/floor/prison{icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate +/turf/open/floor/prison{icon_state="floorscorched1";} : /turf/open/floor/prison/floorscorched1 +/turf/open/floor/prison{icon_state="floorscorched2";} : /turf/open/floor/prison/floorscorched2 +/turf/open/floor/prison{icon_state="green";} : /turf/open/floor/prison/green +/turf/open/floor/prison{icon_state="greenblue";dir=10;} : /turf/open/floor/prison/greenblue/southwest +/turf/open/floor/prison{icon_state="greenblue";dir=1;} : /turf/open/floor/prison/greenblue/north +/turf/open/floor/prison{icon_state="greenblue";dir=4;} : /turf/open/floor/prison/greenblue/east +/turf/open/floor/prison{icon_state="greenblue";dir=5;} : /turf/open/floor/prison/greenblue/northeast +/turf/open/floor/prison{icon_state="greenblue";dir=6;} : /turf/open/floor/prison/greenblue/southeast +/turf/open/floor/prison{icon_state="greenblue";dir=8;} : /turf/open/floor/prison/greenblue/west +/turf/open/floor/prison{icon_state="greenblue";dir=9;} : /turf/open/floor/prison/greenblue/northwest +/turf/open/floor/prison{icon_state="greenblue";} : /turf/open/floor/prison/greenblue +/turf/open/floor/prison{icon_state="greenbluecorner";dir=4;} : /turf/open/floor/prison/greenbluecorner/east +/turf/open/floor/prison{icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner +/turf/open/floor/prison{icon_state="greencorner";} : /turf/open/floor/prison/greencorner +/turf/open/floor/prison{icon_state="greenfull";} : /turf/open/floor/prison/greenfull +/turf/open/floor/prison{icon_state="kitchen";} : /turf/open/floor/prison/kitchen +/turf/open/floor/prison{icon_state="panelscorched";} : /turf/open/floor/prison/panelscorched +/turf/open/floor/prison{icon_state="platingdmg1";} : /turf/open/floor/prison/platingdmg1 +/turf/open/floor/prison{icon_state="platingdmg2";} : /turf/open/floor/prison/platingdmg2 +/turf/open/floor/prison{icon_state="platingdmg3";} : /turf/open/floor/prison/platingdmg3 +/turf/open/floor/prison{icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom +/turf/open/floor/prison{icon_state="red";dir=10;} : /turf/open/floor/prison/red/southwest +/turf/open/floor/prison{icon_state="red";dir=1;} : /turf/open/floor/prison/red/north +/turf/open/floor/prison{icon_state="red";dir=4;} : /turf/open/floor/prison/red/east +/turf/open/floor/prison{icon_state="red";dir=5;} : /turf/open/floor/prison/red/northeast +/turf/open/floor/prison{icon_state="red";dir=6;} : /turf/open/floor/prison/red/southeast +/turf/open/floor/prison{icon_state="red";dir=8;} : /turf/open/floor/prison/red/west +/turf/open/floor/prison{icon_state="red";dir=9;} : /turf/open/floor/prison/red/northwest +/turf/open/floor/prison{icon_state="red";} : /turf/open/floor/prison/red +/turf/open/floor/prison{icon_state="redcorner";dir=1;} : /turf/open/floor/prison/redcorner/north +/turf/open/floor/prison{icon_state="redcorner";dir=4;} : /turf/open/floor/prison/redcorner/east +/turf/open/floor/prison{icon_state="redcorner";} : /turf/open/floor/prison/redcorner +/turf/open/floor/prison{icon_state="redfull";} : /turf/open/floor/prison/redfull +/turf/open/floor/prison{icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white +/turf/open/floor/prison{icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen +/turf/open/floor/prison{icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner +/turf/open/floor/prison{icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull +/turf/open/floor/prison{icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple +/turf/open/floor/prison{icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner +/turf/open/floor/prison{icon_state="whitepurplefull";} : /turf/open/floor/prison/whitepurplefull +/turf/open/floor/prison{icon_state="whitered";} : /turf/open/floor/prison/whitered +/turf/open/floor/prison{icon_state="yellow";} : /turf/open/floor/prison/yellow +/turf/open/floor/prison{icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner +/turf/open/floor/prison{icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull +/turf/open/floor/shiva{dir=10;icon_state="blue";} : /turf/open/floor/shiva/blue/southwest +/turf/open/floor/shiva{dir=10;icon_state="green";} : /turf/open/floor/shiva/green/southwest +/turf/open/floor/shiva{dir=10;icon_state="purple";} : /turf/open/floor/shiva/purple/southwest +/turf/open/floor/shiva{dir=10;icon_state="red";} : /turf/open/floor/shiva/red/southwest +/turf/open/floor/shiva{dir=10;icon_state="wred";} : /turf/open/floor/shiva/wred/southwest +/turf/open/floor/shiva{dir=10;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southwest +/turf/open/floor/shiva{dir=1;icon_state="blue";} : /turf/open/floor/shiva/blue/north +/turf/open/floor/shiva{dir=1;icon_state="green";} : /turf/open/floor/shiva/green/north +/turf/open/floor/shiva{dir=1;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/north +/turf/open/floor/shiva{dir=1;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/north +/turf/open/floor/shiva{dir=1;icon_state="purple";} : /turf/open/floor/shiva/purple/north +/turf/open/floor/shiva{dir=1;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/north +/turf/open/floor/shiva{dir=1;icon_state="red";} : /turf/open/floor/shiva/red/north +/turf/open/floor/shiva{dir=1;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/north +/turf/open/floor/shiva{dir=1;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/north +/turf/open/floor/shiva{dir=1;icon_state="wred";} : /turf/open/floor/shiva/wred/north +/turf/open/floor/shiva{dir=1;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/north +/turf/open/floor/shiva{dir=1;icon_state="yellow";} : /turf/open/floor/shiva/yellow/north +/turf/open/floor/shiva{dir=1;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/north +/turf/open/floor/shiva{dir=1;} : /turf/open/floor/shiva/north +/turf/open/floor/shiva{dir=4;icon_state="blue";} : /turf/open/floor/shiva/blue/east +/turf/open/floor/shiva{dir=4;icon_state="green";} : /turf/open/floor/shiva/green/east +/turf/open/floor/shiva{dir=4;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/east +/turf/open/floor/shiva{dir=4;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/east +/turf/open/floor/shiva{dir=4;icon_state="purple";} : /turf/open/floor/shiva/purple/east +/turf/open/floor/shiva{dir=4;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/east +/turf/open/floor/shiva{dir=4;icon_state="red";} : /turf/open/floor/shiva/red/east +/turf/open/floor/shiva{dir=4;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/east +/turf/open/floor/shiva{dir=4;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/east +/turf/open/floor/shiva{dir=4;icon_state="wred";} : /turf/open/floor/shiva/wred/east +/turf/open/floor/shiva{dir=4;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/east +/turf/open/floor/shiva{dir=4;icon_state="yellow";} : /turf/open/floor/shiva/yellow/east +/turf/open/floor/shiva{dir=4;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/east +/turf/open/floor/shiva{dir=5;icon_state="blue";} : /turf/open/floor/shiva/blue/northeast +/turf/open/floor/shiva{dir=5;icon_state="green";} : /turf/open/floor/shiva/green/northeast +/turf/open/floor/shiva{dir=5;icon_state="purple";} : /turf/open/floor/shiva/purple/northeast +/turf/open/floor/shiva{dir=5;icon_state="red";} : /turf/open/floor/shiva/red/northeast +/turf/open/floor/shiva{dir=5;icon_state="wred";} : /turf/open/floor/shiva/wred/northeast +/turf/open/floor/shiva{dir=5;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northeast +/turf/open/floor/shiva{dir=6;icon_state="blue";} : /turf/open/floor/shiva/blue/southeast +/turf/open/floor/shiva{dir=6;icon_state="green";} : /turf/open/floor/shiva/green/southeast +/turf/open/floor/shiva{dir=6;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/southeast +/turf/open/floor/shiva{dir=6;icon_state="purple";} : /turf/open/floor/shiva/purple/southeast +/turf/open/floor/shiva{dir=6;icon_state="red";} : /turf/open/floor/shiva/red/southeast +/turf/open/floor/shiva{dir=6;icon_state="wred";} : /turf/open/floor/shiva/wred/southeast +/turf/open/floor/shiva{dir=6;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southeast +/turf/open/floor/shiva{dir=8;icon_state="blue";} : /turf/open/floor/shiva/blue/west +/turf/open/floor/shiva{dir=8;icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners/west +/turf/open/floor/shiva{dir=8;icon_state="bluefull";} : /turf/open/floor/shiva/bluefull/west +/turf/open/floor/shiva{dir=8;icon_state="green";} : /turf/open/floor/shiva/green/west +/turf/open/floor/shiva{dir=8;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/west +/turf/open/floor/shiva{dir=8;icon_state="greenfull";} : /turf/open/floor/shiva/greenfull/west +/turf/open/floor/shiva{dir=8;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/west +/turf/open/floor/shiva{dir=8;icon_state="purple";} : /turf/open/floor/shiva/purple/west +/turf/open/floor/shiva{dir=8;icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners/west +/turf/open/floor/shiva{dir=8;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/west +/turf/open/floor/shiva{dir=8;icon_state="red";} : /turf/open/floor/shiva/red/west +/turf/open/floor/shiva{dir=8;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/west +/turf/open/floor/shiva{dir=8;icon_state="redfull";} : /turf/open/floor/shiva/redfull/west +/turf/open/floor/shiva{dir=8;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/west +/turf/open/floor/shiva{dir=8;icon_state="wred";} : /turf/open/floor/shiva/wred/west +/turf/open/floor/shiva{dir=8;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/west +/turf/open/floor/shiva{dir=8;icon_state="yellow";} : /turf/open/floor/shiva/yellow/west +/turf/open/floor/shiva{dir=8;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/west +/turf/open/floor/shiva{dir=8;icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull/west +/turf/open/floor/shiva{dir=9;icon_state="blue";} : /turf/open/floor/shiva/blue/northwest +/turf/open/floor/shiva{dir=9;icon_state="green";} : /turf/open/floor/shiva/green/northwest +/turf/open/floor/shiva{dir=9;icon_state="purple";} : /turf/open/floor/shiva/purple/northwest +/turf/open/floor/shiva{dir=9;icon_state="red";} : /turf/open/floor/shiva/red/northwest +/turf/open/floor/shiva{dir=9;icon_state="wred";} : /turf/open/floor/shiva/wred/northwest +/turf/open/floor/shiva{dir=9;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northwest +/turf/open/floor/shiva{icon_state="blue";} : /turf/open/floor/shiva/blue +/turf/open/floor/shiva{icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners +/turf/open/floor/shiva{icon_state="bluefull";} : /turf/open/floor/shiva/bluefull +/turf/open/floor/shiva{icon_state="floor3";} : /turf/open/floor/shiva/floor3 +/turf/open/floor/shiva{icon_state="green";} : /turf/open/floor/shiva/green +/turf/open/floor/shiva{icon_state="greencorners";} : /turf/open/floor/shiva/greencorners +/turf/open/floor/shiva{icon_state="greenfull";} : /turf/open/floor/shiva/greenfull +/turf/open/floor/shiva{icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles +/turf/open/floor/shiva{icon_state="purple";} : /turf/open/floor/shiva/purple +/turf/open/floor/shiva{icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners +/turf/open/floor/shiva{icon_state="purplefull";} : /turf/open/floor/shiva/purplefull +/turf/open/floor/shiva{icon_state="radiator_tile";} : /turf/open/floor/shiva/radiator_tile +/turf/open/floor/shiva{icon_state="radiator_tile2";} : /turf/open/floor/shiva/radiator_tile2 +/turf/open/floor/shiva{icon_state="red";} : /turf/open/floor/shiva/red +/turf/open/floor/shiva{icon_state="redcorners";} : /turf/open/floor/shiva/redcorners +/turf/open/floor/shiva{icon_state="redfull";} : /turf/open/floor/shiva/redfull +/turf/open/floor/shiva{icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat +/turf/open/floor/shiva{icon_state="wred";} : /turf/open/floor/shiva/wred +/turf/open/floor/shiva{icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners +/turf/open/floor/shiva{icon_state="wredfull";} : /turf/open/floor/shiva/wredfull +/turf/open/floor/shiva{icon_state="yellow";} : /turf/open/floor/shiva/yellow +/turf/open/floor/shiva{icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners +/turf/open/floor/shiva{icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull +/turf/open/floor/strata{color="#5e5d5d";dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles/southwest +/turf/open/floor/strata{color="#5e5d5d";icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles +/turf/open/floor/strata{desc="Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_wood +/turf/open/floor/strata{desc="This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_metal +/turf/open/floor/strata{dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southwest +/turf/open/floor/strata{dir=10;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southwest +/turf/open/floor/strata{dir=1;icon_state="blue4";} : /turf/open/floor/strata/blue4/north +/turf/open/floor/strata{dir=1;icon_state="red3";} : /turf/open/floor/strata/red3/north +/turf/open/floor/strata{dir=1;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/north +/turf/open/floor/strata{dir=1;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/north +/turf/open/floor/strata{dir=2;icon_state="red3";} : /turf/open/floor/strata/red3/south +/turf/open/floor/strata{dir=2;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/south +/turf/open/floor/strata{dir=2;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/south +/turf/open/floor/strata{dir=4;icon_state="blue3";} : /turf/open/floor/strata/blue3/east +/turf/open/floor/strata{dir=4;icon_state="cyan1";} : /turf/open/floor/strata/cyan1/east +/turf/open/floor/strata{dir=4;icon_state="cyan2";} : /turf/open/floor/strata/cyan2/east +/turf/open/floor/strata{dir=4;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/east +/turf/open/floor/strata{dir=4;icon_state="cyan4";} : /turf/open/floor/strata/cyan4/east +/turf/open/floor/strata{dir=4;icon_state="floor3";} : /turf/open/floor/strata/floor3/east +/turf/open/floor/strata{dir=4;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/east +/turf/open/floor/strata{dir=4;icon_state="red3";} : /turf/open/floor/strata/red3/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/east +/turf/open/floor/strata{dir=5;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northeast +/turf/open/floor/strata{dir=6;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southeast +/turf/open/floor/strata{dir=6;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southeast +/turf/open/floor/strata{dir=8;icon_state="blue3";} : /turf/open/floor/strata/blue3/west +/turf/open/floor/strata{dir=8;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/west +/turf/open/floor/strata{dir=8;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/west +/turf/open/floor/strata{dir=8;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/west +/turf/open/floor/strata{dir=8;icon_state="red3";} : /turf/open/floor/strata/red3/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/west +/turf/open/floor/strata{dir=9;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northwest +/turf/open/floor/strata{icon_state="blue1";} : /turf/open/floor/strata/blue1 +/turf/open/floor/strata{icon_state="blue3";dir=1;} : /turf/open/floor/strata/blue3/north +/turf/open/floor/strata{icon_state="blue4";} : /turf/open/floor/strata/blue4 +/turf/open/floor/strata{icon_state="damaged3";} : /turf/open/floor/strata/damaged3 +/turf/open/floor/strata{icon_state="fake_wood";} : /turf/open/floor/strata/fake_wood +/turf/open/floor/strata{icon_state="floor2";} : /turf/open/floor/strata/floor2 +/turf/open/floor/strata{icon_state="floor3";} : /turf/open/floor/strata/floor3 +/turf/open/floor/strata{icon_state="floorscorched1";} : /turf/open/floor/strata/floorscorched1 +/turf/open/floor/strata{icon_state="floorscorched2";} : /turf/open/floor/strata/floorscorched2 +/turf/open/floor/strata{icon_state="green1";} : /turf/open/floor/strata/green1 +/turf/open/floor/strata{icon_state="green3";dir=1;} : /turf/open/floor/strata/green3/north +/turf/open/floor/strata{icon_state="green3";dir=4;} : /turf/open/floor/strata/green3/east +/turf/open/floor/strata{icon_state="green3";dir=5;} : /turf/open/floor/strata/green3/northeast +/turf/open/floor/strata{icon_state="green3";dir=8;} : /turf/open/floor/strata/green3/west +/turf/open/floor/strata{icon_state="green3";dir=9;} : /turf/open/floor/strata/green3/northwest +/turf/open/floor/strata{icon_state="green3";} : /turf/open/floor/strata/green3 +/turf/open/floor/strata{icon_state="green4";dir=1;} : /turf/open/floor/strata/green4/north +/turf/open/floor/strata{icon_state="green4";dir=4;} : /turf/open/floor/strata/green4/east +/turf/open/floor/strata{icon_state="green4";dir=8;} : /turf/open/floor/strata/green4/west +/turf/open/floor/strata{icon_state="green4";} : /turf/open/floor/strata/green4 +/turf/open/floor/strata{icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles +/turf/open/floor/strata{icon_state="orange_cover";} : /turf/open/floor/strata/orange_cover +/turf/open/floor/strata{icon_state="orange_icorner";dir=1;} : /turf/open/floor/strata/orange_icorner/north +/turf/open/floor/strata{icon_state="orange_icorner";dir=8;} : /turf/open/floor/strata/orange_icorner/west +/turf/open/floor/strata{icon_state="orange_tile";} : /turf/open/floor/strata/orange_tile +/turf/open/floor/strata{icon_state="purp1";} : /turf/open/floor/strata/purp1 +/turf/open/floor/strata{icon_state="purp2";} : /turf/open/floor/strata/purp2 +/turf/open/floor/strata{icon_state="purp3";dir=4;} : /turf/open/floor/strata/purp3/east +/turf/open/floor/strata{icon_state="red1";} : /turf/open/floor/strata/red1 +/turf/open/floor/strata{icon_state="red2";} : /turf/open/floor/strata/red2 +/turf/open/floor/strata{icon_state="red3";} : /turf/open/floor/strata/red3 +/turf/open/floor/strata{icon_state="red4";dir=1;} : /turf/open/floor/strata/red4/north +/turf/open/floor/strata{icon_state="red4";dir=4;} : /turf/open/floor/strata/red4/east +/turf/open/floor/strata{icon_state="red4";dir=8;} : /turf/open/floor/strata/red4/west +/turf/open/floor/strata{icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1 +/turf/open/floor/strata{icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2 +/turf/open/floor/strata{icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3 +/turf/open/floor/strata{icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4 +/turf/open/floor/tdome{dir=1;icon_state="w-y0";} : /turf/open/floor/tdome/w_y0/north +/turf/open/floor/tdome{dir=1;icon_state="w-y1";} : /turf/open/floor/tdome/w_y1/north +/turf/open/floor/tdome{dir=1;icon_state="w-y2";} : /turf/open/floor/tdome/w_y2/north +/turf/open/floor/tdome{dir=5;} : /turf/open/floor/tdome/northeast +/turf/open/floor/tdome{icon_state="bluefull";} : /turf/open/floor/tdome/bluefull +/turf/open/floor/tdome{icon_state="redfull";} : /turf/open/floor/tdome/redfull +/turf/open/floor/tdome{icon_state="tcomms";} : /turf/open/floor/tdome/tcomms +/turf/open/floor/tdome{icon_state="test_floor4";} : /turf/open/floor/tdome/test_floor4 +/turf/open/floor/wood{icon_state="wood-broken";} : /turf/open/floor/wood/wood_broken +/turf/open/floor/wood{icon_state="wood-broken2";} : /turf/open/floor/wood/wood_broken2 +/turf/open/floor/wood{icon_state="wood-broken3";} : /turf/open/floor/wood/wood_broken3 +/turf/open/floor/wood{icon_state="wood-broken4";} : /turf/open/floor/wood/wood_broken4 +/turf/open/floor/wood{icon_state="wood-broken5";} : /turf/open/floor/wood/wood_broken5 +/turf/open/floor/wood{icon_state="wood-broken6";} : /turf/open/floor/wood/wood_broken6 +/turf/open/floor/wood{icon_state="wood-broken7";} : /turf/open/floor/wood/wood_broken7 +/turf/open/floor{color="#525151";icon_state="dark2";} : /turf/open/floor/grey_dark2 +/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 +/turf/open/floor{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southwest +/turf/open/floor{dir=10;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southwest +/turf/open/floor{dir=10;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southwest +/turf/open/floor{dir=10;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southwest +/turf/open/floor{dir=10;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southwest +/turf/open/floor{dir=10;icon_state="darkred2";} : /turf/open/floor/darkred2/southwest +/turf/open/floor{dir=10;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southwest +/turf/open/floor{dir=10;icon_state="podhatch";} : /turf/open/floor/podhatch/southwest +/turf/open/floor{dir=10;icon_state="purple";} : /turf/open/floor/purple/southwest +/turf/open/floor{dir=10;icon_state="red";} : /turf/open/floor/red/southwest +/turf/open/floor{dir=10;icon_state="warning";} : /turf/open/floor/warning/southwest +/turf/open/floor{dir=10;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southwest +/turf/open/floor{dir=10;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southwest +/turf/open/floor{dir=10;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southwest +/turf/open/floor{dir=10;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southwest +/turf/open/floor{dir=10;icon_state="whitered";} : /turf/open/floor/whitered/southwest +/turf/open/floor{dir=10;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southwest +/turf/open/floor{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/asteroidfloor/north +/turf/open/floor{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/north +/turf/open/floor{dir=1;icon_state="bot";} : /turf/open/floor/bot/north +/turf/open/floor{dir=1;icon_state="chapel";} : /turf/open/floor/chapel/north +/turf/open/floor{dir=1;icon_state="darkblue2";} : /turf/open/floor/darkblue2/north +/turf/open/floor{dir=1;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/north +/turf/open/floor{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/north +/turf/open/floor{dir=1;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/north +/turf/open/floor{dir=1;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/north +/turf/open/floor{dir=1;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/north +/turf/open/floor{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/north +/turf/open/floor{dir=1;icon_state="darkred2";} : /turf/open/floor/darkred2/north +/turf/open/floor{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/north +/turf/open/floor{dir=1;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/north +/turf/open/floor{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/north +/turf/open/floor{dir=1;icon_state="elevatorshaft";} : /turf/open/floor/elevatorshaft/north +/turf/open/floor{dir=1;icon_state="green";} : /turf/open/floor/green/north +/turf/open/floor{dir=1;icon_state="loadingarea";} : /turf/open/floor/loadingarea/north +/turf/open/floor{dir=1;icon_state="podhatch";} : /turf/open/floor/podhatch/north +/turf/open/floor{dir=1;icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor/north +/turf/open/floor{dir=1;icon_state="purple";} : /turf/open/floor/purple/north +/turf/open/floor{dir=1;icon_state="rampbottom";} : /turf/open/floor/rampbottom/north +/turf/open/floor{dir=1;icon_state="red";} : /turf/open/floor/red/north +/turf/open/floor{dir=1;icon_state="redcorner";} : /turf/open/floor/redcorner/north +/turf/open/floor{dir=1;icon_state="vault";} : /turf/open/floor/vault2/north +/turf/open/floor{dir=1;icon_state="warning";} : /turf/open/floor/warning/north +/turf/open/floor{dir=1;icon_state="warningcorner";} : /turf/open/floor/warningcorner/north +/turf/open/floor{dir=1;icon_state="warnwhite";} : /turf/open/floor/warnwhite/north +/turf/open/floor{dir=1;icon_state="whiteblue";} : /turf/open/floor/whiteblue/north +/turf/open/floor{dir=1;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/north +/turf/open/floor{dir=1;icon_state="whitegreen";} : /turf/open/floor/whitegreen/north +/turf/open/floor{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/north +/turf/open/floor{dir=1;icon_state="whitepurple";} : /turf/open/floor/whitepurple/north +/turf/open/floor{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/north +/turf/open/floor{dir=1;icon_state="whitered";} : /turf/open/floor/whitered/north +/turf/open/floor{dir=1;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/north +/turf/open/floor{dir=1;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/north +/turf/open/floor{dir=1;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/north +/turf/open/floor{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/east +/turf/open/floor{dir=4;icon_state="chapel";} : /turf/open/floor/chapel/east +/turf/open/floor{dir=4;icon_state="darkblue2";} : /turf/open/floor/darkblue2/east +/turf/open/floor{dir=4;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/east +/turf/open/floor{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/east +/turf/open/floor{dir=4;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/east +/turf/open/floor{dir=4;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/east +/turf/open/floor{dir=4;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/east +/turf/open/floor{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/east +/turf/open/floor{dir=4;icon_state="darkred2";} : /turf/open/floor/darkred2/east +/turf/open/floor{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/east +/turf/open/floor{dir=4;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/east +/turf/open/floor{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/east +/turf/open/floor{dir=4;icon_state="loadingarea";} : /turf/open/floor/loadingarea/east +/turf/open/floor{dir=4;icon_state="purple";} : /turf/open/floor/purple/east +/turf/open/floor{dir=4;icon_state="red";} : /turf/open/floor/red/east +/turf/open/floor{dir=4;icon_state="redcorner";} : /turf/open/floor/redcorner/east +/turf/open/floor{dir=4;icon_state="warning";} : /turf/open/floor/warning/east +/turf/open/floor{dir=4;icon_state="warningcorner";} : /turf/open/floor/warningcorner/east +/turf/open/floor{dir=4;icon_state="warnwhite";} : /turf/open/floor/warnwhite/east +/turf/open/floor{dir=4;icon_state="whiteblue";} : /turf/open/floor/whiteblue/east +/turf/open/floor{dir=4;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/east +/turf/open/floor{dir=4;icon_state="whitegreen";} : /turf/open/floor/whitegreen/east +/turf/open/floor{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/east +/turf/open/floor{dir=4;icon_state="whitepurple";} : /turf/open/floor/whitepurple/east +/turf/open/floor{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/east +/turf/open/floor{dir=4;icon_state="whitered";} : /turf/open/floor/whitered/east +/turf/open/floor{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/east +/turf/open/floor{dir=4;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/east +/turf/open/floor{dir=4;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/east +/turf/open/floor{dir=4;icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull/east +/turf/open/floor{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northeast +/turf/open/floor{dir=5;icon_state="chapel";} : /turf/open/floor/chapel/northeast +/turf/open/floor{dir=5;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northeast +/turf/open/floor{dir=5;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northeast +/turf/open/floor{dir=5;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northeast +/turf/open/floor{dir=5;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northeast +/turf/open/floor{dir=5;icon_state="darkred2";} : /turf/open/floor/darkred2/northeast +/turf/open/floor{dir=5;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northeast +/turf/open/floor{dir=5;icon_state="podhatch";} : /turf/open/floor/podhatch/northeast +/turf/open/floor{dir=5;icon_state="purple";} : /turf/open/floor/purple/northeast +/turf/open/floor{dir=5;icon_state="red";} : /turf/open/floor/red/northeast +/turf/open/floor{dir=5;icon_state="vault";} : /turf/open/floor/vault2/northeast +/turf/open/floor{dir=5;icon_state="warning";} : /turf/open/floor/warning/northeast +/turf/open/floor{dir=5;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northeast +/turf/open/floor{dir=5;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northeast +/turf/open/floor{dir=5;icon_state="whitebluefull";} : /turf/open/floor/whitebluefull/northeast +/turf/open/floor{dir=5;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northeast +/turf/open/floor{dir=5;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northeast +/turf/open/floor{dir=5;icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull/northeast +/turf/open/floor{dir=5;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northeast +/turf/open/floor{dir=5;icon_state="whitered";} : /turf/open/floor/whitered/northeast +/turf/open/floor{dir=5;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northeast +/turf/open/floor{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southeast +/turf/open/floor{dir=6;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southeast +/turf/open/floor{dir=6;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southeast +/turf/open/floor{dir=6;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southeast +/turf/open/floor{dir=6;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southeast +/turf/open/floor{dir=6;icon_state="darkred2";} : /turf/open/floor/darkred2/southeast +/turf/open/floor{dir=6;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southeast +/turf/open/floor{dir=6;icon_state="podhatch";} : /turf/open/floor/podhatch/southeast +/turf/open/floor{dir=6;icon_state="purple";} : /turf/open/floor/purple/southeast +/turf/open/floor{dir=6;icon_state="red";} : /turf/open/floor/red/southeast +/turf/open/floor{dir=6;icon_state="warning";} : /turf/open/floor/warning/southeast +/turf/open/floor{dir=6;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southeast +/turf/open/floor{dir=6;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southeast +/turf/open/floor{dir=6;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southeast +/turf/open/floor{dir=6;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southeast +/turf/open/floor{dir=6;icon_state="whitered";} : /turf/open/floor/whitered/southeast +/turf/open/floor{dir=6;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southeast +/turf/open/floor{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/west +/turf/open/floor{dir=8;icon_state="barber";} : /turf/open/floor/barber/west +/turf/open/floor{dir=8;icon_state="carpet10-8";} : /turf/open/floor/carpet10_8/west +/turf/open/floor{dir=8;icon_state="carpet11-12";} : /turf/open/floor/carpet11_12/west +/turf/open/floor{dir=8;icon_state="carpet13-5";} : /turf/open/floor/carpet13_5/west +/turf/open/floor{dir=8;icon_state="carpet14-10";} : /turf/open/floor/carpet14_10/west +/turf/open/floor{dir=8;icon_state="carpet15-15";} : /turf/open/floor/carpet15_15/west +/turf/open/floor{dir=8;icon_state="carpet5-1";} : /turf/open/floor/carpet5_1/west +/turf/open/floor{dir=8;icon_state="carpet6-2";} : /turf/open/floor/carpet6_2/west +/turf/open/floor{dir=8;icon_state="carpet7-3";} : /turf/open/floor/carpet7_3/west +/turf/open/floor{dir=8;icon_state="carpet9-4";} : /turf/open/floor/carpet9_4/west +/turf/open/floor{dir=8;icon_state="chapel";} : /turf/open/floor/chapel/west +/turf/open/floor{dir=8;icon_state="damaged2";} : /turf/open/floor/damaged2/west +/turf/open/floor{dir=8;icon_state="damaged3";} : /turf/open/floor/damaged3/west +/turf/open/floor{dir=8;icon_state="damaged4";} : /turf/open/floor/damaged4/west +/turf/open/floor{dir=8;icon_state="damaged5";} : /turf/open/floor/damaged5/west +/turf/open/floor{dir=8;icon_state="darkblue2";} : /turf/open/floor/darkblue2/west +/turf/open/floor{dir=8;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/west +/turf/open/floor{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/west +/turf/open/floor{dir=8;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/west +/turf/open/floor{dir=8;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/west +/turf/open/floor{dir=8;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/west +/turf/open/floor{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/west +/turf/open/floor{dir=8;icon_state="darkred2";} : /turf/open/floor/darkred2/west +/turf/open/floor{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/west +/turf/open/floor{dir=8;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/west +/turf/open/floor{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/west +/turf/open/floor{dir=8;icon_state="loadingarea";} : /turf/open/floor/loadingarea/west +/turf/open/floor{dir=8;icon_state="purple";} : /turf/open/floor/purple/west +/turf/open/floor{dir=8;icon_state="purplecorner";} : /turf/open/floor/purplecorner/west +/turf/open/floor{dir=8;icon_state="red";} : /turf/open/floor/red/west +/turf/open/floor{dir=8;icon_state="redcorner";} : /turf/open/floor/redcorner/west +/turf/open/floor{dir=8;icon_state="vault";} : /turf/open/floor/vault2/west +/turf/open/floor{dir=8;icon_state="warning";} : /turf/open/floor/warning/west +/turf/open/floor{dir=8;icon_state="warningcorner";} : /turf/open/floor/warningcorner/west +/turf/open/floor{dir=8;icon_state="warnwhite";} : /turf/open/floor/warnwhite/west +/turf/open/floor{dir=8;icon_state="whiteblue";} : /turf/open/floor/whiteblue/west +/turf/open/floor{dir=8;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/west +/turf/open/floor{dir=8;icon_state="whitegreen";} : /turf/open/floor/whitegreen/west +/turf/open/floor{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/west +/turf/open/floor{dir=8;icon_state="whitepurple";} : /turf/open/floor/whitepurple/west +/turf/open/floor{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/west +/turf/open/floor{dir=8;icon_state="whitered";} : /turf/open/floor/whitered/west +/turf/open/floor{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/west +/turf/open/floor{dir=8;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/west +/turf/open/floor{dir=8;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/west +/turf/open/floor{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northwest +/turf/open/floor{dir=9;icon_state="brown";} : /turf/open/floor/brown/northwest +/turf/open/floor{dir=9;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northwest +/turf/open/floor{dir=9;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northwest +/turf/open/floor{dir=9;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northwest +/turf/open/floor{dir=9;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northwest +/turf/open/floor{dir=9;icon_state="darkred2";} : /turf/open/floor/darkred2/northwest +/turf/open/floor{dir=9;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northwest +/turf/open/floor{dir=9;icon_state="green";} : /turf/open/floor/green/northwest +/turf/open/floor{dir=9;icon_state="podhatch";} : /turf/open/floor/podhatch/northwest +/turf/open/floor{dir=9;icon_state="purple";} : /turf/open/floor/purple/northwest +/turf/open/floor{dir=9;icon_state="red";} : /turf/open/floor/red/northwest +/turf/open/floor{dir=9;icon_state="redfull";} : /turf/open/floor/redfull/northwest +/turf/open/floor{dir=9;icon_state="warning";} : /turf/open/floor/warning/northwest +/turf/open/floor{dir=9;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northwest +/turf/open/floor{dir=9;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northwest +/turf/open/floor{dir=9;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northwest +/turf/open/floor{dir=9;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northwest +/turf/open/floor{dir=9;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northwest +/turf/open/floor{dir=9;icon_state="whitered";} : /turf/open/floor/whitered/northwest +/turf/open/floor{dir=9;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northwest +/turf/open/floor{icon_state="asteroid";} : /turf/open/floor/asteroid +/turf/open/floor{icon_state="asteroidfloor";dir=1;} : /turf/open/floor/asteroidfloor/north +/turf/open/floor{icon_state="asteroidplating";} : /turf/open/floor/asteroidplating +/turf/open/floor{icon_state="asteroidwarning";dir=10;} : /turf/open/floor/asteroidwarning/southwest +/turf/open/floor{icon_state="asteroidwarning";dir=1;} : /turf/open/floor/asteroidwarning/north +/turf/open/floor{icon_state="asteroidwarning";dir=4;} : /turf/open/floor/asteroidwarning/east +/turf/open/floor{icon_state="asteroidwarning";dir=5;} : /turf/open/floor/asteroidwarning/northeast +/turf/open/floor{icon_state="asteroidwarning";dir=6;} : /turf/open/floor/asteroidwarning/southeast +/turf/open/floor{icon_state="asteroidwarning";dir=8;} : /turf/open/floor/asteroidwarning/west +/turf/open/floor{icon_state="asteroidwarning";dir=9;} : /turf/open/floor/asteroidwarning/northwest +/turf/open/floor{icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning +/turf/open/floor{icon_state="bar";} : /turf/open/floor/bar +/turf/open/floor{icon_state="bcircuit";} : /turf/open/floor/bcircuit +/turf/open/floor{icon_state="bluecorner";} : /turf/open/floor/bluecorner +/turf/open/floor{icon_state="blueyellowfull";} : /turf/open/floor/blueyellowfull +/turf/open/floor{icon_state="bot";} : /turf/open/floor/bot +/turf/open/floor{icon_state="cafeteria";} : /turf/open/floor/cafeteria +/turf/open/floor{icon_state="chapel";} : /turf/open/floor/chapel +/turf/open/floor{icon_state="cmo";} : /turf/open/floor/cmo +/turf/open/floor{icon_state="cult";} : /turf/open/floor/cult +/turf/open/floor{icon_state="damaged2";} : /turf/open/floor/damaged2 +/turf/open/floor{icon_state="damaged3";} : /turf/open/floor/damaged3 +/turf/open/floor{icon_state="damaged4";} : /turf/open/floor/damaged4 +/turf/open/floor{icon_state="damaged5";} : /turf/open/floor/damaged5 +/turf/open/floor{icon_state="dark";} : /turf/open/floor/dark +/turf/open/floor{icon_state="dark2";} : /turf/open/floor/dark2 +/turf/open/floor{icon_state="darkblue2";} : /turf/open/floor/darkblue2 +/turf/open/floor{icon_state="darkbluecorners2";} : /turf/open/floor/darkbluecorners2 +/turf/open/floor{icon_state="darkbrown2";} : /turf/open/floor/darkbrown2 +/turf/open/floor{icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2 +/turf/open/floor{icon_state="darkgreen2";} : /turf/open/floor/darkgreen2 +/turf/open/floor{icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2 +/turf/open/floor{icon_state="darkish";} : /turf/open/floor/darkish +/turf/open/floor{icon_state="darkpurple2";} : /turf/open/floor/darkpurple2 +/turf/open/floor{icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2 +/turf/open/floor{icon_state="darkred2";} : /turf/open/floor/darkred2 +/turf/open/floor{icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2 +/turf/open/floor{icon_state="darkyellow2";} : /turf/open/floor/darkyellow2 +/turf/open/floor{icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2 +/turf/open/floor{icon_state="delivery";} : /turf/open/floor/delivery +/turf/open/floor{icon_state="floor4";} : /turf/open/floor/floor4 +/turf/open/floor{icon_state="floorscorched1";} : /turf/open/floor/floorscorched1 +/turf/open/floor{icon_state="floorscorched2";} : /turf/open/floor/floorscorched2 +/turf/open/floor{icon_state="freezerfloor";} : /turf/open/floor/freezerfloor +/turf/open/floor{icon_state="grimy";} : /turf/open/floor/grimy +/turf/open/floor{icon_state="hydrofloor";} : /turf/open/floor/hydrofloor +/turf/open/floor{icon_state="loadingarea";} : /turf/open/floor/loadingarea +/turf/open/floor{icon_state="neutral";} : /turf/open/floor/neutral +/turf/open/floor{icon_state="panelscorched";} : /turf/open/floor/panelscorched +/turf/open/floor{icon_state="platebot";} : /turf/open/floor/platebot +/turf/open/floor{icon_state="platingdmg1";} : /turf/open/floor/platingdmg1 +/turf/open/floor{icon_state="platingdmg3";} : /turf/open/floor/platingdmg3 +/turf/open/floor{icon_state="podhatch";} : /turf/open/floor/podhatch +/turf/open/floor{icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor +/turf/open/floor{icon_state="purple";} : /turf/open/floor/purple +/turf/open/floor{icon_state="purplecorner";} : /turf/open/floor/purplecorner +/turf/open/floor{icon_state="rampbottom";} : /turf/open/floor/rampbottom +/turf/open/floor{icon_state="red";} : /turf/open/floor/red +/turf/open/floor{icon_state="redcorner";} : /turf/open/floor/redcorner +/turf/open/floor{icon_state="redyellowfull";} : /turf/open/floor/redyellowfull +/turf/open/floor{icon_state="vault";} : /turf/open/floor/vault2 +/turf/open/floor{icon_state="wall_thermite";} : /turf/open/floor/wall_thermite +/turf/open/floor{icon_state="warning";} : /turf/open/floor/warning +/turf/open/floor{icon_state="warnwhite";dir=1;} : /turf/open/floor/warnwhite/north +/turf/open/floor{icon_state="warnwhite";} : /turf/open/floor/warnwhite +/turf/open/floor{icon_state="white";} : /turf/open/floor/white +/turf/open/floor{icon_state="whiteblue";} : /turf/open/floor/whiteblue +/turf/open/floor{icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner +/turf/open/floor{icon_state="whitebluefull";} : /turf/open/floor/whitebluefull +/turf/open/floor{icon_state="whitegreen";} : /turf/open/floor/whitegreen +/turf/open/floor{icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner +/turf/open/floor{icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull +/turf/open/floor{icon_state="whitepurple";} : /turf/open/floor/whitepurple +/turf/open/floor{icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner +/turf/open/floor{icon_state="whitepurplefull";} : /turf/open/floor/whitepurplefull +/turf/open/floor{icon_state="whitered";} : /turf/open/floor/whitered +/turf/open/floor{icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner +/turf/open/floor{icon_state="whiteredfull";} : /turf/open/floor/whiteredfull +/turf/open/floor{icon_state="whiteyellow";} : /turf/open/floor/whiteyellow +/turf/open/floor{icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner +/turf/open/floor{icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull +/turf/open/floor{icon_state="wood";} : /turf/open/floor/wood +/turf/open/floor{icon_state="yellowfull";} : /turf/open/floor/yellowfull +/turf/open/gm/coast{dir=1;} : /turf/open/gm/coast/south +/turf/open/gm/coast{dir=4;icon_state="beachcorner";} : /turf/open/gm/coast/beachcorner/south_east +/turf/open/gm/coast{dir=8;icon_state="beachcorner2";} : /turf/open/gm/coast/beachcorner2/south_east +/turf/open/gm/coast{dir=8;} : /turf/open/gm/coast/east +/turf/open/gm/coast{dir=9;} : /turf/open/gm/coast/south_east +/turf/open/gm/dirtgrassborder/weedable{icon_state="grass1";} : /turf/open/gm/dirtgrassborder/weedable/grass1 +/turf/open/gm/dirtgrassborder2{dir=1;} : /turf/open/gm/dirtgrassborder2/north +/turf/open/gm/dirtgrassborder2{dir=4;} : /turf/open/gm/dirtgrassborder2/east +/turf/open/gm/dirtgrassborder2{dir=8;} : /turf/open/gm/dirtgrassborder2/west +/turf/open/gm/dirtgrassborder2{icon_state="wall2";} : /turf/open/gm/dirtgrassborder2/wall2 +/turf/open/gm/dirtgrassborder2{icon_state="wall3";} : /turf/open/gm/dirtgrassborder2/wall3 +/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east +/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east +/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east +/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east +/turf/open/gm/dirtgrassborder{dir=4;} : /turf/open/gm/dirtgrassborder/west +/turf/open/gm/dirtgrassborder{dir=8;} : /turf/open/gm/dirtgrassborder/east +/turf/open/gm/dirtgrassborder{icon_state="desert";} : /turf/open/gm/dirtgrassborder/desert +/turf/open/gm/dirtgrassborder{icon_state="desert0";} : /turf/open/gm/dirtgrassborder/desert0 +/turf/open/gm/dirtgrassborder{icon_state="desert1";} : /turf/open/gm/dirtgrassborder/desert1 +/turf/open/gm/dirtgrassborder{icon_state="desert2";} : /turf/open/gm/dirtgrassborder/desert2 +/turf/open/gm/dirtgrassborder{icon_state="desert3";} : /turf/open/gm/dirtgrassborder/desert3 +/turf/open/gm/dirtgrassborder{icon_state="desert_dug";} : /turf/open/gm/dirtgrassborder/desert_dug +/turf/open/gm/dirt{icon_state="desert0";} : /turf/open/gm/dirt/desert0 +/turf/open/gm/dirt{icon_state="desert1";} : /turf/open/gm/dirt/desert1 +/turf/open/gm/dirt{icon_state="desert2";} : /turf/open/gm/dirt/desert2 +/turf/open/gm/dirt{icon_state="desert3";} : /turf/open/gm/dirt/desert3 +/turf/open/gm/dirt{icon_state="desert_dug";} : /turf/open/gm/dirt/desert_dug +/turf/open/gm/grass{icon_state="grass2";} : /turf/open/gm/grass/grass2 +/turf/open/gm/river/desert/deep{base_river_slowdown=0;} : /turf/open/gm/river/desert/deep/no_slowdown +/turf/open/gm/river/desert/deep{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/deep/toxic +/turf/open/gm/river/desert/shallow_corner{dir=1;} : /turf/open/gm/river/desert/shallow_corner/north +/turf/open/gm/river/desert/shallow_corner{dir=4;} : /turf/open/gm/river/desert/shallow_corner/east +/turf/open/gm/river/desert/shallow_corner{dir=8;} : /turf/open/gm/river/desert/shallow_corner/west +/turf/open/gm/river/desert/shallow_edge/covered{dir=1;} : /turf/open/gm/river/desert/shallow_edge/covered/north +/turf/open/gm/river/desert/shallow_edge/covered{dir=4;} : /turf/open/gm/river/desert/shallow_edge/covered/east +/turf/open/gm/river/desert/shallow_edge/covered{dir=5;} : /turf/open/gm/river/desert/shallow_edge/covered/northeast +/turf/open/gm/river/desert/shallow_edge/covered{dir=8;} : /turf/open/gm/river/desert/shallow_edge/covered/west +/turf/open/gm/river/desert/shallow_edge{dir=10;} : /turf/open/gm/river/desert/shallow_edge/southwest +/turf/open/gm/river/desert/shallow_edge{dir=1;} : /turf/open/gm/river/desert/shallow_edge/north +/turf/open/gm/river/desert/shallow_edge{dir=4;} : /turf/open/gm/river/desert/shallow_edge/east +/turf/open/gm/river/desert/shallow_edge{dir=5;} : /turf/open/gm/river/desert/shallow_edge/northeast +/turf/open/gm/river/desert/shallow_edge{dir=6;} : /turf/open/gm/river/desert/shallow_edge/southeast +/turf/open/gm/river/desert/shallow_edge{dir=8;} : /turf/open/gm/river/desert/shallow_edge/west +/turf/open/gm/river/desert/shallow_edge{dir=9;} : /turf/open/gm/river/desert/shallow_edge/northwest +/turf/open/gm/river/desert/shallow{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/shallow/toxic +/turf/open/gm/river/desert/shallow{name="pool";} : /turf/open/gm/river/desert/shallow/pool +/turf/open/gm/river/ocean{name="deep ocean";default_name="deep ocean";} : /turf/open/gm/river/ocean/deep_ocean +/turf/open/gm/river{color="#990000";name="pool";} : /turf/open/gm/river/darkred_pool +/turf/open/gm/river{color="#990000";} : /turf/open/gm/river/darkred +/turf/open/gm/river{color="#995555";name="pool";} : /turf/open/gm/river/red_pool +/turf/open/gm/river{color="#995555";} : /turf/open/gm/river/red +/turf/open/gm/river{name="pool";} : /turf/open/gm/river/pool +/turf/open/gm/river{name="shallow ocean";default_name="shallow ocean";} : /turf/open/gm/river/shallow_ocean_shallow_ocean +/turf/open/jungle/impenetrable{icon_state="grass_clear";} : /turf/open/jungle/impenetrable/grass_clear +/turf/open/jungle{bushes_spawn=0;icon_state="grass_impenetrable";} : /turf/open/jungle/impenetrable +/turf/open/mars_cave{icon_state="mars_cave_10";} : /turf/open/mars_cave/mars_cave_10 +/turf/open/mars_cave{icon_state="mars_cave_11";} : /turf/open/mars_cave/mars_cave_11 +/turf/open/mars_cave{icon_state="mars_cave_12";} : /turf/open/mars_cave/mars_cave_12 +/turf/open/mars_cave{icon_state="mars_cave_13";} : /turf/open/mars_cave/mars_cave_13 +/turf/open/mars_cave{icon_state="mars_cave_14";} : /turf/open/mars_cave/mars_cave_14 +/turf/open/mars_cave{icon_state="mars_cave_15";} : /turf/open/mars_cave/mars_cave_15 +/turf/open/mars_cave{icon_state="mars_cave_16";} : /turf/open/mars_cave/mars_cave_16 +/turf/open/mars_cave{icon_state="mars_cave_17";} : /turf/open/mars_cave/mars_cave_17 +/turf/open/mars_cave{icon_state="mars_cave_18";} : /turf/open/mars_cave/mars_cave_18 +/turf/open/mars_cave{icon_state="mars_cave_19";} : /turf/open/mars_cave/mars_cave_19 +/turf/open/mars_cave{icon_state="mars_cave_2";} : /turf/open/mars_cave/mars_cave_2 +/turf/open/mars_cave{icon_state="mars_cave_20";} : /turf/open/mars_cave/mars_cave_20 +/turf/open/mars_cave{icon_state="mars_cave_22";} : /turf/open/mars_cave/mars_cave_22 +/turf/open/mars_cave{icon_state="mars_cave_23";} : /turf/open/mars_cave/mars_cave_23 +/turf/open/mars_cave{icon_state="mars_cave_3";} : /turf/open/mars_cave/mars_cave_3 +/turf/open/mars_cave{icon_state="mars_cave_4";} : /turf/open/mars_cave/mars_cave_4 +/turf/open/mars_cave{icon_state="mars_cave_5";} : /turf/open/mars_cave/mars_cave_5 +/turf/open/mars_cave{icon_state="mars_cave_6";} : /turf/open/mars_cave/mars_cave_6 +/turf/open/mars_cave{icon_state="mars_cave_7";} : /turf/open/mars_cave/mars_cave_7 +/turf/open/mars_cave{icon_state="mars_cave_8";} : /turf/open/mars_cave/mars_cave_8 +/turf/open/mars_cave{icon_state="mars_cave_9";} : /turf/open/mars_cave/mars_cave_9 +/turf/open/mars_cave{icon_state="mars_dirt_4";} : /turf/open/mars_cave/mars_dirt_4 +/turf/open/mars_cave{icon_state="mars_dirt_5";} : /turf/open/mars_cave/mars_dirt_5 +/turf/open/mars_cave{icon_state="mars_dirt_6";} : /turf/open/mars_cave/mars_dirt_6 +/turf/open/mars_cave{icon_state="mars_dirt_7";} : /turf/open/mars_cave/mars_dirt_7 +/turf/open/mars_dirt{icon_state="mars_cave_10";} : /turf/open/mars_dirt/mars_cave_10 +/turf/open/mars_dirt{icon_state="mars_cave_11";} : /turf/open/mars_dirt/mars_cave_11 +/turf/open/mars_dirt{icon_state="mars_cave_3";} : /turf/open/mars_dirt/mars_cave_3 +/turf/open/mars_dirt{icon_state="mars_cave_6";} : /turf/open/mars_dirt/mars_cave_6 +/turf/open/mars_dirt{icon_state="mars_cave_7";} : /turf/open/mars_dirt/mars_cave_7 +/turf/open/mars_dirt{icon_state="mars_cave_8";} : /turf/open/mars_dirt/mars_cave_8 +/turf/open/mars{icon_state="mars_cave_10";} : /turf/open/mars/mars_cave_10 +/turf/open/mars{icon_state="mars_dirt_10";} : /turf/open/mars/mars_dirt_10 +/turf/open/mars{icon_state="mars_dirt_11";} : /turf/open/mars/mars_dirt_11 +/turf/open/mars{icon_state="mars_dirt_12";} : /turf/open/mars/mars_dirt_12 +/turf/open/mars{icon_state="mars_dirt_13";} : /turf/open/mars/mars_dirt_13 +/turf/open/mars{icon_state="mars_dirt_14";} : /turf/open/mars/mars_dirt_14 +/turf/open/mars{icon_state="mars_dirt_3";} : /turf/open/mars/mars_dirt_3 +/turf/open/mars{icon_state="mars_dirt_5";} : /turf/open/mars/mars_dirt_5 +/turf/open/mars{icon_state="mars_dirt_6";} : /turf/open/mars/mars_dirt_6 +/turf/open/mars{icon_state="mars_dirt_8";} : /turf/open/mars/mars_dirt_8 +/turf/open/mars{icon_state="mars_dirt_9";} : /turf/open/mars/mars_dirt_9 +/turf/open/organic/grass{desc="It'll get in your shoes no matter what you do.";name="astroturf";} : /turf/open/organic/grass/astroturf +/turf/open/organic/grass{name="astroturf";} : /turf/open/organic/grass/astroturf +/turf/open/shuttle/dropship{icon_state="floor8";} : /turf/open/shuttle/dropship/light_grey_single_wide_left_to_right +/turf/open/shuttle/dropship{icon_state="rasputin10";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/light_grey_top +/turf/open/shuttle/dropship{icon_state="rasputin10";} : /turf/open/shuttle/dropship/light_grey_top +/turf/open/shuttle/dropship{icon_state="rasputin12";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/dark_grey_bottom +/turf/open/shuttle/dropship{icon_state="rasputin12";} : /turf/open/shuttle/dropship/dark_grey_bottom +/turf/open/shuttle/dropship{icon_state="rasputin13";} : /turf/open/shuttle/dropship/light_grey_middle +/turf/open/shuttle/dropship{icon_state="rasputin15";} : /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down +/turf/open/shuttle/dropship{icon_state="rasputin3";} : /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down +/turf/open/shuttle/dropship{icon_state="rasputin4";} : /turf/open/shuttle/dropship/light_grey_bottom_left +/turf/open/shuttle/dropship{icon_state="rasputin5";} : /turf/open/shuttle/dropship/light_grey_left_to_right +/turf/open/shuttle/dropship{icon_state="rasputin6";} : /turf/open/shuttle/dropship/light_grey_top_left +/turf/open/shuttle/dropship{icon_state="rasputin7";} : /turf/open/shuttle/dropship/light_grey_top_right +/turf/open/shuttle/dropship{icon_state="rasputin8";} : /turf/open/shuttle/dropship/light_grey_bottom_right +/turf/open/shuttle/escapepod{icon_state="floor0";dir=1;} : /turf/open/shuttle/escapepod/floor0/north +/turf/open/shuttle/escapepod{icon_state="floor0";dir=8;} : /turf/open/shuttle/escapepod/floor0/west +/turf/open/shuttle/escapepod{icon_state="floor0";} : /turf/open/shuttle/escapepod/floor0 +/turf/open/shuttle/escapepod{icon_state="floor1";dir=4;} : /turf/open/shuttle/escapepod/floor1/east +/turf/open/shuttle/escapepod{icon_state="floor1";} : /turf/open/shuttle/escapepod/floor1 +/turf/open/shuttle/escapepod{icon_state="floor11";} : /turf/open/shuttle/escapepod/floor11 +/turf/open/shuttle/escapepod{icon_state="floor12";} : /turf/open/shuttle/escapepod/floor12 +/turf/open/shuttle/escapepod{icon_state="floor2";} : /turf/open/shuttle/escapepod/floor2 +/turf/open/shuttle/escapepod{icon_state="floor4";} : /turf/open/shuttle/escapepod/floor4 +/turf/open/shuttle/escapepod{icon_state="floor5";} : /turf/open/shuttle/escapepod/floor5 +/turf/open/shuttle/escapepod{icon_state="floor7";} : /turf/open/shuttle/escapepod/floor7 +/turf/open/shuttle/escapepod{icon_state="floor8";} : /turf/open/shuttle/escapepod/floor8 +/turf/open/shuttle/escapepod{icon_state="floor9";} : /turf/open/shuttle/escapepod/floor9 +/turf/open/shuttle/escapepod{dir=1;} : /turf/open/shuttle/escapepod/north +/turf/open/shuttle/escapepod{dir=4;} : /turf/open/shuttle/escapepod/east +/turf/open/shuttle/escapepod{dir=8;} : /turf/open/shuttle/escapepod/west +/turf/open/shuttle/lifeboat{dir=1;icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped/north +/turf/open/shuttle/lifeboat{icon_state="plate";} : /turf/open/shuttle/lifeboat/plate +/turf/open/shuttle/lifeboat{icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped +/turf/open/shuttle/lifeboat{icon_state="test_floor4";} : /turf/open/shuttle/lifeboat/test_floor4 +/turf/open/shuttle/vehicle{icon_state="dark_sterile";} : /turf/open/shuttle/vehicle/dark_sterile +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_11";} : /turf/open/shuttle/vehicle/dark_sterile_green_11 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_12";} : /turf/open/shuttle/vehicle/dark_sterile_green_12 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_13";} : /turf/open/shuttle/vehicle/dark_sterile_green_13 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_14";} : /turf/open/shuttle/vehicle/dark_sterile_green_14 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_5";} : /turf/open/shuttle/vehicle/dark_sterile_green_5 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_6";} : /turf/open/shuttle/vehicle/dark_sterile_green_6 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_7";} : /turf/open/shuttle/vehicle/dark_sterile_green_7 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_8";} : /turf/open/shuttle/vehicle/dark_sterile_green_8 +/turf/open/shuttle/vehicle{icon_state="floor_0_1_15";} : /turf/open/shuttle/vehicle/floor_0_1_15 +/turf/open/shuttle/vehicle{icon_state="floor_1_1";} : /turf/open/shuttle/vehicle/floor_1_1 +/turf/open/shuttle/vehicle{icon_state="floor_1_10";} : /turf/open/shuttle/vehicle/floor_1_10 +/turf/open/shuttle/vehicle{icon_state="floor_1_11";} : /turf/open/shuttle/vehicle/floor_1_11 +/turf/open/shuttle/vehicle{icon_state="floor_1_12";} : /turf/open/shuttle/vehicle/floor_1_12 +/turf/open/shuttle/vehicle{icon_state="floor_1_13";} : /turf/open/shuttle/vehicle/floor_1_13 +/turf/open/shuttle/vehicle{icon_state="floor_1_14";} : /turf/open/shuttle/vehicle/floor_1_14 +/turf/open/shuttle/vehicle{icon_state="floor_1_1_3";} : /turf/open/shuttle/vehicle/floor_1_1_3 +/turf/open/shuttle/vehicle{icon_state="floor_1_2";} : /turf/open/shuttle/vehicle/floor_1_2 +/turf/open/shuttle/vehicle{icon_state="floor_1_3_3";} : /turf/open/shuttle/vehicle/floor_1_3_3 +/turf/open/shuttle/vehicle{icon_state="floor_1_5";} : /turf/open/shuttle/vehicle/floor_1_5 +/turf/open/shuttle/vehicle{icon_state="floor_1_6";} : /turf/open/shuttle/vehicle/floor_1_6 +/turf/open/shuttle/vehicle{icon_state="floor_1_7";} : /turf/open/shuttle/vehicle/floor_1_7 +/turf/open/shuttle/vehicle{icon_state="floor_1_8";} : /turf/open/shuttle/vehicle/floor_1_8 +/turf/open/shuttle/vehicle{icon_state="floor_1_9";} : /turf/open/shuttle/vehicle/floor_1_9 +/turf/open/shuttle/vehicle{icon_state="floor_3";} : /turf/open/shuttle/vehicle/floor_3 +/turf/open/shuttle/vehicle{icon_state="floor_3_10_1";} : /turf/open/shuttle/vehicle/floor_3_10_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_11";} : /turf/open/shuttle/vehicle/floor_3_11 +/turf/open/shuttle/vehicle{icon_state="floor_3_12";} : /turf/open/shuttle/vehicle/floor_3_12 +/turf/open/shuttle/vehicle{icon_state="floor_3_13";} : /turf/open/shuttle/vehicle/floor_3_13 +/turf/open/shuttle/vehicle{icon_state="floor_3_1_1";} : /turf/open/shuttle/vehicle/floor_3_1_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_3";} : /turf/open/shuttle/vehicle/floor_3_3 +/turf/open/shuttle/vehicle{icon_state="floor_3_4";} : /turf/open/shuttle/vehicle/floor_3_4 +/turf/open/shuttle/vehicle{icon_state="floor_3_5";} : /turf/open/shuttle/vehicle/floor_3_5 +/turf/open/shuttle/vehicle{icon_state="floor_3_6";} : /turf/open/shuttle/vehicle/floor_3_6 +/turf/open/shuttle/vehicle{icon_state="floor_3_7";} : /turf/open/shuttle/vehicle/floor_3_7 +/turf/open/shuttle/vehicle{icon_state="floor_3_7_1";} : /turf/open/shuttle/vehicle/floor_3_7_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_8";} : /turf/open/shuttle/vehicle/floor_3_8 +/turf/open/shuttle/vehicle{icon_state="floor_3_8_1";} : /turf/open/shuttle/vehicle/floor_3_8_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_9";} : /turf/open/shuttle/vehicle/floor_3_9 +/turf/open/shuttle/vehicle{icon_state="floor_3_9_1";} : /turf/open/shuttle/vehicle/floor_3_9_1 +/turf/open/shuttle{icon_state="floor4";} : /turf/open/shuttle/bright_red +/turf/open/shuttle{icon_state="floor6";} : /turf/open/shuttle/red +/turf/open/shuttle{icon_state="floor7";} : /turf/open/shuttle/black + +/turf/open/shuttle/dropship/can_surgery/dark_grey : /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down +/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 \ No newline at end of file diff --git a/tools/UpdatePaths/__main__.py b/tools/UpdatePaths/__main__.py index a8bf8263e9b9..ffc56113257e 100644 --- a/tools/UpdatePaths/__main__.py +++ b/tools/UpdatePaths/__main__.py @@ -13,6 +13,7 @@ /turf/open/floor/iron/warningline : /obj/effect/turf_decal {@OLD} , /obj/thing {icon_state = @OLD:name; name = "meme"} /turf/open/floor/iron/warningline{dir=2} : /obj/thing /obj/effect/landmark/start/virologist : @DELETE + /mob/living{resize = @ANY} : /mob/living{@OLD; resize = @SKIP} Syntax for subtypes also exist, to update a path's type but maintain subtypes: /obj/structure/closet/crate/@SUBTYPES : /obj/structure/new_box/@SUBTYPES {@OLD} New paths properties: @@ -25,6 +26,7 @@ Old paths properties: Will be used as a filter. property = @UNSET - will apply the rule only if the property is not mapedited + property = @ANY - will apply the rule when the property is mapedited, regardless of its value. """ default_map_directory = "../../maps" @@ -91,7 +93,9 @@ def replace_def(match): else: return [match.group(0)] else: - if old_props[filter_prop] != old_path_props[filter_prop] or old_path_props[filter_prop] == "@UNSET": + if old_path_props[filter_prop] == "@ANY": + continue + elif old_props[filter_prop] != old_path_props[filter_prop] or old_path_props[filter_prop] == "@UNSET": return [match.group(0)] #does not match current filter, skip the change. if verbose: print("Found match : {0}".format(match.group(0))) @@ -110,7 +114,8 @@ def replace_def(match): out = new_path out_props = dict() - for prop_name, prop_value in new_props.items(): + for prop_name, prop_text in new_props.items(): + prop_value = str(prop_text) if prop_name == "@OLD": out_props = dict(old_props) continue @@ -119,8 +124,7 @@ def replace_def(match): continue if prop_value.startswith("@OLD"): params = prop_value.split(":") - if prop_name in old_props: - out_props[prop_name] = old_props[params[1]] if len(params) > 1 else old_props[prop_name] + out_props[prop_name] = old_props[params[1]] if len(params) > 1 else old_props[prop_name] continue out_props[prop_name] = prop_value if out_props: diff --git a/tools/UpdatePaths/readme.md b/tools/UpdatePaths/readme.md index e1662067b4f8..6e40a73e1056 100644 --- a/tools/UpdatePaths/readme.md +++ b/tools/UpdatePaths/readme.md @@ -340,6 +340,59 @@ You would then get the following output: Note how we keep the "Money Hole" intact, while still managing to extrapolate the `dir` variable to 1 on the sink that had absolutely no variables set on it. This is useful for when you want to change a variable that is not shown in the map editor, but you want to keep the rest of the variables intact. +#### Methods: Any Value Fits All and Naming Conventions +But what if you just want to rename the variable `maxHealth` to `good_boy_points` for all instances of `/mob/living/github_user`? Using the `@ANY` parameter after a variable name, you can capture any instance that has it edited in a map. While, to set the value of the newly named `good_boy_points` to that of the old `maxHealth`, we can use `@OLD:maxHealth`, put after the name of the new variable to achieve that. The result'll be something like this: + +```txt +/mob/living/github_user{maxHealth=@ANY} : /mob/living/github_user{good_boy_points=@OLD:maxHealth} +``` + +Though, If you read about the previous methods, you'd know that without the `@OLD` parameter (the one without colon), every other variable edit will also be discarded, so it's important to add that BEFORE any other parament, as well as `maxHealth=@SKIP` following that since we're renaming that variable. So, take two: + +```txt +/mob/living/github_user{maxHealth=@ANY} : /mob/living/github_user{@OLD; maxHealth=@SKIP; good_boy_points=@OLD:maxHealth} +``` + +Perfect, so now let's assume the following map: + +```dm +"a" = ( +/mob/living/basic/mouse{ + maxHealth = 15 + }, +/turf/open/floor/iron, +/area/github), +"b" = ( +/mob/living/github_user{ + name = "ShizCalev"; + desc= "Has more good boy points than a megafauna has health."; + maxHealth = 2083 + }, +/turf/open/floor/iron, +/area/github), +``` + +You would then get the following output: + +```dm +"a" = ( +/mob/living/basic/mouse{ + maxHealth = 15 + }, +/turf/open/floor/iron, +/area/github), +"b" = ( +/mob/living/github_user{ + name = "ShizCalev"; + desc= "Has more good boy points than a megafauna has health."; + good_boy_points = 2083 + }, +/turf/open/floor/iron, +/area/github), +``` + +As an addendum, you don't have to use both `@ANY` and `@OLD:prop_name` together. I'm merely providing a single example for the both of them and their most practical usage. + ### Blend it all together All of the examples provided within are not mutually exclusive! They can be mixed-and-matched in several ways (old scripts might have a few good examples of these), and the only limit here is your imagination. You can do some very powerful things with UpdatePaths, with your scripts lasting for years to come. diff --git a/tools/maplint/lints/invaid_dir.yml b/tools/maplint/lints/invaid_dir.yml new file mode 100644 index 000000000000..f79e4250962d --- /dev/null +++ b/tools/maplint/lints/invaid_dir.yml @@ -0,0 +1,15 @@ +help: "This dir doesn't exist. It will likely just default to south (2)." +/obj: + banned_variables: + dir: + allow: [1, 2, 4, 5, 6, 8, 9, 10, 16, 32] + +/turf: + banned_variables: + dir: + allow: [1, 2, 4, 5, 6, 8, 9, 10, 16, 32] + +/mob: + banned_variables: + dir: + allow: [1, 2, 4, 5, 6, 8, 9, 10, 16, 32] diff --git a/tools/maplint/lints/multiple_machinery.yml b/tools/maplint/lints/multiple_machinery.yml new file mode 100644 index 000000000000..b2dd9d77ebe0 --- /dev/null +++ b/tools/maplint/lints/multiple_machinery.yml @@ -0,0 +1,4 @@ +/obj/structure/machinery: + banned_neighbors: + /obj/structure/machinery: + identical: true diff --git a/tools/maplint/lints/multiple_windows.yml b/tools/maplint/lints/multiple_windows.yml new file mode 100644 index 000000000000..9af1c4d73221 --- /dev/null +++ b/tools/maplint/lints/multiple_windows.yml @@ -0,0 +1,4 @@ +/obj/structure/window: + banned_neighbors: + /obj/structure/window: + identical: true diff --git a/tools/maplint/lints/open_turf.yml b/tools/maplint/lints/open_turf.yml new file mode 100644 index 000000000000..25a4bb0c7b27 --- /dev/null +++ b/tools/maplint/lints/open_turf.yml @@ -0,0 +1,3 @@ +help: "Please replace open turfs with subtypes instead because ScrapeAway will revert any map var edits. See suggestions at end..." +/turf/open: + banned_variables: true diff --git a/tools/maplint/lints/stray_item.yml b/tools/maplint/lints/stray_item.yml new file mode 100644 index 000000000000..0f5e6f4181a0 --- /dev/null +++ b/tools/maplint/lints/stray_item.yml @@ -0,0 +1,3 @@ +/turf/closed: + banned_neighbors: + - =/obj/item diff --git a/tools/maplint/source/__main__.py b/tools/maplint/source/__main__.py index 27cddb160eb9..5a16d5054b63 100644 --- a/tools/maplint/source/__main__.py +++ b/tools/maplint/source/__main__.py @@ -45,17 +45,45 @@ def print_error(message: str, filename: str, line_number: int, github_error_styl def print_maplint_error(error: MaplintError, github_error_style: bool): print_error( - f"{f'(in pop {error.pop_id}) ' if error.pop_id else ''}{f'(at {error.coordinates}) ' if error.coordinates else ''}{error}", + f"{f'(in pop {error.pop_id}) ' if error.pop_id else ''}{f'(at {error.coordinates}) ' if error.coordinates else ''}{error}" + (f"\n {error.help}" if error.help is not None else ""), error.file_name, error.line_number, github_error_style, ) +def print_maplint_suggestions(all_suggestions: dict[str, MaplintError], github_error_style: bool): + # being a dict, we can already assume MaplintError were de-duped based on path_suggestions + if(len(all_suggestions) == 0): + return + + # sort all suggestions so its easier for the user to verify + suggestions = sorted(all_suggestions.items(), key=lambda x:str(x[1].path_suggestion)) + + # combine all suggestions into two strings, de-duping dm suggestions where necessary + path_suggestions = "" + dm_suggestions = "" + dm_sub_suggestions = set() + for key, failure in suggestions: # key is path_suggestion, but may as well be explicit + path_suggestions += failure.path_suggestion + if(failure.dm_sub_suggestion not in dm_sub_suggestions): + dm_sub_suggestions.add(failure.dm_sub_suggestion) + dm_suggestions += failure.dm_sub_suggestion + if(failure.dm_suggestion not in dm_sub_suggestions): + dm_suggestions += failure.dm_suggestion + + if github_error_style: + print(f"::error title=DMM Linter::UpdatePath suggestions:\n{path_suggestions}") + print(f"::error title=DMM Linter::Code suggestions:\n{dm_suggestions}") + else: + print(red(f"- UpdatePath suggestions:\n{path_suggestions}")) + print(red(f"- Code suggestions:\n{dm_suggestions}")) + def main(args): any_failed = False github_error_style = args.github lints: dict[str, lint.Lint] = {} + all_suggestions: dict[str, MaplintError] = {} lint_base = pathlib.Path(__file__).parent.parent / "lints" lint_filenames = [] @@ -105,6 +133,14 @@ def main(args): for failure in all_failures: print_maplint_error(failure, github_error_style) + # also collect any suggestions + if(failure.path_suggestion == ""): + continue + if(failure.path_suggestion not in all_suggestions): + all_suggestions[failure.path_suggestion] = failure + + print_maplint_suggestions(all_suggestions, github_error_style) + if any_failed: exit(1) diff --git a/tools/maplint/source/common.py b/tools/maplint/source/common.py index 6fc0080009ac..cbcae6b4001d 100644 --- a/tools/maplint/source/common.py +++ b/tools/maplint/source/common.py @@ -33,4 +33,4 @@ class Filename: class Null: pass -Constant = str | float | Filename | Typepath | Null | list['Constant'] | dict['Constant', 'Constant'] +Constant = str | int | float | Filename | Typepath | Null | list['Constant'] | dict['Constant', 'Constant'] diff --git a/tools/maplint/source/dmm.py b/tools/maplint/source/dmm.py index dd9ecc821bb4..0a1045e1b838 100644 --- a/tools/maplint/source/dmm.py +++ b/tools/maplint/source/dmm.py @@ -114,6 +114,8 @@ def parse_var_edit(self): def parse_constant(self, constant): if (float_constant := self.safe_float(constant)) is not None: + if(constant.isdigit()): + return int(constant) return float_constant elif re.match(r'^/[/\w]+$', constant): return Typepath(constant) diff --git a/tools/maplint/source/error.py b/tools/maplint/source/error.py index abb04cc22729..cf99e4f863b4 100644 --- a/tools/maplint/source/error.py +++ b/tools/maplint/source/error.py @@ -1,23 +1,41 @@ -"""Linting error with associated filename and line number.""" +from typing import Optional + class MaplintError(Exception): - """The DMM file name the exception occurred in""" + """Linting error with associated filename and line number.""" + file_name = "unknown" + """The DMM file name the exception occurred in""" - """The line the error occurred on""" line_number = 1 + """The line the error occurred on""" + coordinates: Optional[str] = None """The optional coordinates""" - coordinates: str = None + pop_id: Optional[str] = None """The optional pop ID""" - pop_id: str = None - def __init__(self, message: str, file_name: str, line_number = 1): + help: Optional[str] = None + """The optional help message""" + + path_suggestion: Optional[str] = None + """The optional UpdatePaths suggestion snippet""" + + dm_suggestion: Optional[str] = None + """The optional dm code suggestion snippet""" + + dm_sub_suggestion: Optional[str] = None + """The optional dm code suggestion snippet for any subtype. Seperate for de-duping.""" + + def __init__(self, message: str, file_name: str, line_number = 1, path_suggestion = "", dm_suggestion = "", dm_sub_suggestion = ""): Exception.__init__(self, message) self.file_name = file_name self.line_number = line_number + self.path_suggestion = path_suggestion + self.dm_suggestion = dm_suggestion + self.dm_sub_suggestion = dm_sub_suggestion -"""A parsing error that must be upgrading to a linting error by parse().""" class MapParseError(Exception): + """A parsing error that must be upgrading to a linting error by parse().""" pass diff --git a/tools/maplint/source/lint.py b/tools/maplint/source/lint.py index e3cb32467d77..14fd50bd86c5 100644 --- a/tools/maplint/source/lint.py +++ b/tools/maplint/source/lint.py @@ -1,7 +1,7 @@ import re from typing import Optional -from .common import Constant, Typepath +from .common import Constant, Filename, Typepath from .dmm import DMM, Content from .error import MaplintError, MapParseError @@ -9,9 +9,9 @@ def expect(condition, message): if not condition: raise MapParseError(message) -"""Create an error linked to a specific content instance""" -def fail_content(content: Content, message: str) -> MaplintError: - return MaplintError(message, content.filename, content.starting_line) +def fail_content(content: Content, message: str, path_suggestion = "", dm_suggestion = "", dm_sub_suggestion = "") -> MaplintError: + """Create an error linked to a specific content instance""" + return MaplintError(message, content.filename, content.starting_line, path_suggestion, dm_suggestion, dm_sub_suggestion) class TypepathExtra: typepath: Typepath @@ -66,7 +66,13 @@ def __init__(self, typepath, data = {}): def matches(self, identified: Content, neighbor: Content): if self.identical: - return neighbor == identified + if identified.path != neighbor.path: + return False + + if identified.var_edits != neighbor.var_edits: + return False + + return True if self.typepath is not None: if self.typepath.matches_path(neighbor.path): @@ -198,7 +204,8 @@ def run(self, identified: Content, contents: list[Content], identified_index) -> if self.banned_variables == True: if len(identified.var_edits) > 0: - failures.append(fail_content(identified, f"Typepath {identified.path} should not have any variable edits.")) + path_suggestion, dm_suggestion, dm_sub_suggestion = self.parse_suggestion(identified) + failures.append(fail_content(identified, f"Typepath {identified.path} should not have any variable edits.", path_suggestion, dm_suggestion, dm_sub_suggestion)) else: assert isinstance(self.banned_variables, list) for banned_variable in self.banned_variables: @@ -210,6 +217,85 @@ def run(self, identified: Content, contents: list[Content], identified_index) -> return failures + def parse_suggestion(self, identified): + #figure out what typepath we're going to suggest + other_var_count = 0 + typepath_suggestion = f"{identified.path}/" + dir_var = "" + for var_name, var_value in identified.var_edits.items(): + if(var_name == "dir"): + dir_var = self.parse_direction(var_value) + else: + other_var_count += 1 + if(other_var_count > 1): + typepath_suggestion += "_" + typepath_suggestion += f"{var_value}" + + #cleanup typepath + typepath_suggestion = typepath_suggestion.replace(" ", "_").replace("-", "_").replace(",", "_") + + #always offer a unique dir as a subtype + typepath_dir_suggestion = "" + if(dir_var): + if(other_var_count > 0): + typepath_dir_suggestion = f"{typepath_suggestion}/{dir_var}" + else: + typepath_suggestion += dir_var + + #generate suggestion entries + dm_suggestion = f"{typepath_suggestion}\n" + path_suggestion = f"{identified.path}{{" + for var_name, var_value in identified.var_edits.items(): + if(var_name == "dir"): + if(typepath_dir_suggestion == ""): + dm_suggestion += f"\t{var_name} = {dir_var.upper()}\n" + path_suggestion += f"{var_name}={var_value};" + elif(isinstance(var_value, Filename)): + dm_suggestion += f"\t{var_name} = \'{var_value.path}\'\n" + path_suggestion += f"{var_name}=\'{var_value.path}\';" + elif(isinstance(var_value, str)): + dm_suggestion += f"\t{var_name} = \"{var_value}\"\n" + path_suggestion += f"{var_name}=\"{var_value}\";" + else: + dm_suggestion += f"\t{var_name} = {var_value}\n" + path_suggestion += f"{var_name}={var_value};" + dm_suggestion += "\n" + if(typepath_dir_suggestion == ""): + path_suggestion += f"}} : {typepath_suggestion}\n" + + #generate second dm suggestion if its a dir with other stuff + dm_sub_suggestion = "" + if(typepath_dir_suggestion != ""): + dm_sub_suggestion = dm_suggestion + dm_suggestion = f"{typepath_dir_suggestion}\n" + dm_suggestion += f"\tdir = {dir_var.upper()}\n\n" + path_suggestion += f"}} : {typepath_dir_suggestion}\n" + + return path_suggestion, dm_suggestion, dm_sub_suggestion + + def parse_direction(self, number): + if(number == 1): + return "north" + if(number == 2): + return "south" + if(number == 4): + return "east" + if(number == 8): + return "west" + if(number == 5): + return "northeast" + if(number == 6): + return "southeast" + if(number == 9): + return "northwest" + if(number == 10): + return "southwest" + if(number == 16): + return "up" + if(number == 32): + return "down" + raise TypeError(f"Unknown direction : {number}") + class Lint: help: Optional[str] = None rules: dict[TypepathExtra, Rules] @@ -260,9 +346,8 @@ def run(self, map_data: DMM) -> list[MaplintError]: coordinate_texts.append(f"and {leftover_coordinates} more") for failure in failures: - if self.help is not None: - failure.message += f"\n {self.help}" failure.coordinates = ', '.join(coordinate_texts) + failure.help = self.help failure.pop_id = pop all_failures.append(failure)