diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index 6a7d8d8756..3a043a753f 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -418,3 +418,4 @@ var/list/default_xeno_onmob_icons = list( #define HANDLING_LIMBS list("l_arm","l_hand", "r_arm", "r_hand") #define EXTREMITY_LIMBS list("l_leg","l_foot","r_leg","r_foot","l_arm","l_hand","r_arm","r_hand") #define CORE_LIMBS list("chest","head","groin") + diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index e650ebacb8..a3299184e4 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -100,10 +100,12 @@ #define MOBILE_SHUTTLE_ID_ERT_BIG "ert_boarding_shuttle" #define MOBILE_TRIJENT_ELEVATOR "trijentshuttle2" -#define STAT_TRIJENT_LZ1 "trigent_lz1" -#define STAT_TRIJENT_LZ2 "trigent_lz2" -#define STAT_TRIJENT_ENGI "trigent_engineering" -#define STAT_TRIJENT_OMEGA "trigent_omega" +#define STAT_TRIJENT_EMPTY "trijent_empty" +#define STAT_TRIJENT_OCCUPIED "trijent_occupied" +#define STAT_TRIJENT_LZ1 "trijent_lz1" +#define STAT_TRIJENT_LZ2 "trijent_lz2" +#define STAT_TRIJENT_ENGI "trijent_engineering" +#define STAT_TRIJENT_OMEGA "trijent_omega" #define MOBILE_SHUTTLE_LIFEBOAT_PORT "lifeboat-port" #define MOBILE_SHUTTLE_LIFEBOAT_STARBOARD "lifeboat-starboard" diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index be69bdad1b..6f0f060305 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -9,6 +9,7 @@ SUBSYSTEM_DEF(mapping) var/list/map_templates = list() var/list/shuttle_templates = list() + var/list/all_shuttle_templates = list() var/list/areas_in_z = list() @@ -238,6 +239,7 @@ SUBSYSTEM_DEF(mapping) var/datum/map_template/shuttle/S = new shuttle_type() shuttle_templates[S.shuttle_id] = S + all_shuttle_templates[item] = S map_templates[S.shuttle_id] = S /datum/controller/subsystem/mapping/proc/RequestBlockReservation(width, height, z, type = /datum/turf_reservation, turf_type_override) diff --git a/code/datums/quadtree.dm b/code/datums/quadtree.dm index f6023f6bfc..bf5cd8000b 100644 --- a/code/datums/quadtree.dm +++ b/code/datums/quadtree.dm @@ -10,14 +10,14 @@ var/z_level /// Don't divide further when truthy - var/final + var/final_divide = FALSE /datum/quadtree/New(datum/shape/rectangle/rect, z) . = ..() boundary = rect z_level = z if(boundary.width <= QUADTREE_BOUNDARY_MINIMUM_WIDTH || boundary.height <= QUADTREE_BOUNDARY_MINIMUM_HEIGHT) - final = TRUE + final_divide = TRUE // By design i guess, discarding branch discards rest with BYOND soft-GCing // There should never be anything else but SSquadtree referencing quadtrees, @@ -103,7 +103,7 @@ player_coords = list(p_coords) return TRUE - else if(!final && player_coords.len >= QUADTREE_CAPACITY) + else if(!final_divide && player_coords.len >= QUADTREE_CAPACITY) if(!is_divided) subdivide() if(nw_branch.insert_player(p_coords)) diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index eb1fd23419..98bcf29675 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -100,6 +100,18 @@ if(movement_force) M.movement_force = movement_force.Copy() + /datum/map_template/shuttle/vehicle shuttle_id = MOBILE_SHUTTLE_VEHICLE_ELEVATOR name = "Vehicle Elevator" + +/datum/map_template/shuttle/trijent_elevator + name = "Trijent Elevator" + shuttle_id = MOBILE_TRIJENT_ELEVATOR + var/elevator_network + +/datum/map_template/shuttle/trijent_elevator/A + elevator_network = "A" + +/datum/map_template/shuttle/trijent_elevator/B + elevator_network = "B" diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm index e375502f54..94361c420d 100644 --- a/code/modules/clothing/suits/marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor.dm @@ -1635,47 +1635,47 @@ //=======================================================================\\ /obj/item/clothing/suit/storage/marine/MP/provost - name = "\improper M3 pattern Provost armor" - desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvlight" - item_state_slots = list(WEAR_JACKET = "pvlight") - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - w_class = SIZE_MEDIUM - -/obj/item/clothing/suit/storage/marine/MP/provost/enforcer name = "\improper M3 pattern Provost armor" desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." icon_state = "pvmedium" item_state_slots = list(WEAR_JACKET = "pvmedium") - slowdown = SLOWDOWN_ARMOR_MEDIUM - armor_melee = CLOTHING_ARMOR_MEDIUM + slowdown = SLOWDOWN_ARMOR_LIGHT armor_bullet = CLOTHING_ARMOR_MEDIUM armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUMLOW - armor_bio = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH armor_internaldamage = CLOTHING_ARMOR_MEDIUM + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + storage_slots = 3 /obj/item/clothing/suit/storage/marine/MP/provost/tml name = "\improper M3 pattern Senior Provost armor" + desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." icon_state = "pvleader" item_state_slots = list(WEAR_JACKET = "pvleader") - desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - - slowdown = SLOWDOWN_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH /obj/item/clothing/suit/storage/marine/MP/provost/marshal + name = "\improper M5 pattern Provost Marshal armor" + desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." icon_state = "pvmarshal" item_state_slots = list(WEAR_JACKET = "pvmarshal") - name = "\improper M3 pattern Provost Marshal armor" - desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." + w_class = SIZE_MEDIUM + storage_slots = 4 + +/obj/item/clothing/suit/storage/marine/MP/provost/light + name = "\improper M3 pattern Provost light armor" + desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvlight" + item_state_slots = list(WEAR_JACKET = "pvlight") + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT -/obj/item/clothing/suit/storage/marine/MP/provost/marshal/chief - name = "\improper M3 pattern Provost Chief Marshal armor" +/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi + name = "\improper M3 pattern Provost flexi-armor" + desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + w_class = SIZE_MEDIUM + icon_state = "pvlight_2" + item_state_slots = list(WEAR_JACKET = "pvlight_2") + storage_slots = 2 //================//UNITED AMERICAS ALLIED COMMAND\\=====================\\ //=======================================================================\\ diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm index d6781147a0..73d7e09818 100644 --- a/code/modules/clothing/suits/marine_coat.dm +++ b/code/modules/clothing/suits/marine_coat.dm @@ -235,31 +235,23 @@ //=========================//PROVOST\\================================\\ //=======================================================================\\ + /obj/item/clothing/suit/storage/jacket/marine/provost - name = "\improper Provost Coat" - desc = "The crisp coat of a Provost Officer." + name = "\improper Provost Jacket" + desc = "A crisp jacket with the Provost sigil." + icon_state = "provost_jacket" flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - icon_state = "provost_coat" valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR) -/obj/item/clothing/suit/storage/jacket/marine/provost/advisor - name = "\improper Provost Advisor Jacket" - desc = "The crisp jacket of a Provost Advisor." - icon_state = "provost_jacket" - -/obj/item/clothing/suit/storage/jacket/marine/provost/inspector - name = "\improper Provost Inspector Jacket" - desc = "The crisp jacket of a Provost Inspector." - icon_state = "provost_jacket" +/obj/item/clothing/suit/storage/jacket/marine/provost/coat + name = "\improper Provost Coat" + desc = "The crisp coat of a Provost Officer." + icon_state = "provost_coat" -/obj/item/clothing/suit/storage/jacket/marine/provost/marshal - name = "\improper Provost Marshal Jacket" - desc = "The crisp jacket of a Provost Marshal." - icon_state = "provost_jacket" +/obj/item/clothing/suit/storage/jacket/marine/provost/coat/marshal + name = "\improper Provost Marshal Coat" + icon_state = "provost_coat_marshal" -/obj/item/clothing/suit/storage/jacket/marine/provost/marshal/chief - name = "\improper Provost Chief Marshal Jacket" - desc = "The crisp jacket of the Provost Chief Marshal." //=========================//DRESS BLUES\\================================\\ //=======================================================================\\ diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index d9d8d7da45..59cc02b125 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -374,41 +374,17 @@ min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT -/obj/item/clothing/under/marine/mp/provost/enforcer - name = "\improper Provost Enforcer Uniform" - desc = "The crisp uniform of a Provost Enforcer." - -/obj/item/clothing/under/marine/mp/provost/tml - name = "\improper Provost Team Leader Uniform" - desc = "The crisp uniform of a Provost Team Leader." - icon_state = "warden_jumpsuit" - worn_state = "warden_jumpsuit" - -/obj/item/clothing/under/marine/mp/provost/advisor - name = "\improper Provost Advisor Uniform" - desc = "The crisp uniform of a Provost Advisor." - icon_state = "warden_jumpsuit" - worn_state = "warden_jumpsuit" - -/obj/item/clothing/under/marine/mp/provost/inspector - name = "\improper Provost Inspector Uniform" - desc = "The crisp uniform of a Provost Inspector." - icon_state = "warden_jumpsuit" - worn_state = "warden_jumpsuit" +/obj/item/clothing/under/marine/mp/provost/senior + name = "\improper Provost Senior Uniform" + desc = "The crisp uniform of a senior member of the Provost Office." + icon_state = "provost_tml" + worn_state = "provost_tml" /obj/item/clothing/under/marine/mp/provost/marshal name = "\improper Provost Marshal Uniform" desc = "The crisp uniform of a Provost Marshal." - icon_state = "WO_jumpsuit" - worn_state = "WO_jumpsuit" - -/obj/item/clothing/under/marine/mp/provost/marshal/sector - name = "\improper Provost Sector Marshal Uniform" - desc = "The crisp uniform of a Provost Sector Marshal." - -/obj/item/clothing/under/marine/mp/provost/marshal/chief - name = "\improper Provost Chief Marshal Uniform" - desc = "The crisp uniform of the Provost Chief Marshal." + icon_state = "provost_marshal" + worn_state = "provost_marshal" //==================//UNITED AMERICAS ALLIED COMMAND\\===================\\ //=======================================================================\\ diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm index bcebad4661..e8eb3f75ae 100644 --- a/code/modules/cm_marines/Donator_Items.dm +++ b/code/modules/cm_marines/Donator_Items.dm @@ -1366,7 +1366,8 @@ name = "tactical radiopack" desc = "A Radio backpack for use with the Juggernaut armor. DONOR ITEM" icon_state = "skinnerpack" - item_state = "skinnerpack" + item_state = "securitypack" + has_gamemode_skin = FALSE //same sprite for all gamemodes. /obj/item/clothing/glasses/fluff/alexwarhammer name = "Black Jack's Dank Shades" diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm index d35ee7c3ea..6c079f3dcd 100644 --- a/code/modules/desert_dam/filtration/filtration.dm +++ b/code/modules/desert_dam/filtration/filtration.dm @@ -136,7 +136,7 @@ var/global/east_riverstart = 0 else return - if(ismob(A)) + if(isliving(A)) var/mob/living/M = A // Inside a xeno for example diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm index 8bd2468c78..5f7c40c016 100644 --- a/code/modules/gear_presets/uscm_event.dm +++ b/code/modules/gear_presets/uscm_event.dm @@ -206,11 +206,11 @@ back_item = /obj/item/storage/backpack/security new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/enforcer(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost(new_human), WEAR_BODY) 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/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/enforcer(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human), WEAR_JACKET) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) else @@ -248,7 +248,7 @@ back_item = /obj/item/storage/backpack/security new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/tml(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY) 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/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST) @@ -275,44 +275,8 @@ new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/combat(new_human), WEAR_J_STORE) - -/datum/equipment_preset/uscm_event/provost/advisor - name = "Provost Advisor (ME6)" - skills = /datum/skills/CMP - - assignment = JOB_PROVOST_ADVISOR - rank = "Provost Advisor" - paygrade = "ME6" - role_comm_title = "PvA" - flags = EQUIPMENT_PRESET_EXTRA - -/datum/equipment_preset/uscm_event/provost/advisor/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/satchel/sec - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/security - - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/advisor(new_human), WEAR_BODY) - 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/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/advisor(new_human), WEAR_JACKET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/mp/provost/senior(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human.back), WEAR_IN_BACK) - - new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) - /datum/equipment_preset/uscm_event/provost/inspector name = "Provost Inspector (PvI)" - skills = /datum/skills/CMP assignment = JOB_PROVOST_INSPECTOR rank = "Provost Inspector" @@ -326,11 +290,11 @@ back_item = /obj/item/storage/backpack/security new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/inspector(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/senior(new_human), WEAR_BODY) 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/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/inspector(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost(new_human), WEAR_JACKET) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) else @@ -339,11 +303,19 @@ new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/light/flexi(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) +/datum/equipment_preset/uscm_event/provost/inspector/advisor + name = "Provost Advisor (ME6)" + + assignment = JOB_PROVOST_ADVISOR + rank = "Provost Advisor" + paygrade = "ME6" + role_comm_title = "PvA" + flags = EQUIPMENT_PRESET_EXTRA /datum/equipment_preset/uscm_event/provost/marshal name = "Provost Marshal (MO6)" @@ -366,7 +338,7 @@ 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/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/coat/marshal(new_human), WEAR_JACKET) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) else @@ -377,70 +349,24 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal(new_human.back), WEAR_IN_BACK) - /datum/equipment_preset/uscm_event/provost/marshal/sector name = "Provost Sector Marshal (MO7)" minimum_age = 50 - skills = /datum/skills/general assignment = JOB_PROVOST_SMARSHAL rank = "Provost Sector Marshal" paygrade = "MO7" role_comm_title = "PvSM" -/datum/equipment_preset/uscm_event/provost/marshal/sector/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/satchel/sec - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/security - - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/highcom(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/marshal(new_human), WEAR_BODY) - 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/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal(new_human), WEAR_JACKET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/mp/provost/marshal(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal(new_human.back), WEAR_IN_BACK) - - /datum/equipment_preset/uscm_event/provost/marshal/chief name = "Provost Chief Marshal (PvCM)" minimum_age = 60 - skills = /datum/skills/general assignment = JOB_PROVOST_CMARSHAL rank = "Provost Chief Marshal" paygrade = "PvCM" role_comm_title = "PvCM" -/datum/equipment_preset/uscm_event/provost/marshal/chief/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/satchel/sec - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/security - - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/highcom(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/marshal/chief(new_human), WEAR_BODY) - 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/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/mateba/general/impact(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/marshal/chief(new_human), WEAR_JACKET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/mp/provost/marshal(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal/chief(new_human.back), WEAR_IN_BACK) - /*****************************************************************************************************/ /datum/equipment_preset/uscm_event/uaac/tis diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index f6487d1faf..3f415d8d30 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -133,10 +133,10 @@ return /datum/species/proc/create_organs(mob/living/carbon/human/H) //Handles creation of mob organs and limbs. - for(var/L in H.limbs) //In case of pre-existing limbs/organs, we remove the old ones. - qdel(L) - H.internal_organs = list() - H.internal_organs_by_name = list() + //In case of pre-existing limbs/organs, we remove the old ones. + QDEL_LIST(H.limbs) + QDEL_LIST(H.internal_organs) + H.internal_organs_by_name.Cut() //This is a basic humanoid limb setup. var/obj/limb/chest/C = new(H, null, H) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 3d74673c53..56951097a1 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -28,7 +28,7 @@ //TODO: Integrate defence zones and targeting body parts with the actual organ system, move these into organ definitions. -//The base miss chance for the different defence zones +/// The base miss chance for the different defence zones var/list/global/base_miss_chance = list( "head" = 10, "chest" = 0, diff --git a/code/modules/projectiles/guns/flamer/flamer.dm b/code/modules/projectiles/guns/flamer/flamer.dm index 2c842073d6..dd9a4fd1bf 100644 --- a/code/modules/projectiles/guns/flamer/flamer.dm +++ b/code/modules/projectiles/guns/flamer/flamer.dm @@ -745,7 +745,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) switch(angle) //this reduces power when the explosion is going around corners if (45) spread_power *= 0.75 - else //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards + if (90 to 180) //turns out angles greater than 90 degrees almost never happen. This bit also prevents trying to spread backwards continue switch(spread_direction) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 48dc79bfa6..71e0a75aed 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -455,12 +455,31 @@ if(hit_chance) // Calculated from combination of both ammo accuracy and gun accuracy var/hit_roll = rand(1,100) + var/direct_hit = FALSE - if(original != L || hit_roll > hit_chance-base_miss_chance[def_zone]-20) // If hit roll is high or the firer wasn't aiming at this mob, we still hit but now we might hit the wrong body part + // Wasn't the clicked target + if(original != L) def_zone = rand_zone() + + // Xenos get a RNG limb miss chance regardless of being clicked target or not, see below + else if(isxeno(L) && hit_roll > hit_chance - 20) + def_zone = rand_zone() + + // Other targets do the same roll with penalty - a near hit will hit but redirected to another limb + else if(!isxeno(L) && hit_roll > hit_chance - 20 - base_miss_chance[def_zone]) + def_zone = rand_zone() + else + direct_hit = TRUE SEND_SIGNAL(firer, COMSIG_BULLET_DIRECT_HIT, L) - hit_chance -= base_miss_chance[def_zone] // Reduce accuracy based on spot. + + // At present, Xenos have no inherent effects or localized damage stemming from limb targeting + // Therefore we exempt the shooter from direct hit accuracy penalties as well, + // simply to avoid them from resetting target to chest every time they want to shoot a xeno + + if(!direct_hit || !isxeno(L)) // For normal people or direct hits we apply the limb accuracy penalty + hit_chance -= base_miss_chance[def_zone] + // else for direct hits on xenos, we skip it, pretending it's a chest shot with zero penalty #if DEBUG_HIT_CHANCE to_world(SPAN_DEBUG("([L]) Hit chance: [hit_chance] | Roll: [hit_roll]")) diff --git a/code/modules/reagents/chemistry_reagents/toxin.dm b/code/modules/reagents/chemistry_reagents/toxin.dm index 458424a5db..6ffd14ea8a 100644 --- a/code/modules/reagents/chemistry_reagents/toxin.dm +++ b/code/modules/reagents/chemistry_reagents/toxin.dm @@ -279,4 +279,4 @@ color = "#669900" reagent_state = LIQUID chemclass = CHEM_CLASS_NONE - properties = list(PROPERTY_CORROSIVE = 2, PROPERTY_TOXIC = 1) + properties = list(PROPERTY_CORROSIVE = 2, PROPERTY_TOXIC = 1, PROPERTY_CROSSMETABOLIZING = 3) diff --git a/code/modules/shuttle/computers/trijent_elevator_control.dm b/code/modules/shuttle/computers/trijent_elevator_control.dm index 290d0c94b3..41c3456a1f 100644 --- a/code/modules/shuttle/computers/trijent_elevator_control.dm +++ b/code/modules/shuttle/computers/trijent_elevator_control.dm @@ -1,8 +1,6 @@ /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call name = "\improper Elevator Call" desc = "Control panel for the elevator" - icon = 'icons/obj/structures/machinery/computer.dmi' - icon_state = "elevator_screen" shuttleId = MOBILE_TRIJENT_ELEVATOR is_call = TRUE var/dockId @@ -10,6 +8,13 @@ /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/get_landing_zones() return list(SSshuttle.getDock(dockId)) + +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/occupied + dockId = STAT_TRIJENT_OCCUPIED + +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/empty + dockId = STAT_TRIJENT_EMPTY + /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1 dockId = STAT_TRIJENT_LZ1 @@ -38,8 +43,15 @@ /obj/structure/machinery/computer/shuttle/elevator_controller/proc/get_landing_zones() . = list() + var/obj/docking_port/mobile/trijent_elevator/shuttle = SSshuttle.getShuttle(shuttleId) + for(var/obj/docking_port/stationary/trijent_elevator/elev in SSshuttle.stationary) - . += list(elev) + if(!shuttle.elevator_network) + . += list(elev) + continue + if(shuttle.elevator_network == elev.elevator_network) + . += list(elev) + continue /obj/structure/machinery/computer/shuttle/elevator_controller/tgui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 983fffeb26..7bbdb214d3 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -268,9 +268,7 @@ if(!roundstart_template) CRASH("json_key:[json_key] value \[[sid]\] resulted in a null shuttle template for [src]") else if(roundstart_template) // passed a PATH - var/sid = "[initial(roundstart_template.shuttle_id)]" - - roundstart_template = SSmapping.shuttle_templates[sid] + roundstart_template = SSmapping.all_shuttle_templates[roundstart_template] if(!roundstart_template) CRASH("Invalid path ([roundstart_template]) passed to docking port.") @@ -433,7 +431,7 @@ // Called after the shuttle is loaded from template /obj/docking_port/mobile/proc/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock) var/list/static/shuttle_id = list() - var/idnum = ++shuttle_id[template] + var/idnum = ++shuttle_id[id] if(idnum > 1) if(id == initial(id)) id = "[id][idnum]" diff --git a/code/modules/shuttle/shuttles.md b/code/modules/shuttle/shuttles.md index 373e18b449..f800303414 100644 --- a/code/modules/shuttle/shuttles.md +++ b/code/modules/shuttle/shuttles.md @@ -16,3 +16,28 @@ Shuttle map templates are used to define what the shuttle should look like. When defining the shuttle dimensions, define the height/width as if it was orienting north. The subsystem will properly line everything up, this allows for stationary docks to be in different orientations to their defined map template. A shuttle has a height, width, dheight and dwidth. The height and width is the size of the shuttle, with respect to its direction. If the template direction is North/South then width is your X coordinate and height is your Y. If the template direction is East/West then width is your Y direction and height is your X. On stationary docking ports, you can specify dwidth and dheight (auto generated for mobile), these are offsets for how your shuttle should land on the site. When a mobile port lands on a stationary port it wants to place the bottom left of the shuttle turfs on the stationary port. The dwidth/dheight allows you to offset this. + + +# Generic Elevator Shuttle + +The elevator used on Trijent (DesertDam) can be used in any map and multiple can exist on one map. + +Do not modify the trident shuttle map. You can code in elevators from the following two docking ports (where the elevator can go): + +- /obj/docking_port/stationary/trijent_elevator/occupied +- /obj/docking_port/stationary/trijent_elevator/empty + +An occupied stationary port will start the map with an elevator and an empty one will not. +All docking ports are, by default, linked together. One elevator can go to all docking ports. +To limit access between docking ports you can use tags. + +To setup an elevator: +- place the docking port where you want the elevator to sit +- give the docking port instance a unique ID +- give the docking port instance a unique Name +- make sure the door direction is correct west/east +- give the docking port shuttle_area the area name for where it sits +- if you want to build a docking port 'network' then change the roudnstart_template to a subclass +- if you want to assign a docking port to a 'network' then give it a value in "tag" + +If things are unclear, look at trident. It has two elevator networks. diff --git a/code/modules/shuttle/shuttles/trijent_elevator.dm b/code/modules/shuttle/shuttles/trijent_elevator.dm index 86ad6f7ef2..457c150212 100644 --- a/code/modules/shuttle/shuttles/trijent_elevator.dm +++ b/code/modules/shuttle/shuttles/trijent_elevator.dm @@ -19,6 +19,7 @@ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0) var/datum/door_controller/aggregate/door_control + var/elevator_network /obj/docking_port/mobile/trijent_elevator/Initialize(mapload, ...) . = ..() @@ -36,6 +37,12 @@ . = ..() door_control.control_doors("force-lock-launch", "all", force=TRUE) +/obj/docking_port/mobile/trijent_elevator/linkup(datum/map_template/shuttle/template, obj/docking_port/stationary/dock) + ..() + var/datum/map_template/shuttle/trijent_elevator/elev = template + elevator_network = elev.elevator_network + log_debug("Adding network [elev.elevator_network] to [id]") + /obj/docking_port/stationary/trijent_elevator dir=NORTH width=7 @@ -43,6 +50,7 @@ // shutters to clear the area var/airlock_area var/airlock_exit + var/elevator_network /obj/docking_port/stationary/trijent_elevator/proc/get_doors() . = list() @@ -74,6 +82,17 @@ door_control.control_doors("force-lock-launch") qdel(door_control) +/obj/docking_port/stationary/trijent_elevator/occupied + name = "occupied" + id = STAT_TRIJENT_OCCUPIED + airlock_exit = "west" + roundstart_template = /datum/map_template/shuttle/trijent_elevator + +/obj/docking_port/stationary/trijent_elevator/empty + name = "empty" + id = STAT_TRIJENT_EMPTY + airlock_exit = "west" + /obj/docking_port/stationary/trijent_elevator/lz1 name="Lz1 Elevator" id=STAT_TRIJENT_LZ1 @@ -98,7 +117,3 @@ id=STAT_TRIJENT_OMEGA airlock_area=/area/shuttle/trijent_shuttle/omega airlock_exit="east" - -/datum/map_template/shuttle/trijent_elevator - name = "Trijent Elevator" - shuttle_id = MOBILE_TRIJENT_ELEVATOR diff --git a/html/changelogs/AutoChangeLog-pr-4799.yml b/html/changelogs/AutoChangeLog-pr-4799.yml new file mode 100644 index 0000000000..49ff3a1de2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4799.yml @@ -0,0 +1,4 @@ +author: "private-tristan" +delete-after: True +changes: + - balance: "predators are no longer immune to molecular acid injected from spitter and boiler tailstabs" \ No newline at end of file diff --git a/html/changelogs/archive/2023-10.yml b/html/changelogs/archive/2023-10.yml index 1afc45c37a..49bc7a7401 100644 --- a/html/changelogs/archive/2023-10.yml +++ b/html/changelogs/archive/2023-10.yml @@ -407,3 +407,24 @@ - code_imp: Renames the announce var in ERT procs to be more indicative of what it does. - rscadd: Added a setting on custom ERTs for announcing beacon was received. +2023-10-29: + Segrain: + - bugfix: Incendiary OB once again spreads to intended size. + fira: + - bugfix: Sprite-click shots onto Xenos are no longer affected by limb-targeting + penalty, because it was an accuracy debuff when there is no inherent benefit + to targeting Xeno limbs. + realforest2001: + - imageadd: Added sprites for provost senior and marshal uniforms. + - spellcheck: Gave unique names to the provost armour subtypes. + - balance: Prevented most provost armour from being able to fit inside bags. + - balance: Returned provost armour to the same slowdowns as MP armour. + - code_imp: Removed a lot of duplicate code in Provost presets and uniform/suits. +2023-10-31: + SASoperative: + - bugfix: Fixed sprite issue by disabling camo variant for donator item + fira: + - bugfix: Fixed Limbs and Organs deleting incorrectly on species change. + mullenpaul: + - refactor: reworked trijent elevators to be reusable on new maps + - maptweak: Trijent map now has two elevators, lz1 to engineering and lz2 to omega diff --git a/html/changelogs/archive/2023-11.yml b/html/changelogs/archive/2023-11.yml new file mode 100644 index 0000000000..1abcfaba81 --- /dev/null +++ b/html/changelogs/archive/2023-11.yml @@ -0,0 +1,4 @@ +2023-11-01: + HeresKozmos: + - rscadd: added flashlight, donk pocket box, interview table, folder, taperecorder, + ink toner, extra lights and expanded the size of the CC's room. diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi index 624d8792cf..a911171f85 100644 Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index 873c325a56..7a2dcce20c 100644 Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi index d05d7ffdf7..fb655de1ea 100644 Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index 4266db88af..765f9deae1 100644 Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index d7a3cd48f8..9473863bf8 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -1684,19 +1684,6 @@ icon_state = "bright_clean2" }, /area/desert_dam/building/administration/control_room) -"afr" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) "afs" = ( /obj/structure/window/reinforced/tinted{ dir = 8 @@ -1890,13 +1877,6 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"afY" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "afZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -3652,13 +3632,6 @@ icon_state = "darkpurple2" }, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alg" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) "alh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -3694,13 +3667,6 @@ icon_state = "warnplate" }, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"alm" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aln" = ( /turf/open/floor/prison{ dir = 4; @@ -5747,13 +5713,6 @@ icon_state = "cement15" }, /area/desert_dam/interior/dam_interior/west_tunnel) -"ark" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arl" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -7134,14 +7093,6 @@ icon_state = "cement13" }, /area/desert_dam/interior/dam_interior/west_tunnel) -"avn" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "avo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ @@ -7153,10 +7104,6 @@ icon_state = "red" }, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"avp" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) "avq" = ( /turf/open/floor/prison{ icon_state = "red" @@ -7215,12 +7162,6 @@ icon_state = "white" }, /area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avA" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "avB" = ( /obj/structure/machinery/autolathe, /turf/open/floor/prison{ @@ -7919,13 +7860,6 @@ icon_state = "red" }, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axB" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "axC" = ( /turf/open/desert/dirt{ dir = 8; @@ -8073,12 +8007,6 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/office) -"ayb" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayd" = ( /obj/structure/showcase{ icon_state = "mechfab1" @@ -8228,13 +8156,6 @@ "ayD" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/exterior/valley/valley_wilderness) -"ayE" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "ayF" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/guestpass, @@ -8243,15 +8164,6 @@ icon_state = "blue" }, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/handset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "ayH" = ( /turf/open/desert/rock/deep{ icon_state = "rock3" @@ -8412,12 +8324,6 @@ icon_state = "blue" }, /area/desert_dam/building/administration/control_room) -"azg" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "azh" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -9407,12 +9313,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aCq" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "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) @@ -9666,11 +9566,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDk" = ( /obj/item/stack/sheet/wood{ amount = 50 @@ -10083,21 +9978,6 @@ icon_state = "cell_stripe" }, /area/shuttle/trijent_shuttle/omega) -"aEu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/exterior/valley/valley_medical) "aEv" = ( /obj/structure/stairs{ dir = 1 @@ -12790,13 +12670,6 @@ name = "reinforced metal wall" }, /area/desert_dam/building/substation/northeast) -"aMA" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) "aMB" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -12909,13 +12782,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) "aMR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/conveyor_switch{ @@ -14363,10 +14229,6 @@ /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"aRB" = ( -/obj/docking_port/stationary/trijent_elevator/lz2, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) "aRC" = ( /turf/open/floor{ dir = 8; @@ -14508,13 +14370,6 @@ icon_state = "7,1" }, /area/desert_dam/building/water_treatment_two) -"aRX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) "aRZ" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached14" @@ -14553,14 +14408,6 @@ icon_state = "darkyellowcorners2" }, /area/desert_dam/building/substation/northwest) -"aSf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) "aSg" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached19" @@ -14680,20 +14527,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"aSz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aSC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 1 @@ -15585,10 +15418,6 @@ "aVI" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/control_room) -"aVJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) "aVK" = ( /obj/structure/machinery/light{ dir = 1 @@ -15608,10 +15437,6 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/marshals_office) -"aVN" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) "aVO" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, @@ -16018,13 +15843,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"aXf" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) "aXg" = ( /obj/structure/machinery/light{ dir = 8 @@ -16221,10 +16039,6 @@ "aXM" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"aXN" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) "aXO" = ( /obj/structure/machinery/vending/cola, /turf/open/floor{ @@ -16284,19 +16098,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aXX" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) "aXY" = ( /turf/open/desert/dirt{ icon_state = "desert_transition_corner1" }, /area/desert_dam/exterior/valley/valley_wilderness) -"aXZ" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) "aYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -17043,20 +16849,6 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/valley_telecoms) -"bap" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"baq" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) "bar" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -17443,16 +17235,6 @@ dir = 5 }, /area/desert_dam/interior/dam_interior/central_tunnel) -"bby" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) "bbz" = ( /turf/open/desert/dirt{ dir = 8; @@ -18021,10 +17803,6 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_northwest) -"bdB" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) "bdC" = ( /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) @@ -18139,10 +17917,6 @@ icon_state = "bright_clean" }, /area/desert_dam/building/water_treatment_two/hallway) -"bdT" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) "bdU" = ( /obj/structure/machinery/light{ dir = 4 @@ -18649,10 +18423,6 @@ "bfz" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) -"bfA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) "bfB" = ( /obj/structure/stairs, /obj/structure/platform{ @@ -20215,13 +19985,6 @@ icon_state = "red" }, /area/desert_dam/building/water_treatment_two/lobby) -"bkO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) "bkP" = ( /turf/open/desert/dirt{ dir = 9; @@ -20566,18 +20329,6 @@ icon_state = "floor_plate" }, /area/desert_dam/building/security/lobby) -"blX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) "blY" = ( /turf/open/floor/prison{ dir = 4; @@ -20589,13 +20340,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/tech_storage) -"bma" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bmb" = ( /turf/open/floor/prison{ dir = 4; @@ -21006,13 +20750,6 @@ icon_state = "blue" }, /area/desert_dam/interior/dam_interior/tech_storage) -"bnm" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bnp" = ( /obj/structure/machinery/light{ dir = 1 @@ -21808,20 +21545,6 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/landing_pad_one) -"bpR" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_main) "bpS" = ( /obj/structure/filtration/coagulation_arm, /obj/effect/blocker/toxic_water, @@ -22236,12 +21959,6 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_mining) -"brm" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) "brn" = ( /turf/open/floor/prison{ dir = 1; @@ -22763,10 +22480,6 @@ icon_state = "bright_clean" }, /area/desert_dam/building/security/southern_hallway) -"bsR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) "bsS" = ( /turf/open/floor/prison{ dir = 8; @@ -22886,16 +22599,6 @@ icon_state = "darkbrown2" }, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btx" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bty" = ( /turf/closed/wall/r_wall, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) @@ -23061,10 +22764,6 @@ icon_state = "darkred2" }, /area/desert_dam/building/security/southern_hallway) -"bua" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) "bub" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23112,12 +22811,6 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/valley_mining) -"bui" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/staffroom) "buj" = ( /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) @@ -23514,12 +23207,6 @@ name = "reinforced metal wall" }, /area/desert_dam/building/warehouse/warehouse) -"bvB" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "bvD" = ( /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) @@ -24136,6 +23823,16 @@ icon_state = "darkyellowcorners2" }, /area/desert_dam/interior/dam_interior/smes_main) +"bxC" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "bxD" = ( /turf/open/floor{ dir = 8; @@ -27100,25 +26797,6 @@ icon_state = "greencorner" }, /area/desert_dam/interior/dam_interior/atmos_storage) -"bHB" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) "bHD" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 @@ -27253,23 +26931,6 @@ icon_state = "darkyellow2" }, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bIb" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bIc" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bId" = ( /turf/open/floor/prison{ dir = 4; @@ -27617,13 +27278,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/hanger) -"bJv" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "bJx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28177,13 +27831,6 @@ icon_state = "whiteyellow" }, /area/desert_dam/interior/dam_interior/lobby) -"bLu" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) "bLv" = ( /obj/structure/surface/table, /turf/open/floor{ @@ -28357,15 +28004,6 @@ icon_state = "sterile_white" }, /area/desert_dam/interior/dam_interior/workshop) -"bMa" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) "bMb" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -29430,15 +29068,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bPI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) "bPJ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -29504,18 +29133,6 @@ icon_state = "sterile_white" }, /area/desert_dam/interior/dam_interior/workshop) -"bPT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bPU" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) "bPV" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -29526,14 +29143,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bPW" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/briefcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/desert_dam/building/administration/overseer_office) "bPX" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -29709,15 +29318,6 @@ icon_state = "darkredcorners2" }, /area/desert_dam/building/security/prison) -"bQw" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, -/area/desert_dam/building/security/armory) "bQy" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -32786,10 +32386,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) -"bZR" = ( -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) "bZS" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -33726,12 +33322,6 @@ icon_state = "whiteyellow" }, /area/desert_dam/interior/dam_interior/break_room) -"ccE" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) "ccF" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, @@ -34045,18 +33635,6 @@ icon_state = "freezerfloor" }, /area/desert_dam/building/security/prison) -"cdH" = ( -/obj/structure/closet/secure_closet/injection, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) "cdJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" @@ -34157,14 +33735,6 @@ dir = 6 }, /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, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "cdZ" = ( /obj/structure/surface/table/woodentable, /turf/open/floor{ @@ -35445,16 +35015,6 @@ }, /turf/open/floor/plating, /area/desert_dam/building/substation/west) -"ciI" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) "ciK" = ( /obj/structure/sink{ dir = 4; @@ -35638,14 +35198,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/west_wing_hallway) -"cju" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) "cjv" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/morgue) @@ -35981,13 +35533,6 @@ icon_state = "dirt2" }, /area/desert_dam/exterior/river/riverside_south) -"cky" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) "ckA" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -36432,15 +35977,6 @@ icon_state = "whitegreen" }, /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, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) "clP" = ( /obj/structure/machinery/optable, /turf/open/floor/prison{ @@ -37521,12 +37057,6 @@ icon_state = "whitepurplecorner" }, /area/desert_dam/building/medical/chemistry) -"cpD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) "cpE" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, @@ -38458,17 +37988,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"csN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "csO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39256,10 +38775,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/east_wing_hallway) -"cvh" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) "cvi" = ( /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) @@ -39368,14 +38883,6 @@ icon_state = "darkyellow2" }, /area/desert_dam/building/substation/west) -"cvC" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) "cvD" = ( /obj/structure/stairs, /obj/structure/platform{ @@ -39723,16 +39230,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/lobby) -"cwI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) "cwJ" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -40274,17 +39771,6 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/surgery_room_one) -"cyj" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/surgery_room_one) "cyk" = ( /turf/closed/wall, /area/desert_dam/building/medical/surgery_room_one) @@ -40310,17 +39796,6 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/surgery_room_two) -"cyo" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/surgery_room_two) "cyp" = ( /turf/closed/wall, /area/desert_dam/building/medical/surgery_room_two) @@ -40335,13 +39810,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"cys" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) "cyt" = ( /obj/structure/largecrate/random, /turf/open/floor{ @@ -41017,13 +40485,6 @@ "cAB" = ( /turf/closed/wall, /area/desert_dam/building/medical/office1) -"cAC" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office2) "cAD" = ( /obj/structure/machinery/computer/med_data, /turf/open/floor/prison{ @@ -41031,13 +40492,6 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/office1) -"cAE" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office1) "cAF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -41049,22 +40503,6 @@ "cAG" = ( /turf/closed/wall, /area/desert_dam/building/medical/office2) -"cAH" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) "cAI" = ( /obj/structure/machinery/computer/med_data, /turf/open/floor/prison{ @@ -42126,14 +41564,6 @@ dir = 9 }, /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, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/CE_office) "cDU" = ( /obj/structure/bed/chair{ dir = 8 @@ -43767,13 +43197,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/desert_dam/building/medical/east_wing_hallway) -"cIM" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) "cIN" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/prison{ @@ -44266,18 +43689,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"cKt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) "cKu" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -44552,16 +43963,6 @@ icon_state = "whitegreenfull" }, /area/desert_dam/building/medical/virology_wing) -"cLr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/virology_wing) "cLs" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ @@ -45948,10 +45349,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cQd" = ( -/obj/item/trash/cheesie, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) "cQe" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -45995,14 +45392,6 @@ }, /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) -"cQl" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQm" = ( /turf/open/asphalt{ icon_state = "tile" @@ -47631,6 +47020,25 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_civilian) +"cWK" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison{ + dir = 4; + icon_state = "green" + }, +/area/desert_dam/interior/dam_interior/atmos_storage) "cWN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -48934,16 +48342,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"dcV" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) "dcW" = ( /obj/structure/closet/crate/hydroponics/prespawned, /turf/open/floor{ @@ -49438,12 +48836,6 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/cafeteria) -"deH" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "deI" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison{ @@ -49799,13 +49191,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) -"dfU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) "dga" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49922,13 +49307,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/warehouse/loading) -"dgt" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) "dgu" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -50153,6 +49531,22 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/purification) +"dhL" = ( +/obj/structure/machinery/power/apc{ + dir = 4; + pixel_x = 28; + start_charge = 0 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/desert_dam/building/medical/emergency_room) "dhT" = ( /obj/effect/decal/sand_overlay/sand2, /obj/effect/decal/cleanable/dirt, @@ -51305,13 +50699,6 @@ icon_state = "dark2" }, /area/desert_dam/building/water_treatment_one/lobby) -"dsa" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_one/lobby) "dsb" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -51359,6 +50746,14 @@ dir = 1 }, /area/desert_dam/exterior/river/riverside_central_south) +"dsl" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "grimy" + }, +/area/desert_dam/building/bar/bar) "dsA" = ( /turf/open/floor/prison{ dir = 8; @@ -52139,6 +51534,12 @@ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/breakroom) +"dye" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/interior/dam_interior/workshop) "dyi" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -52196,16 +51597,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dyt" = ( -/obj/structure/closet/lasertag/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) "dyS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, @@ -52314,12 +51705,6 @@ icon_state = "freezerfloor" }, /area/desert_dam/building/water_treatment_one/equipment) -"dzj" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/equipment) "dzk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -52909,11 +52294,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) -"dCw" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) "dCy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -53847,15 +53227,6 @@ icon_state = "sterile_white" }, /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, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) "dHt" = ( /turf/open/floor/coagulation{ icon_state = "1,1" @@ -54227,19 +53598,6 @@ icon_state = "blue" }, /area/desert_dam/building/dorms/pool) -"dIP" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) "dIQ" = ( /obj/item/clothing/under/shorts/red, /obj/structure/surface/rack, @@ -58671,6 +58029,17 @@ icon_state = "bright_clean2" }, /area/desert_dam/building/dorms/restroom) +"dYU" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitered" + }, +/area/desert_dam/building/medical/surgery_room_one) "dYX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -58790,12 +58159,6 @@ icon_state = "wood" }, /area/desert_dam/building/dorms/hallway_westwing) -"dZT" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) "dZU" = ( /obj/structure/surface/table, /turf/open/floor/prison{ @@ -59084,12 +58447,6 @@ icon_state = "red" }, /area/desert_dam/building/water_treatment_one/lobby) -"ebv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) "ebx" = ( /obj/structure/machinery/light{ dir = 1 @@ -59577,6 +58934,13 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"edE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" + }, +/area/desert_dam/building/medical/virology_wing) "edJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Water Treatment Foyer" @@ -60130,6 +59494,17 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) +"ejB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"ejL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 5; + icon_state = "red" + }, +/area/desert_dam/building/water_treatment_one/lobby) "ejR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -60243,6 +59618,13 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"eJp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "bright_clean2" + }, +/area/desert_dam/building/warehouse/warehouse) "eKN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -60250,6 +59632,13 @@ icon_state = "cell_stripe" }, /area/desert_dam/interior/dam_interior/hanger) +"eLk" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkpurple2" + }, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) "eNU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison{ @@ -60289,6 +59678,16 @@ icon_state = "green" }, /area/desert_dam/building/dorms/hallway_northwing) +"eXc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkbrown2" + }, +/area/desert_dam/building/mining/workshop_foyer) "eXM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -60356,6 +59755,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"feh" = ( +/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" + }, +/area/desert_dam/building/warehouse/loading) "feU" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached15" @@ -60398,6 +59807,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"foO" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor{ + icon_state = "wood" + }, +/area/desert_dam/building/dorms/hallway_westwing) "fpu" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached9" @@ -60443,6 +59858,15 @@ icon_state = "wood" }, /area/desert_dam/building/dorms/hallway_westwing) +"ftR" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/interior/dam_interior/workshop) "fxs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -60455,6 +59879,13 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"fyI" = ( +/obj/structure/surface/table, +/turf/open/floor/prison{ + dir = 1; + icon_state = "red" + }, +/area/desert_dam/building/water_treatment_one/lobby) "fyO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison{ @@ -60568,6 +59999,20 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/cafeteria) +"fTF" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/desert_dam/building/administration/archives) +"fUu" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/obj/structure/machinery/light, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/desert_dam/building/substation/west) "fUO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -60683,6 +60128,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) +"glU" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) "gmZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "warehouse_dam_3"; @@ -60721,6 +60170,13 @@ /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"gps" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitered" + }, +/area/desert_dam/building/medical/office1) "gpZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/desert/rock/deep{ @@ -60792,6 +60248,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"gDT" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz2"; + name = "Lz2 Elevator"; + airlock_area = /area/shuttle/trijent_shuttle/lz2; + elevator_network = "B"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/B + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) "gEj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -60799,6 +60265,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"gEp" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whiteyellow" + }, +/area/desert_dam/interior/dam_interior/break_room) "gFr" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement_sunbleached{ @@ -60808,6 +60280,15 @@ "gGC" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) +"gIQ" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison{ + dir = 8; + icon_state = "sterile_white" + }, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) "gIS" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -60965,13 +60446,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) -"het" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_one/lobby) "heR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -61048,6 +60522,12 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"hsx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) "hvG" = ( /turf/open/desert/dirt{ dir = 4; @@ -61133,6 +60613,18 @@ }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) +"hGn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"hHz" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"hIy" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) "hIO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -61203,10 +60695,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"hWz" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) "ibg" = ( /obj/structure/machinery/light{ dir = 4 @@ -61239,6 +60727,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"ict" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) "icM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -61288,10 +60781,18 @@ "ioA" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/temple) -"ipQ" = ( -/obj/docking_port/stationary/trijent_elevator/omega, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) +"ioO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/desert_dam/building/medical/treatment_room) "iqs" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/liquidfood, @@ -61407,6 +60908,13 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_wilderness) +"iHo" = ( +/obj/structure/filingcabinet, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/desert_dam/building/administration/lobby) "iNg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; @@ -61433,6 +60941,13 @@ icon_state = "cement_sunbleached15" }, /area/desert_dam/exterior/valley/valley_hydro) +"iRs" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkpurple2" + }, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "iRU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -61548,6 +61063,21 @@ icon_state = "bright_clean" }, /area/desert_dam/building/mining/workshop) +"juT" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/desert_dam/interior/dam_interior/garage) "jvZ" = ( /obj/structure/platform{ dir = 1 @@ -61575,6 +61105,20 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_crashsite) +"jyu" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz1"; + name = "Lz1 Elevator"; + elevator_network = "A"; + airlock_area = /area/shuttle/trijent_shuttle/lz1; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/A + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"jAk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) "jAS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached{ @@ -61613,6 +61157,23 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_telecoms) +"jMe" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/smes_backup) +"jMG" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_engineering"; + name = "Engineering Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/engi; + elevator_network = "A" + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) "jMT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -61631,6 +61192,22 @@ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_hydro) +"jPl" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_marked" + }, +/area/desert_dam/building/security/armory) +"jQS" = ( +/obj/structure/closet, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitered" + }, +/area/desert_dam/building/medical/office2) "jSS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -61645,6 +61222,13 @@ icon_state = "floor_plate" }, /area/desert_dam/interior/dam_interior/hanger) +"jTZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 6; + icon_state = "red" + }, +/area/desert_dam/building/water_treatment_two/lobby) "jVa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -61665,6 +61249,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"jWV" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) "jXv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -61801,6 +61389,12 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"kIB" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/desert_dam/building/water_treatment_one/equipment) "kIP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, @@ -61991,6 +61585,12 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"lsn" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whiteyellow" + }, +/area/desert_dam/building/water_treatment_one/breakroom) "ltE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -62029,6 +61629,12 @@ icon_state = "floor_marked" }, /area/desert_dam/building/cafeteria/loading) +"lDf" = ( +/obj/structure/surface/table, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "lDT" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -62167,15 +61773,6 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/valley_labs) -"mej" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ - pixel_x = 32 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) "meN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -62205,12 +61802,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"mhU" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) "mkd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -62282,6 +61873,10 @@ icon_state = "multi_tiles" }, /area/desert_dam/interior/caves/temple) +"mvZ" = ( +/obj/item/trash/semki, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) "myx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison{ @@ -62366,6 +61961,20 @@ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/telecomm/lz2_storage) +"mIc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" + }, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "mKs" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/valley/valley_telecoms) @@ -62392,6 +62001,18 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/cafeteria) +"mOP" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) "mOS" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, @@ -62487,6 +62108,13 @@ icon_state = "dirt2" }, /area/desert_dam/exterior/valley/valley_crashsite) +"nkj" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/garage) "nlH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -62512,6 +62140,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"nnh" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"nor" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -62519,12 +62155,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"ntt" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, -/area/desert_dam/building/security/armory) "nue" = ( /turf/open/desert/dirt{ dir = 6; @@ -62555,10 +62185,20 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"nAt" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) "nCi" = ( /obj/item/stack/medical/advanced/ointment/predator, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) +"nDM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) "nEM" = ( /turf/closed/wall/hangar{ name = "Elevator Shaft"; @@ -62626,6 +62266,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"nWT" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison{ + dir = 4; + icon_state = "red" + }, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "nXu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -62697,6 +62345,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) +"ogQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ohM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/dam_interior/CE_office) "oit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt{ @@ -62775,6 +62438,36 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"oyp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ + pixel_y = 32; + shuttleId = "trijentshuttle22" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "sterile_white" + }, +/area/desert_dam/exterior/valley/valley_medical) +"oyr" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/smes_main) "ozu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) @@ -62784,6 +62477,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"oAX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "oBR" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, @@ -62857,6 +62555,14 @@ icon_state = "cement_sunbleached15" }, /area/desert_dam/exterior/valley/valley_hydro) +"oUk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/substation/northwest) "oUr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/desert/dirt, @@ -62933,10 +62639,6 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/interior/caves/central_caves) -"pif" = ( -/obj/docking_port/stationary/trijent_elevator/engineering, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) "pij" = ( /turf/open/desert/dirt{ dir = 6; @@ -62951,6 +62653,20 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_xenoflora) +"pmt" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitered" + }, +/area/desert_dam/building/medical/chemistry) +"pnx" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/garage) "poi" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -62969,13 +62685,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"ppS" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) "puM" = ( /obj/structure/machinery/light{ dir = 1 @@ -63012,6 +62721,12 @@ icon_state = "darkyellow2" }, /area/desert_dam/building/mining/workshop) +"pwI" = ( +/obj/structure/filingcabinet, +/turf/open/floor{ + icon_state = "dark" + }, +/area/desert_dam/interior/dam_interior/office) "pyP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -63139,6 +62854,19 @@ icon_state = "cement_sunbleached3" }, /area/desert_dam/exterior/valley/valley_civilian) +"pPu" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkred2" + }, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"pRy" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/desert_dam/building/security/staffroom) "pSM" = ( /obj/effect/landmark/nightmare{ insert_tag = "purple-new-bridge" @@ -63183,6 +62911,19 @@ icon_state = "cement_sunbleached14" }, /area/desert_dam/exterior/valley/valley_crashsite) +"qaH" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/desert_dam/building/dorms/pool) "qbC" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -63198,6 +62939,20 @@ /obj/structure/flora/bush/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"qgK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 4; + icon_state = "red" + }, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"qiG" = ( +/obj/structure/surface/table, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/desert_dam/building/medical/virology_isolation) "qjg" = ( /turf/open/desert/rock/deep/transition{ dir = 6 @@ -63269,6 +63024,20 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_labs) +"quS" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison{ + dir = 10; + icon_state = "red" + }, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"qwO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor{ + icon_state = "dark" + }, +/area/desert_dam/interior/dam_interior/office) "qwZ" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, @@ -63328,6 +63097,17 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/south_valley_dam) +"qEl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "qEJ" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -63339,16 +63119,23 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"qHt" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) "qHF" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"qHW" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "redcorner" + }, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"qIu" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison{ + dir = 6; + icon_state = "red" + }, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "qJI" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -63439,12 +63226,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"qYC" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) "ray" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/desertdam/decals/road_edge{ @@ -63514,6 +63295,13 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"rnV" = ( +/obj/structure/surface/table, +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/substation/northeast) "rob" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -63561,10 +63349,6 @@ }, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) -"rxS" = ( -/obj/docking_port/stationary/trijent_elevator/lz1, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) "ryG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison{ @@ -63596,6 +63380,16 @@ icon_state = "darkyellow2" }, /area/desert_dam/building/mining/workshop) +"rBL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean2" + }, +/area/desert_dam/building/medical/lobby) "rBP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -63613,12 +63407,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"rEH" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) "rFi" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz2) @@ -63672,6 +63460,18 @@ icon_state = "warning" }, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rNO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/desert_dam/building/security/lobby) "rPp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -63781,21 +63581,6 @@ dir = 10 }, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"ser" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/garage) "sfK" = ( /turf/open/floor{ icon_state = "white" @@ -63806,6 +63591,15 @@ icon_state = "cement_sunbleached15" }, /area/desert_dam/exterior/valley/south_valley_dam) +"shZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/handset, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "sia" = ( /turf/open/desert/dirt{ icon_state = "desert_transition_corner1" @@ -63871,6 +63665,12 @@ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_crashsite) +"srU" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "wood" + }, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ssy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -63911,6 +63711,19 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_hydro) +"sBw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"sCf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/desert_dam/building/security/prison) "sDf" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison{ @@ -64004,6 +63817,12 @@ "sUr" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"sVj" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "sWS" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -64087,6 +63906,16 @@ }, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) +"tfA" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_omega"; + name = "Omega Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/omega; + elevator_network = "B" + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) "thd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -64104,6 +63933,13 @@ /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) +"tjz" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkred2" + }, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "tjX" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -64130,6 +63966,29 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"tos" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/desert_dam/building/administration/lobby) +"tpV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/desert_dam/building/medical/virology_wing) +"trt" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor{ + icon_state = "wood" + }, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "trP" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, @@ -64152,6 +64011,10 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) +"tvi" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) "tyc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -64282,12 +64145,26 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"tWm" = ( +/obj/item/trash/cheesie, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) "tXS" = ( /turf/open/desert/dirt{ dir = 1; icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"tYH" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkbrown2" + }, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "tZQ" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/rock) @@ -64369,6 +64246,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"uqu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "bright_clean2" + }, +/area/desert_dam/building/administration/control_room) "uso" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -64447,6 +64337,13 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/temple) +"uLl" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkred2" + }, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "uLr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64514,6 +64411,12 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) +"uUB" = ( +/obj/structure/filingcabinet, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/desert_dam/building/administration/archives) "uVm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached{ @@ -64582,6 +64485,12 @@ /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"vlZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/desert_dam/building/security/evidence) "vnf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -64650,12 +64559,23 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"vwv" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "vxt" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor{ icon_state = "freezerfloor" }, /area/desert_dam/building/water_treatment_one/breakroom) +"vzd" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) "vzj" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached18" @@ -64744,6 +64664,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"vLa" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/prison{ + icon_state = "floor_marked" + }, +/area/desert_dam/building/security/armory) "vLd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -64755,6 +64681,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/shuttle/plating, /area/desert_dam/interior/dam_interior/hanger) +"vLS" = ( +/obj/structure/surface/table, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) "vMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -64880,10 +64812,30 @@ icon_state = "floor_marked" }, /area/desert_dam/building/cafeteria/loading) +"wla" = ( +/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" + }, +/area/desert_dam/building/substation/southwest) "woy" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) +"wpS" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitered" + }, +/area/desert_dam/building/medical/surgery_room_two) "wpW" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, @@ -64931,6 +64883,26 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wvL" = ( +/obj/structure/closet/lasertag/blue, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/desert_dam/building/dorms/pool) +"wxV" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "vault" + }, +/area/desert_dam/building/hydroponics/hydroponics_storage) "wya" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -64957,6 +64929,16 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"wzC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/desert_dam/building/substation/west) "wAP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -65004,6 +64986,13 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) +"wOY" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/desert_dam/building/warehouse/loading) "wPb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -65053,6 +65042,13 @@ icon_state = "cement_sunbleached2" }, /area/desert_dam/exterior/valley/valley_hydro) +"wSB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/desert_dam/interior/dam_interior/primary_tool_storage) "wTP" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/phoron{ @@ -65237,6 +65233,13 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_northwest) +"xrF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/desert_dam/building/warehouse/warehouse) "xss" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -65277,6 +65280,12 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_telecoms) +"xwq" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor{ + icon_state = "whitepurplecorner" + }, +/area/desert_dam/building/medical/chemistry) "xxv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -65292,6 +65301,13 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/telecomm/lz1_valley) +"xyt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) "xzc" = ( /obj/structure/surface/table, /turf/open/floor{ @@ -65358,12 +65374,6 @@ "xIC" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) -"xJG" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) "xKx" = ( /obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/dirt, @@ -65385,6 +65395,14 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) +"xNc" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/desert_dam/interior/dam_interior/lobby) "xNB" = ( /obj/structure/machinery/floodlight/landing, /obj/structure/machinery/landinglight/ds1{ @@ -65408,15 +65426,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"xRf" = ( -/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" +"xQX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/briefcase, +/turf/open/floor{ + dir = 8; + icon_state = "carpet13-5" }, -/area/desert_dam/building/substation/southwest) +/area/desert_dam/building/administration/overseer_office) "xTH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -65461,6 +65478,15 @@ dir = 8 }, /area/desert_dam/exterior/valley/valley_telecoms) +"yaK" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison{ + dir = 8; + icon_state = "sterile_white" + }, +/area/desert_dam/building/medical/morgue) "ybA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -67829,7 +67855,7 @@ cmm cte ctB cuA -cvC +fUu cgm cgm cgm @@ -68052,7 +68078,7 @@ dTs cgm cic cic -ciI +wzC cgm cku cml @@ -71015,7 +71041,7 @@ bzi bzi bMw bLW -mhU +dye bLW bNZ bLW @@ -71497,8 +71523,8 @@ bVb bLU dTs arF -aRX -aXf +pnx +nkj ylT glz iCw @@ -71966,7 +71992,7 @@ bLU dTs dTs arF -ser +juT ixe scv scv @@ -72418,7 +72444,7 @@ bSg bJf bKp byo -bMa +ftR bLW bLW bLW @@ -73161,7 +73187,7 @@ aSU aVp bdz bjj -blX +rNO bnF bpi bqn @@ -73412,7 +73438,7 @@ bGE bIW bNE bNF -bPI +sCf bNF bNE bNF @@ -73636,7 +73662,7 @@ bqx bom bsm aWK -brm +vlZ bpN bBb bDE @@ -73839,7 +73865,7 @@ bLW bXS bYy bYY -bZR +mvZ ccy cbe cbO @@ -74166,7 +74192,7 @@ dTs dTs dTs bvA -cky +xrF cmS cnV cmS @@ -74763,7 +74789,7 @@ bzB bKr bEr bOR -bPT +qwO bQZ bRU bOR @@ -74795,9 +74821,9 @@ chG ceA ceA aVB -aXN +vzd aZL -bdT +jWV bjR aXM aVB @@ -74886,7 +74912,7 @@ cYG dbe ddL deW -aMQ +eJp aNo aNK bvA @@ -74997,7 +75023,7 @@ bHS bKr bEp bRk -bPU +pwI bRX bRV bRk @@ -75497,7 +75523,7 @@ chG ceA bnv aVM -aXX +hHz aZM beo bjS @@ -75731,7 +75757,7 @@ chG ceA ceA aVM -aXZ +nnh aZM bes bkG @@ -77303,7 +77329,7 @@ fmP fmP fmP fmP -rxS +jyu lcj dTs dTs @@ -77722,7 +77748,7 @@ aOc aOc aRg aRE -aSf +oUk bFq aTh aOc @@ -77736,7 +77762,7 @@ aWl aWl aex aYL -afr +uqu bdE bdE aYv @@ -78327,7 +78353,7 @@ bHI bJI bJP bNw -bQw +jPl bSx bRF bYq @@ -78561,7 +78587,7 @@ bHJ bJI bJS bNw -ntt +vLa bSx bRF bRF @@ -78795,7 +78821,7 @@ bHK bJI bJS bNw -ntt +vLa bSx bRF bYr @@ -79039,7 +79065,7 @@ bNw bZw bZw bZw -cdH +mOP bZJ bZJ bZw @@ -79133,7 +79159,7 @@ dTs dTs dTs aVm -aVJ +tvi aWq aWq aWq @@ -79889,7 +79915,7 @@ bpB bqL brN blZ -btx +tYH boB boB bxn @@ -80069,7 +80095,7 @@ dTs dTs dTs aVm -aVN +sBw aWq aWq aWq @@ -80161,7 +80187,7 @@ dCD dKl cbk cbW -ccE +gEp bTt mAZ bGn @@ -80190,7 +80216,7 @@ dTs dTs dTs aNH -bui +pRy bvT byQ byQ @@ -80781,7 +80807,7 @@ brK bsE aZb aZP -bap +iHo dJN aZT bbi @@ -80850,7 +80876,7 @@ bRy bQe cCQ hmA -cDT +ohM cGA bRy bOY @@ -81015,7 +81041,7 @@ aYG bsL btJ aZP -baq +tos dJP dJY bbj @@ -81184,7 +81210,7 @@ drO czv cPG boP -bsR +nDM buc cmG cnq @@ -81418,7 +81444,7 @@ drT cDc cPG boP -bua +glU buc cmL cnu @@ -81446,7 +81472,7 @@ cZx cZx cZx cZx -mej +feh cZx cXa cXa @@ -81473,7 +81499,7 @@ dTs dTs dTs aVm -aVN +sBw aWq aWq aXs @@ -81675,7 +81701,7 @@ cIq cVU dfK cIq -dgt +wOY cIq dfK cZB @@ -81727,7 +81753,7 @@ buM buM bcq bdf -bdB +ejB bdC bdC beE @@ -81920,7 +81946,7 @@ rFi rFi rFi rFi -aRB +gDT nEM acu "} @@ -81985,10 +82011,10 @@ rTV dTs bkU bkU -bma +pPu bmr bmr -bnm +uLl bnX bkU avt @@ -82199,7 +82225,7 @@ bAE bdZ duZ byp -bPW +xQX bdC bfy bdg @@ -82435,7 +82461,7 @@ dKc beH bfa bdC -hWz +jAk bdg bgg aoG @@ -82669,7 +82695,7 @@ bBl beI bdC bdC -bfA +hGn bdf bgg aoG @@ -82688,7 +82714,7 @@ asq bkU blC bmd -aSz +mIc bkU bUQ bkU @@ -83120,7 +83146,7 @@ aYs aYr aYr aZC -qYC +uUB aZY aZY aZY @@ -83825,7 +83851,7 @@ aZC aZZ bav aZY -qHt +fTF aZC aYm bpz @@ -83880,11 +83906,11 @@ bDc cbl cbU bPx -bIb +wSB ckL ciT cqI -csN +qEl ciT ckL cwT @@ -84059,7 +84085,7 @@ aZC baa baw aZY -qHt +fTF aZC buZ brK @@ -84114,7 +84140,7 @@ bFQ cbl cbU bPx -bIb +wSB bJm ciT ciT @@ -84155,7 +84181,7 @@ adw ahW aYh ccI -cdY +dsl ceM chK cmp @@ -84290,7 +84316,7 @@ aeM akt dTs aZC -qYC +uUB aZY aZY aZY @@ -84348,7 +84374,7 @@ bWc cbm cbU bGX -bIc +bxC ckL bHa ciT @@ -84524,7 +84550,7 @@ aeM dTs dTs aZC -qYC +uUB aZY aZY aZY @@ -84629,7 +84655,7 @@ cgy cij cxg cFN -cQd +tWm cij cxi cQT @@ -84758,7 +84784,7 @@ aeM aez akv aZC -qYC +uUB aZY aZY aZY @@ -84992,7 +85018,7 @@ aeM anE aez aZC -qYC +uUB bax baH baV @@ -86005,7 +86031,7 @@ aEa aEa aCI aCV -aDi +oAX aCJ aEa aDw @@ -87390,7 +87416,7 @@ bYA caF ctv bPv -cju +xNc ckW bJq vhs @@ -87461,7 +87487,7 @@ cSr cSg cSr cSr -aCq +qHW cqn cOH cOH @@ -87690,11 +87716,11 @@ vzw vzw aHf cqn -cQl +nWT cRV cRV cSs -afY +qgK cSK dMV cOH @@ -88165,7 +88191,7 @@ dTs dTs dTs dMV -xRf +wla cRi cRi cRi @@ -88453,7 +88479,7 @@ dzb dWE dWE dWN -rEH +lsn dyb dDZ dyb @@ -89965,7 +89991,7 @@ bEJ bFV bHm bIm -bJv +jMe dwW dwX bMn @@ -90181,7 +90207,7 @@ bib bib bod btc -bpR +oyr bqZ bqZ bsH @@ -90780,7 +90806,7 @@ kJP fCB hOK die -het +fyI dqV dqV dqm @@ -90789,7 +90815,7 @@ dWa ecm dus doH -dzj +kIB dzg dzg bgq @@ -90997,7 +91023,7 @@ daK ddT dex dex -dfU +ogQ grQ dWj daK @@ -91014,7 +91040,7 @@ doi hxj dpA dqm -dsa +ejL ebu dsO dqm @@ -91257,7 +91283,7 @@ dVI ect dqo dpB -dzj +kIB dzg dzg bgq @@ -92185,7 +92211,7 @@ dNS dpB dqo cgp -ebv +hsx dqo dOe dVP @@ -93086,7 +93112,7 @@ dTs cPL cPL cTL -dHs +gIQ hOA cPL cPL @@ -93508,7 +93534,7 @@ vHQ vHQ vHQ vHQ -ipQ +tfA aDT dTs cft @@ -93801,7 +93827,7 @@ dNS dNS dNS dck -dcV +wxV dcW dcW dfe @@ -94583,7 +94609,7 @@ asA asB aet aeX -avn +quS aow dTs dTs @@ -95376,7 +95402,7 @@ dTs dTs dTs aDT -aEu +oyp chY ceX caH @@ -98091,7 +98117,7 @@ arL atQ auj arL -avA +vLS arJ ayK ayX @@ -98606,7 +98632,7 @@ eyL eyL eyL eyL -pif +jMG bfm dTs dTs @@ -98660,7 +98686,7 @@ ciu dnP ceY ciR -bLu +pmt ckB ckB ckB @@ -98805,7 +98831,7 @@ ayh axL ayx aCr -ayE +vwv auq auq azo @@ -99273,9 +99299,9 @@ dTs dTs dTs aCr -ayG +shZ ayV -azg +lDf azo aCr dTs @@ -99557,7 +99583,7 @@ brh bDD bFb azJ -bHB +cWK bIC bDx dTs @@ -99842,7 +99868,7 @@ crE dQc csI cvO -cwI +rBL cxA lib ctQ @@ -100303,7 +100329,7 @@ clI clI dPa coR -cpD +xwq ckD crG dPU @@ -100382,7 +100408,7 @@ dFe dFe dwE dxe -xJG +nAt dWz dWG dWL @@ -101489,7 +101515,7 @@ dQM cBk cCj cDr -cAH +dhL cAK cGe cHa @@ -101730,7 +101756,7 @@ cHb cFn cCg cJB -cKt +ioO cLl cLR cJA @@ -102313,7 +102339,7 @@ avG axW gNq aye -bvB +srU avH ayL ayX @@ -102639,7 +102665,7 @@ ciU cjv cke ckP -clO +yaK cZK jVr coT @@ -102778,7 +102804,7 @@ aCr aqC aqC avG -ayb +trt ayk ayv ayj @@ -103373,7 +103399,7 @@ cKy cJG cMQ cNE -ppS +qiG cOI cMP dTs @@ -103483,7 +103509,7 @@ avG axW ayi pFj -bvB +srU avH ayL ayX @@ -103588,7 +103614,7 @@ cvb cvW cwQ cxE -cyj +dYU erB czH cAr @@ -104182,9 +104208,9 @@ aCr aqC aqC avG -bvB +srU aym -ayb +trt ayz avH ayS @@ -104758,7 +104784,7 @@ cvb cvb cwQ cxE -cyo +wpS czd czJ cAu @@ -106174,7 +106200,7 @@ dRy dRT cGB cHN -cIM +edE cIT cIT cLo @@ -106392,7 +106418,7 @@ bZx dPI csR cue -cvh +nor cvi cwX cvi @@ -107084,7 +107110,7 @@ civ ciW cjG dOr -dCw +ict dOO cmF cjG @@ -107098,7 +107124,7 @@ cvk cwg cvi cvi -cys +xyt czf czN cBx @@ -108108,7 +108134,7 @@ dym dXI dAD dBr -dZT +foO dFf dFf dFf @@ -108371,7 +108397,7 @@ acu afP ajQ akX -alm +iRs alN aiI alI @@ -108505,7 +108531,7 @@ dTs dTs dTs czO -cAE +gps cBC cCA cDz @@ -108723,7 +108749,7 @@ cdw cdw cdw aMz -aMA +rnV aNg aNw aMz @@ -108751,7 +108777,7 @@ cub cIV cIV cHL -cLr +tpV cMb cMb cMb @@ -109909,7 +109935,7 @@ dTs dTs dTs czP -cAC +jQS cBH cCE cDA @@ -111586,7 +111612,7 @@ daO fTk dqs dri -deH +sVj dcw dUt dzD @@ -111862,7 +111888,7 @@ dBy dBy dBy dIk -dIP +qaH dJj ebo dZN @@ -112958,7 +112984,7 @@ bgo bhs bjw bkC -bkO +jTZ bgl bFF bTW @@ -113266,7 +113292,7 @@ dCg dBy dCg dIk -dyt +wvL dIr dCj dJG @@ -113537,7 +113563,7 @@ apn aqe apn aqQ -ark +tjz aqk asm asH @@ -114794,7 +114820,7 @@ dib dMq aoi asO -avp +hIy aNS aNS aNU @@ -116795,7 +116821,7 @@ acu dTs dTs akk -alg +eLk akK akK akK @@ -118865,7 +118891,7 @@ cWV xOb xec aVd -bby +eXc bvw blc blc @@ -118913,7 +118939,7 @@ arq asw avo axy -axB +qIu aas dTs dTs diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index d34d18de84..66c65da735 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -327,12 +327,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"abh" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "abi" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -370,10 +364,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"abs" = ( -/obj/structure/filingcabinet, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) "abt" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras, @@ -382,14 +372,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/gen/bball/nest) -"abu" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "abv" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -487,15 +469,6 @@ icon_state = "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, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "abL" = ( /obj/item/ammo_magazine/rifle/type71, /obj/item/ammo_magazine/rifle/type71, @@ -973,15 +946,6 @@ icon_state = "fake_wood" }, /area/strata/ug/interior/jungle/deep/minehead) -"acT" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "acU" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -1148,12 +1112,6 @@ icon_state = "fake_wood" }, /area/strata/ug/interior/jungle/deep/minehead) -"adx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ady" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -1180,13 +1138,6 @@ icon_state = "floor3" }, /area/strata/ug/interior/jungle/deep/structures/res) -"adB" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) "adC" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, @@ -1304,18 +1255,6 @@ "adQ" = ( /turf/closed/wall/wood, /area/strata/ug/interior) -"adR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "adS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) @@ -1332,13 +1271,6 @@ icon_state = "red1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"adV" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "adW" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, @@ -1633,10 +1565,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"aeV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "aeW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, @@ -2507,12 +2435,6 @@ icon_state = "blue1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ahq" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "ahr" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, @@ -2649,16 +2571,6 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahO" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "ahP" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata{ @@ -3088,12 +3000,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"ajd" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aje" = ( /obj/structure/machinery/washing_machine, /turf/open/floor/strata{ @@ -3169,15 +3075,6 @@ icon_state = "cyan2" }, /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, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "ajp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/jellysandwich, @@ -3530,12 +3427,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/flight_control) -"akp" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "akq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -3674,13 +3565,6 @@ icon_state = "floor3" }, /area/strata/ug/interior/jungle/deep/structures/res) -"akM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "akN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 @@ -3785,14 +3669,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/dorms/canteen) -"alc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) "ald" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -4127,15 +4003,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/canteen/personal_storage) -"amc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "amd" = ( /obj/structure/sink{ dir = 4; @@ -4488,17 +4355,6 @@ icon_state = "red1" }, /area/strata/ag/interior/research_decks/security) -"ans" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "ant" = ( /turf/open/floor/strata{ icon_state = "red1" @@ -4510,21 +4366,6 @@ icon_state = "red1" }, /area/strata/ag/interior/research_decks/security) -"anv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "anw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, @@ -4538,22 +4379,6 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) -"anz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "anA" = ( /obj/structure/machinery/space_heater, /obj/structure/pipes/vents/pump/on, @@ -4561,13 +4386,6 @@ icon_state = "red1" }, /area/strata/ag/interior/research_decks/security) -"anB" = ( -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "anC" = ( /obj/item/device/megaphone, /obj/structure/surface/table/reinforced/prison, @@ -4817,17 +4635,6 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/security) -"aoD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aoE" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 @@ -5065,13 +4872,6 @@ icon_state = "red1" }, /area/strata/ag/interior/research_decks/security) -"apu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "apv" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -5228,13 +5028,6 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"apU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/knife, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) "apV" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata{ @@ -5479,12 +5272,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/outpost/security) -"aqE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aqG" = ( /obj/structure/machinery/computer/communications{ dir = 4 @@ -5616,12 +5403,6 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ara" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "arb" = ( /obj/item/storage/belt/security, /turf/open/floor/strata{ @@ -5741,15 +5522,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi) -"arv" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "arw" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/corpsespawner/russian, @@ -5757,12 +5529,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/security) -"arx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) "ary" = ( /obj/structure/bed/chair{ dir = 1 @@ -5820,12 +5586,6 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/security) -"arF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/security) "arG" = ( /obj/structure/sink{ dir = 4; @@ -6163,20 +5923,6 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/security) -"asB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/stamp, -/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" - }, -/area/strata/ag/interior/outpost/security) "asD" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer2, @@ -6250,17 +5996,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "asQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -6562,15 +6297,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"atF" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "atG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7052,17 +6778,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"avj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "avk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -7269,20 +6984,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/interior/outpost/engi) -"avS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "avT" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, @@ -7334,12 +7035,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/security) -"avZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) "awa" = ( /obj/structure/machinery/photocopier, /turf/open/floor/strata{ @@ -8058,12 +7753,6 @@ icon_state = "red1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"aye" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ayf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/strata{ @@ -8672,12 +8361,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi) -"aAh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aAj" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, @@ -8810,21 +8493,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aAC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aAD" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata{ @@ -8839,17 +8507,6 @@ icon_state = "fake_wood" }, /area/strata/ag/interior/outpost/security) -"aAG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aAJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -9685,13 +9342,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms) -"aDD" = ( -/obj/structure/closet, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) @@ -10945,15 +10595,6 @@ icon_state = "white_cyan1" }, /area/strata/ag/interior/dorms) -"aHd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms) "aHe" = ( /obj/structure/bed/chair{ dir = 8 @@ -11411,16 +11052,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi) -"aIX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aIZ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -11501,20 +11132,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"aJo" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aJp" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -11548,20 +11165,6 @@ icon_state = "blue1" }, /area/strata/ag/interior/outpost/admin) -"aJw" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) "aJA" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -12187,14 +11790,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"aLv" = ( -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/adminext) "aLw" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -12593,20 +12188,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aMM" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) "aMN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata{ @@ -13001,13 +12582,6 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) -"aNW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "aNX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13254,13 +12828,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aOG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -13277,13 +12844,6 @@ icon_state = "white_cyan1" }, /area/strata/ag/interior/outpost/canteen) -"aOL" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aOM" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -13362,12 +12922,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aPb" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) "aPc" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -13425,16 +12979,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aPo" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/folder/red, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) "aPp" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -14391,18 +13935,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/canteen/bar) -"aSo" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aSp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/chawanmushi, @@ -14805,18 +14337,6 @@ icon_state = "blue1" }, /area/strata/ag/interior/outpost/admin) -"aTN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aTP" = ( /obj/item/tool/mop, /obj/structure/janitorialcart, @@ -15039,23 +14559,6 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aUK" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement, -/area/strata/ag/interior/outpost/gen/foyer) -"aUM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "aUN" = ( /turf/open/floor/strata{ icon_state = "fake_wood" @@ -15497,13 +15000,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aWB" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) "aWE" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ @@ -15603,16 +15099,6 @@ icon_state = "blue1" }, /area/strata/ag/interior/outpost/admin) -"aWZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "aXa" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -15824,11 +15310,6 @@ "aXG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"aXH" = ( -/obj/structure/surface/table, -/obj/item/handset, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms/south) "aXI" = ( /obj/structure/bed, /turf/open/floor/strata, @@ -16245,14 +15726,6 @@ "aZv" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) -"aZw" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aZx" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) @@ -16939,14 +16412,6 @@ /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bbM" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bbN" = ( /turf/open/floor/strata{ icon_state = "floor2" @@ -17053,6 +16518,10 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"bcn" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "bco" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata{ @@ -17985,21 +17454,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"bfF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bfI" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata, @@ -19608,16 +19062,6 @@ /obj/item/toy/deck, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"blD" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "blE" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -19863,12 +19307,6 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bmG" = ( -/obj/structure/closet/bodybag, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/southresearch) "bmH" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, @@ -19999,10 +19437,6 @@ /obj/item/storage/backpack/lightpack, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"bnq" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/research_decks) "bnr" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, @@ -20084,15 +19518,6 @@ icon_state = "white_cyan1" }, /area/strata/ag/interior/outpost/canteen) -"bnI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/southresearch) "bnJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -20192,11 +19617,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bob" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "boc" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -20278,15 +19698,6 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bop" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "boq" = ( /obj/item/stack/medical/splint, /obj/item/lightstick/red/planted, @@ -20466,14 +19877,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/med) -"boQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "boS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -21124,13 +20527,6 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brr" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/administration) "brs" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/strata_grass/layer0_mud, @@ -21154,12 +20550,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"brw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "brx" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -21467,17 +20857,6 @@ icon_state = "blue1" }, /area/strata/ag/interior/outpost/admin) -"bsH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bsI" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -21695,10 +21074,6 @@ /obj/effect/landmark/corpsespawner/doctor, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"btx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/southresearch) "bty" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, @@ -22150,13 +21525,6 @@ icon_state = "floor2" }, /area/strata/ag/interior/outpost/med) -"bvj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) "bvk" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light/small, @@ -23073,15 +22441,6 @@ icon_state = "cyan1" }, /area/strata/ag/interior/outpost/med) -"bzg" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior) @@ -23498,21 +22857,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/med) -"bBY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "bCd" = ( /obj/structure/platform/strata{ dir = 1 @@ -23535,15 +22879,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms) -"bCm" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bCn" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/surface/table/reinforced/prison, @@ -23732,28 +23067,6 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) -"bDs" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bDt" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bDv" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -23980,16 +23293,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/canteen) -"bFB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "bFC" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -24050,6 +23353,13 @@ icon_state = "cyan3" }, /area/strata/ag/interior/outpost/med) +"bGe" = ( +/obj/structure/closet, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms) "bGg" = ( /obj/structure/platform/strata{ dir = 8 @@ -24096,27 +23406,6 @@ icon_state = "white_cyan3" }, /area/strata/ag/interior/outpost/med) -"bGx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bGy" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bGD" = ( /obj/structure/machinery/photocopier, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -24532,15 +23821,6 @@ icon_state = "fake_wood" }, /area/strata/ug/interior/jungle/deep/minehead) -"bJE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata, -/area/strata/ag/interior/administration) -"bJF" = ( -/obj/structure/filingcabinet, -/obj/item/pamphlet/skill/medical, -/turf/open/floor/strata, -/area/strata/ag/interior/administration) "bJG" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -24567,17 +23847,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/med) -"bJW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "bJX" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -24676,12 +23945,6 @@ icon_state = "floor2" }, /area/strata/ag/interior/outpost/med) -"bKM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, @@ -24713,15 +23976,6 @@ icon_state = "white_cyan1" }, /area/strata/ag/interior/outpost/med) -"bKS" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bKT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -24886,17 +24140,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bMV" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "bMX" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/strata{ @@ -25049,17 +24292,6 @@ icon_state = "cyan1" }, /area/strata/ag/interior/outpost/med) -"bOz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/storage/pill_bottle/antitox/skillless, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "bOA" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/small, @@ -25067,6 +24299,17 @@ icon_state = "floor2" }, /area/strata/ag/interior/outpost/med) +"bOC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "bOE" = ( /turf/open/floor/strata{ dir = 6; @@ -25090,21 +24333,6 @@ icon_state = "cyan1" }, /area/strata/ag/interior/outpost/med) -"bOH" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bOV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" @@ -26266,12 +25494,6 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) -"bYR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) "bYS" = ( /obj/structure/bed/chair{ dir = 4 @@ -26637,16 +25859,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/outpost/gen/bball) -"cch" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) "cci" = ( /turf/open/floor/strata{ icon_state = "floor3" @@ -26856,20 +26068,6 @@ "cdA" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball) -"cdC" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/pill_bottle/alkysine, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "cdD" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, @@ -27102,13 +26300,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/med) -"ceZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "cfg" = ( /turf/open/floor/strata{ dir = 10; @@ -27355,24 +26546,6 @@ /obj/structure/mirror, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"cgU" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/item/dogtag, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) "cgW" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -27896,19 +27069,6 @@ icon_state = "white_cyan3" }, /area/strata/ag/interior/outpost/med) -"ckz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, -/area/strata/ag/interior/outpost/med) "ckA" = ( /obj/structure/surface/rack, /obj/item/paper_bin, @@ -28069,16 +27229,6 @@ icon_state = "plate" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "cls" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/shuttle/ert{ @@ -28385,6 +27535,13 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) +"cny" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/exterior/research_decks) "cnA" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -28655,13 +27812,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/flight_control) -"cpE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "cpR" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -29028,12 +28178,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) -"csT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) "csV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -29708,12 +28852,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi/drome) -"cTN" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "cUi" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -29750,21 +28888,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) -"cWs" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" @@ -29778,6 +28901,12 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) +"cYI" = ( +/obj/structure/closet, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/dorms/flight_control) "cZa" = ( /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, @@ -29795,6 +28924,15 @@ icon_state = "cement3" }, /area/strata/ag/interior/landingzone_1) +"dah" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/outpost/med) "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) @@ -29835,6 +28973,15 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"dfw" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/outpost/security) "dgB" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) @@ -29936,6 +29083,13 @@ icon_state = "cement4" }, /area/strata/ag/interior/landingzone_1) +"doA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison{ + icon_state = "darkyellowfull2" + }, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "doO" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -29943,6 +29097,15 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"dpd" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "dqo" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) @@ -30091,18 +29254,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/outpost/gen/bball) -"dEy" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -30159,6 +29310,17 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"dJU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/storage/pill_bottle/antitox/skillless, +/turf/open/floor/strata{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/med) "dJV" = ( /obj/structure/curtain/medical, /turf/open/floor/strata{ @@ -30337,6 +29499,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"eaq" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/tcomms) "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) @@ -30504,6 +29674,16 @@ "eqV" = ( /turf/closed/wall/wood, /area/strata/ag/interior/mountain) +"eqY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "era" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -30554,16 +29734,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"eyA" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "ezl" = ( /obj/structure/inflatable/door, /turf/open/floor/strata{ @@ -30598,6 +29768,12 @@ icon_state = "blue1" }, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"eEA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/flight_control) "eEO" = ( /obj/structure/prop/turbine_extras/left, /turf/open/floor/strata{ @@ -30674,6 +29850,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"eHW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison{ + icon_state = "darkyellowfull2" + }, +/area/strata/ag/interior/outpost/engi) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -30751,17 +29933,6 @@ icon_state = "red1" }, /area/strata/ag/interior/landingzone_checkpoint) -"eNF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) "eNL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -30778,6 +29949,10 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) +"eNX" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata, +/area/strata/ag/interior/administration) "eOc" = ( /obj/structure/bed, /obj/structure/machinery/light/small, @@ -30830,6 +30005,11 @@ icon_state = "red1" }, /area/strata/ag/interior/landingzone_checkpoint) +"eRV" = ( +/obj/structure/surface/table, +/obj/item/handset, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms/south) "eSs" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -30936,6 +30116,14 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/interior/outpost/engi) +"fgb" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball/nest) "fhl" = ( /obj/structure/fence, /turf/open/asphalt/cement{ @@ -30960,6 +30148,12 @@ icon_state = "cement4" }, /area/strata/ag/exterior/tcomms/tcomms_deck) +"fjs" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -31011,6 +30205,15 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) +"fmB" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "fno" = ( /turf/open/floor/strata{ dir = 6; @@ -31058,6 +30261,13 @@ icon_state = "blue1" }, /area/strata/ag/interior/outpost/admin) +"fso" = ( +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/research_decks/security) "fst" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -31255,10 +30465,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"fEW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/shed_five_caves) "fFy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -31291,6 +30497,23 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"fIW" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ug/interior/jungle/deep/structures/res) +"fJV" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "fKt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata{ @@ -31310,18 +30533,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fMk" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "fMr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -31407,10 +30618,51 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/shed_five_caves) +"fSF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/security) "fSR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"fTN" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) +"fUp" = ( +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ag/interior/outpost/security) +"fUB" = ( +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"fVR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "fWs" = ( /turf/closed/wall/mineral/gold, /area/strata/ag/interior/outpost/med) @@ -31489,6 +30741,18 @@ "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/tearlake) +"gdY" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/canteen/bar) "gdZ" = ( /obj/structure/machinery/smartfridge, /obj/structure/machinery/door/window/eastright{ @@ -31522,13 +30786,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"ggr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "ggH" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata{ @@ -31536,19 +30793,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/med) -"ggJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "gha" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata{ @@ -31651,17 +30895,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"gkA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "glG" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/strata{ @@ -31827,9 +31060,30 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"gxl" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/research_decks/security) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) +"gzT" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "gAm" = ( /turf/open/floor/strata{ icon_state = "fake_wood" @@ -31859,6 +31113,16 @@ /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) +"gCZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/engi/drome) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, @@ -31929,6 +31193,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"gKP" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) @@ -32068,6 +31337,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"gUV" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ag/interior/outpost/med) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32099,6 +31374,12 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) +"gYs" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/exterior/north_lz_caves) "gZp" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/almayer{ @@ -32111,16 +31392,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/exterior/research_decks) -"haw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "haN" = ( /obj/structure/largecrate/random, /obj/item/trash/pistachios, @@ -32148,6 +31419,13 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"hbh" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/engi/drome) "hcg" = ( /obj/item/tool/pen/blue, /turf/open/floor/strata{ @@ -32176,6 +31454,10 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"heI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/southresearch) "heO" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, @@ -32187,19 +31469,16 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"hfv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"hfC" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" + dir = 10; + icon_state = "multi_tiles" }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/area/strata/ag/interior/outpost/med) "hgI" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -32403,6 +31682,15 @@ /obj/item/tool/mop, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) +"hEC" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ag/interior/outpost/med) "hEF" = ( /obj/structure/inflatable/door, /turf/open/floor/strata{ @@ -32560,6 +31848,15 @@ "hVm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/jung/dorms/med1) +"hVT" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ag/interior/outpost/med) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -32645,6 +31942,13 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"idx" = ( +/obj/structure/closet, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ag/interior/administration) "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec1) @@ -32691,6 +31995,17 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"ilj" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/administration) "ilL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -32743,6 +32058,12 @@ /obj/item/lightstick, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"iqH" = ( +/obj/structure/closet/bodybag, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/southresearch) "iqV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32881,6 +32202,17 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"ixo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/med) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32940,6 +32272,26 @@ /obj/structure/closet/emcloset, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"iAP" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) +"iBw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -32969,6 +32321,15 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) +"iCC" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "iDq" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, @@ -33012,6 +32373,13 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"iIF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "iJh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, @@ -33181,6 +32549,16 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"iXi" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata{ + icon_state = "purp2" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "iXj" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/tool/wrench, @@ -33195,29 +32573,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iZa" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) "iZr" = ( /turf/open/asphalt/cement{ icon_state = "cement2" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"iZw" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "iZI" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/strata, @@ -33252,6 +32612,15 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"jcV" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/wo_supplies/storage/mines, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball/nest) "jdC" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, @@ -33319,17 +32688,6 @@ icon_state = "cyan1" }, /area/strata/ag/interior/outpost/med) -"jkf" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "jkp" = ( /turf/open/floor/strata{ dir = 8; @@ -33439,11 +32797,24 @@ /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) +"jwx" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ug/interior/outpost/jung/dorms/med1) "jxc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) +"jxi" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "jyq" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -33624,12 +32995,26 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/tcomms) +"jNe" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/administration) "jNJ" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata{ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"jOa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms/south) "jOp" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -33651,6 +33036,17 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"jPx" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "jPQ" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 @@ -33688,11 +33084,24 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"jVc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "purp1" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/camera/autoname, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) +"jVy" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ug/interior/outpost/jung/dorms/med2) "jVD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -33917,15 +33326,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms/flight_control) -"klG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) "kmt" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -34096,19 +33496,6 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"kEl" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) "kGV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, @@ -34157,6 +33544,17 @@ "kKI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"kKJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/outpost/security) "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -34444,6 +33842,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"liP" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/engi/drome) "ljg" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/closet/bodybag/tarp, @@ -34451,12 +33864,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"lkl" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, @@ -34486,6 +33893,17 @@ "lmV" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/southresearch) +"lnd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) @@ -34554,6 +33972,14 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"ltN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/dorms/canteen) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -34590,6 +34016,13 @@ "lvF" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/tearlake) +"lws" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/tcomms) "lwI" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -34798,18 +34231,37 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lPk" = ( -/obj/structure/closet/secure_closet/security/soro, +"lPz" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/strata{ - icon_state = "red1" + dir = 10; + icon_state = "multi_tiles" }, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/outpost/med) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"lPK" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) +"lQy" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "lQT" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -35243,13 +34695,6 @@ /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) -"msC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "msG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -35311,6 +34756,15 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"myA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan2" + }, +/area/strata/ag/interior/dorms/canteen) "mzp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -35379,6 +34833,10 @@ icon_state = "cement4" }, /area/strata/ag/exterior/tcomms/tcomms_deck) +"mGv" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/research_decks) "mGA" = ( /turf/open/floor/strata{ dir = 8; @@ -35566,17 +35024,6 @@ /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"mWM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) "mWT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -35591,6 +35038,21 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"mYF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/engi/drome) "mYN" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata{ @@ -35625,6 +35087,12 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"ncT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/dorms/south) "ndC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -35644,6 +35112,18 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"neu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "neL" = ( /obj/structure/bed/chair{ dir = 4 @@ -35738,6 +35218,16 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"nqm" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/folder/red, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/south) "nqX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -35761,6 +35251,11 @@ icon_state = "floor2" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"nrQ" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement, +/area/strata/ag/interior/outpost/gen/foyer) "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_carp) @@ -35776,6 +35271,15 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"ntT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/strata/ag/interior/dorms) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -35804,6 +35308,18 @@ icon_state = "cement3" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"nzI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -24; + start_charge = 0 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/foyer) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_carp) @@ -35850,16 +35366,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nEU" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "nFN" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/strata{ @@ -35893,6 +35399,17 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/med) +"nJa" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ug/interior/outpost/jung/dorms/med2) "nJK" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh) @@ -35900,19 +35417,27 @@ /obj/structure/machinery/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) +"nKk" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ag/interior/outpost/med) "nLG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"nOE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) "nPb" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_carp) @@ -35951,6 +35476,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"nSb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ag/interior/outpost/med) "nSJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -36038,6 +35569,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"obG" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/flight_control) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -36094,6 +35632,14 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"oeI" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "oeK" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -36218,10 +35764,31 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"ors" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "orL" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) +"orQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan2" + }, +/area/strata/ag/interior/outpost/med) "orW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -36243,6 +35810,13 @@ icon_state = "cement1" }, /area/strata/ag/exterior/landingzone_2) +"ovS" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, @@ -36306,6 +35880,16 @@ icon_state = "cement12" }, /area/strata/ag/exterior/landingzone_2) +"oGA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "oGW" = ( /obj/structure/machinery/light/small, /obj/structure/inflatable/popped, @@ -36321,14 +35905,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/exterior/research_decks) -"oIi" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "oIx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/spawner/random/tool, @@ -36385,14 +35961,6 @@ icon_state = "cement12" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"oMZ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "oOB" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -36529,15 +36097,6 @@ "oWU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"oXH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) "oZt" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata{ @@ -36574,6 +36133,12 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pbP" = ( +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/outpost/jung/dorms/med2) "pdv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer0_mud, @@ -36640,6 +36205,13 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pkc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/engi/drome) "pkG" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 @@ -36726,6 +36298,21 @@ icon_state = "white_cyan3" }, /area/strata/ag/interior/outpost/med) +"ppX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/research_decks/security) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -36768,6 +36355,15 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) +"prA" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -36956,6 +36552,15 @@ icon_state = "platebot" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"pDW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/gen/bball) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -36993,6 +36598,17 @@ /obj/structure/barricade/wooden, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"pER" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/landingzone_checkpoint) "pEY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison{ @@ -37151,6 +36767,12 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) +"pRQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/security) "pSc" = ( /obj/structure/closet/coffin, /obj/structure/machinery/light/small, @@ -37272,6 +36894,21 @@ icon_state = "cement3" }, /area/strata/ag/exterior/landingzone_2) +"qcl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/med) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, @@ -37366,6 +37003,12 @@ icon_state = "cement12" }, /area/strata/ag/exterior/marsh) +"qjR" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/flight_control) "qks" = ( /obj/structure/machinery/light/small, /turf/open/asphalt/cement{ @@ -37392,6 +37035,20 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/med1) +"qlw" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/south) "qmw" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -37438,6 +37095,20 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/east_engi) +"qqB" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ag/interior/outpost/admin) "qrz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement{ @@ -37526,20 +37197,19 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"qzf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"qye" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "fake_wood" }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/storage/pill_bottle/spaceacillin, +/area/strata/ag/interior/outpost/engi/drome) +"qzL" = ( +/obj/structure/closet/basketball, /turf/open/floor/strata{ dir = 4; - icon_state = "cyan2" + icon_state = "cyan1" }, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/gen/bball) "qAr" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -37665,6 +37335,13 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/admin) +"qNI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/outpost/med) "qNS" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/strata{ @@ -37733,22 +37410,6 @@ icon_state = "cement15" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"qQN" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"qRj" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" @@ -37871,6 +37532,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rcb" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/outpost/gen/bball) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, @@ -37963,6 +37631,30 @@ icon_state = "cement14" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"rhR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/med) +"riy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/dorms) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -38030,6 +37722,21 @@ icon_state = "cement4" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"rmQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/foyer) "rno" = ( /obj/structure/largecrate/random, /turf/open/floor/strata{ @@ -38099,6 +37806,33 @@ "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/south_engi) +"rvQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + dir = 1; + icon_state = "white_cyan4" + }, +/area/strata/ag/interior/outpost/med) +"rvY" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/storage/pill_bottle/alkysine, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/med) "rwD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata{ @@ -38121,6 +37855,21 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) +"rye" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/outpost/security) "ryf" = ( /obj/structure/platform_decoration/strata/metal, /obj/effect/decal/strata_decals/catwalk/prison, @@ -38354,6 +38103,12 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/tcomms) +"rVs" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/landingzone_checkpoint) "rWk" = ( /obj/structure/sink{ dir = 8; @@ -38433,6 +38188,12 @@ "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"sgS" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, @@ -38459,6 +38220,20 @@ icon_state = "cyan3" }, /area/strata/ag/interior/outpost/med) +"siW" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/outpost/admin) "sjp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -38543,6 +38318,10 @@ icon_state = "cement9" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"soI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/shed_five_caves) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, @@ -38615,6 +38394,15 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"sxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/southresearch) "sxT" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -38649,6 +38437,16 @@ "sAv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/med1) +"sBa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata{ + dir = 4; + icon_state = "cyan1" + }, +/area/strata/ag/interior/outpost/gen/bball) "sBf" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -38899,6 +38697,14 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"sYj" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/tcomms) "sZP" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -38907,13 +38713,6 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/tcomms) -"taa" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "taL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -38961,12 +38760,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tfB" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/north_lz_caves) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, @@ -39035,6 +38828,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"tjM" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null + }, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) "tkq" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -39141,6 +38940,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"trR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/security) "tsz" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -39156,6 +38961,14 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"ttz" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/surface/rack, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/med) "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) @@ -39242,6 +39055,19 @@ /obj/structure/bed/roller, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tCP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/med) "tCR" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, @@ -39281,16 +39107,6 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"tHx" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "tHE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/russianRed, @@ -39401,21 +39217,18 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/med2) -"tPl" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "tPx" = ( /turf/open/floor/strata{ dir = 4; icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"tPF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ag/interior/administration) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) @@ -39491,6 +39304,19 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"tTi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "tTk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, @@ -39564,6 +39390,20 @@ "tWY" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) +"tXW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/engi) "tYB" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/prison{ @@ -39647,17 +39487,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ueD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "ueK" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -39714,6 +39543,24 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"uhd" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/item/dogtag, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ag/interior/outpost/admin) "uhe" = ( /obj/structure/toilet{ dir = 1 @@ -39731,6 +39578,15 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"uhM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/engi) "uiE" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) @@ -39785,13 +39641,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/exterior/vanyard) -"unO" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) "uoP" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement{ @@ -39823,12 +39672,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"urF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, @@ -39929,6 +39772,18 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"uzd" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/engi/drome) "uzj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -39949,6 +39804,14 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"uzL" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/strata{ + icon_state = "orange_cover" + }, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "uBz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -40117,6 +39980,16 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"uSg" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/tcomms) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -40160,6 +40033,17 @@ icon_state = "cement1" }, /area/strata/ug/interior/jungle/platform/east/scrub) +"uWa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/outpost/security) "uWe" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -40449,6 +40333,13 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"vrR" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/engi/drome) "vsd" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ @@ -40522,6 +40413,16 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) +"vuI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/engi) "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) @@ -40546,16 +40447,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/med) -"vvB" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "vvR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -40743,12 +40634,6 @@ icon_state = "darkredfull2" }, /area/strata/ag/interior/landingzone_checkpoint) -"vMr" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "vNG" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata{ @@ -40911,6 +40796,22 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"wfY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/research_decks/security) "wgu" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/auto_turf/ice/layer1, @@ -40924,10 +40825,6 @@ /obj/item/tank/anesthetic, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"whO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms/south) "wij" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -40940,6 +40837,16 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"wjz" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ag/interior/outpost/med) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, @@ -40980,6 +40887,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"wqI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) @@ -41037,16 +40955,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"wuE" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "wuI" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_carp) @@ -41085,6 +40993,17 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) +"wAb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "wAj" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -41176,6 +41095,11 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"wHg" = ( +/obj/structure/filingcabinet, +/obj/item/pamphlet/skill/medical, +/turf/open/floor/strata, +/area/strata/ag/interior/administration) "wHW" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) @@ -41227,13 +41151,27 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"wUa" = ( -/obj/structure/surface/rack, +"wTn" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"wUs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + icon_state = "red1" }, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/security) "wVf" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -41464,6 +41402,12 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"xpC" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "xpK" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/barricade/handrail/strata, @@ -41520,6 +41464,17 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"xub" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/storage/pill_bottle/imidazoline, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/med) "xuq" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -41622,6 +41577,13 @@ icon_state = "multi_tiles" }, /area/strata/ag/exterior/research_decks) +"xCm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/strata/ag/interior/dorms/maintenance) "xCN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata{ @@ -41648,6 +41610,14 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) +"xEj" = ( +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/adminext) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -41886,6 +41856,17 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/engi/drome) +"xSh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/research_decks/security) +"xSB" = ( +/obj/structure/filingcabinet, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/gen/bball/nest) "xSJ" = ( /turf/open/floor/strata{ dir = 8; @@ -42024,6 +42005,16 @@ icon_state = "cement4" }, /area/strata/ag/exterior/landingzone_2) +"yeF" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ag/interior/dorms/flight_control) "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin2) @@ -42064,6 +42055,15 @@ icon_state = "cyan3" }, /area/strata/ag/interior/outpost/med) +"yll" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/south_engi) @@ -42706,8 +42706,8 @@ aac aac aac kSU -ahO -vMr +yeF +qjR coO coO ako @@ -43095,12 +43095,12 @@ aac aac aac kSU -ahq +cYI ahP aiw cof cjb -akp +eEA coS cpR cqE @@ -43290,7 +43290,7 @@ aac aac aac kSU -ahq +cYI coO aix cjb @@ -43991,7 +43991,7 @@ aac aac acX acX -acX +uvZ acX aSj hkA @@ -44576,7 +44576,7 @@ acX acX acX acX -acX +uvZ acX acX aac @@ -44850,7 +44850,7 @@ aac aac aac kSU -ahq +cYI coO aix cjb @@ -45045,12 +45045,12 @@ aac aac aac kSU -ahq +cYI ahP aiA qwM ajK -cpE +obG akU alD cqM @@ -45436,8 +45436,8 @@ aac aac aac kSU -ahO -vMr +yeF +qjR coO coO coV @@ -46823,7 +46823,7 @@ ayj ctK aBk crY -aDD +bGe aEH crY crY @@ -47801,7 +47801,7 @@ ctC cdH aEK aFR -aHd +ntT aIm fWV aLg @@ -48782,7 +48782,7 @@ aJT aLk ctC ctC -aPb +ncT ckX cov aSV @@ -49356,7 +49356,7 @@ cbj bZV cew azI -oXH +riy aCK cdK cew @@ -49372,7 +49372,7 @@ cjw cov aLq cnA -whO +jOa aXD cjw aac @@ -49533,7 +49533,7 @@ agJ ahu ahT agJ -ajo +myA pDJ akv alJ @@ -50152,14 +50152,14 @@ ckX aRK ckX cnA -whO -aXH +jOa +eRV cjw aac aac aac aac -tfB +gYs brn aYZ aWp @@ -50354,7 +50354,7 @@ aac aac aac aac -tfB +gYs brn aYX aWp @@ -50511,7 +50511,7 @@ aiG bPv qUW xSJ -alc +ltN alK xSJ anp @@ -50932,7 +50932,7 @@ aQA aRK ckX cnA -whO +jOa aXJ cjw aac @@ -51147,7 +51147,7 @@ cbu aac aac mfp -eNF +pER iry cxg beZ @@ -52073,7 +52073,7 @@ ajU alx alf anF -apU +xCm asX aky avA @@ -52290,9 +52290,9 @@ aNo aOB cjw aLs -aMM +qlw aNQ -aPo +nqm cjw clW aSZ @@ -52709,7 +52709,7 @@ bcz cbO eVA cwF -lPk +rVs cbO qjD bgs @@ -52874,7 +52874,7 @@ aZP aZP aUn aKb -aLv +xEj aMO cjA afS @@ -52890,7 +52890,7 @@ aWy bhy bkt bnG -brr +idx cfR bxr bAB @@ -53479,7 +53479,7 @@ cfR buy brt bAG -bFB +jNe bIW coB baK @@ -54255,13 +54255,13 @@ beT bhD cwe bnZ -brw +tPF coB cfR cfR bFC bkx -bMV +ilj bRp chX bcg @@ -55820,7 +55820,7 @@ buT cqH csm bGa -bJE +eNX bwp aac aac @@ -55974,7 +55974,7 @@ aac aac aac adS -ans +gxl bUY sDs aqm @@ -56015,7 +56015,7 @@ bru ctA bAM bGb -bJF +wHg bwp aac aac @@ -56559,9 +56559,9 @@ aac aac aac adS -anv +ppX aou -apu +xSh aqo arn bXi @@ -56836,11 +56836,11 @@ btp aac sgG jVU -oMZ +eaq vlG vxd -tHx -oIi +uSg +sYj yhJ epm hTU @@ -57428,7 +57428,7 @@ tRC tRC tRC kzD -msC +lws vxd iMP tRC @@ -57550,7 +57550,7 @@ aBI jjJ jjJ jjJ -bnq +mGv cfX aIN baw @@ -57590,7 +57590,7 @@ bfg bgI xdr wVU -fEW +soI sau okE aac @@ -58336,7 +58336,7 @@ foN aKj cie ciW -aNW +cny jjJ aQK iLJ @@ -58509,7 +58509,7 @@ aac aac aac adS -anz +wfY bVf imV aqo @@ -58899,7 +58899,7 @@ aac aac aac bUd -anB +fso aoz apx aqt @@ -60291,7 +60291,7 @@ aPz aQP aRW aTp -aUK +nrQ blb aYx baq @@ -60500,7 +60500,7 @@ blb bxM bAT bCq -bJW +ixo vmI bSI nUX @@ -60827,7 +60827,7 @@ aac rKG abt bud -abK +jcV rKG aac aac @@ -61062,7 +61062,7 @@ dgB irx aGl xvy -aIX +vuI aKq aIV aMW @@ -61071,7 +61071,7 @@ aPC aQV oKo aTs -aUM +nzI aWE aYD bau @@ -61120,7 +61120,7 @@ qfN eFA uiE gom -btx +heI blJ bua uiE @@ -61274,7 +61274,7 @@ aUN aUN aTy ghV -boQ +ttz vtz vlm bxT @@ -61445,7 +61445,7 @@ aAR xvy axc ayE -aAh +eHW aHv aCU aCU @@ -61478,7 +61478,7 @@ bTF vlm vlm bSN -cdC +rvY cjO cnc cvc @@ -61677,7 +61677,7 @@ cdD cjP cnd cvd -fMk +lPz jjJ aGc foN @@ -61995,7 +61995,7 @@ rKG bUX rKG cpV -abu +fgb bap baL cpV @@ -62082,7 +62082,7 @@ axu ybN bkU aGP -bmG +iqH bnC boa bpo @@ -62441,7 +62441,7 @@ aYw aUN baV aYw -bfF +rmQ bil blb boV @@ -62784,9 +62784,9 @@ bzH cdA cdA bDU -nOE -nOE -nOE +rcb +rcb +rcb afM cck akR @@ -62838,7 +62838,7 @@ boY bsA bTF byY -bBY +qcl ryK ryK ryK @@ -62977,7 +62977,7 @@ glG cpV uZh cdA -adB +qzL ccg ccg ccg @@ -63034,9 +63034,9 @@ mZd bvb byZ vlm -bGx +rhR bKC -bOz +dJU vlm cdT cjU @@ -63046,7 +63046,7 @@ vlm vlm vlm oOX -qQN +wTn uTQ xOs cuP @@ -63172,7 +63172,7 @@ rKG cpV uZh cdA -adB +qzL dEa dEa dEa @@ -63367,11 +63367,11 @@ akR dWm uZh cdA -adB +qzL dEa dEa kPL -cch +sBa bJb agf akR @@ -63424,7 +63424,7 @@ bsB bvd bzb jsd -bGy +gUV bKL bOA vlm @@ -63813,17 +63813,17 @@ biH biH bve cik -bCm +hEC bGD -bKM +nSb msG bTE bTF cjU bBT vlm -jkf -jkf +xub +xub ghV pbC ras @@ -63975,9 +63975,9 @@ awJ aAR arr asr -atF +uhM auA -avS +tXW axj aIV aAr @@ -64608,7 +64608,7 @@ mwq iPd reS vmI -qzf +orQ pEo vmI uzv @@ -64618,7 +64618,7 @@ cuP kzc blM bmU -bnI +sxS tBn uiE uiE @@ -64962,16 +64962,16 @@ dgB aMX aGy cik -qRj +dpd aKD aLT -qRj +dpd aKD aPK -qRj +dpd aKD aTG -wuE +gzT aWR aYL bbk @@ -65166,7 +65166,7 @@ blN blN aOu blN -taa +ovS aWR bll oSV @@ -65493,7 +65493,7 @@ rKG aaG aam aam -abs +xSB aam aam baH @@ -65533,7 +65533,7 @@ djW djW djW ijo -arv +dfw asy ijo auF @@ -65751,7 +65751,7 @@ aPL aRf aYO aTI -taa +ovS aWR aYO aYK @@ -65761,8 +65761,8 @@ biV blU bpF mnq -bvj -bzg +qNI +dah eSx bHy mxu @@ -65927,7 +65927,7 @@ arw asA gAm cdZ -avZ +fSF aHv aGx oKo @@ -65937,7 +65937,7 @@ oKo ceI cdZ cik -aJo +siW aOu blN aTU @@ -66118,8 +66118,8 @@ aAR aHh aHh cea -arx -asB +pRQ +wUs atJ cdZ awa @@ -66155,11 +66155,11 @@ cik bzh eSx bHB -bKS -bOH +hVT +nKk bVF ceG -ckz +rvQ qxt cnk cnk @@ -66336,7 +66336,7 @@ aPO aRf bll bsK -taa +ovS aWR bll oSV @@ -66345,7 +66345,7 @@ bfV blN blX bpI -bsH +bOC cik bzh vlm @@ -66548,7 +66548,7 @@ bzh bzh bvK bWk -ceZ +pkc ckA cnw cfg @@ -66759,7 +66759,7 @@ nST qON voe rUn -nEU +wjz xmR vlm mCx @@ -66955,7 +66955,7 @@ gfC voe mCx vyl -ggJ +tCP vlm mCx pSc @@ -67271,7 +67271,7 @@ adG dEa dEa aeH -klG +pDW afN agg cdA @@ -67285,7 +67285,7 @@ awJ fwV cea cdZ -aoD +uWa gAm gAm arz @@ -67532,7 +67532,7 @@ csQ bzl ckH ueU -vvB +hfC xlg xlg wsi @@ -67700,7 +67700,7 @@ blN bll biH bll -aTN +fVR wdf aWR bll @@ -67916,7 +67916,7 @@ bWB bvz ckH bvz -cWs +mYF bzl bzl bzl @@ -68082,7 +68082,7 @@ cdZ ceI cfx cik -cgU +uhd aKN bsK cik @@ -68286,7 +68286,7 @@ bll afr aSk aRk -qRj +dpd aWV aYT apJ @@ -68465,14 +68465,14 @@ ijo ijo caf ijo -aAC +rye aCc dWu cea ceI cfx cik -aJw +qqB aKN bsK cik @@ -68515,7 +68515,7 @@ bCz snV srk iEU -unO +jwx qlq brd iEU @@ -69047,7 +69047,7 @@ arE asG asG ijo -bYR +trR axA gAm gAm @@ -69433,14 +69433,14 @@ awJ aAR ijo aqC -arF +fUp wto cfx auM bZD cak aza -aAG +kKJ aCg aAD ijo @@ -69710,7 +69710,7 @@ aad aad aad sHP -ueD +jPx lKv lJG lij @@ -69911,7 +69911,7 @@ rqL oWO sHP iuh -tPl +iCC sHP aad aad @@ -70059,7 +70059,7 @@ orL csF gaA cgP -clr +oGA coA coA gMF @@ -70212,7 +70212,7 @@ ayw ayw aoI apC -aqE +sgS bWN ijo ijo @@ -70234,7 +70234,7 @@ aNv ckd ckK aRn -aSo +gdY ckK aVy aXe @@ -70886,7 +70886,7 @@ sHP xRr nnq lax -ggr +iIF sHP sHP aad @@ -70961,8 +70961,8 @@ aar aUp bly abc -bob -abh +gKP +tjM aUp aac aac @@ -71349,7 +71349,7 @@ aUp bof bof aUp -aeV +bcn aYp bod aUp @@ -71579,7 +71579,7 @@ aoJ apE bPf bPf -asP +lnd cdh auU ccr @@ -71986,7 +71986,7 @@ aJF ccp aMp aNy -aOG +doA ckM aRo cdh @@ -72023,8 +72023,8 @@ iDq bvz bvz bCz -dEy -iZw +uzd +vrR afG bWk xRR @@ -72129,7 +72129,7 @@ aYo aYp aaS aUp -blD +fJV bmQ boe aUp @@ -72393,7 +72393,7 @@ vOs btG bsp bDz -bDs +liP vOs bAp bPA @@ -72588,7 +72588,7 @@ vOs btI bwo bzt -bDt +hbh vOs cuH bQa @@ -72597,7 +72597,7 @@ bCz clx bCK csQ -haw +gCZ kCf bCK bvz @@ -72773,7 +72773,7 @@ chd cpU aVE aXj -aZw +uzL bbE cpU crI @@ -72826,7 +72826,7 @@ qks srk uXg oWU -mWM +fUB vbI ygq ygq @@ -72975,7 +72975,7 @@ crI aHP bmb vOs -csT +qye bzG bzt bDy @@ -73400,11 +73400,11 @@ bmv bmv jWz vpG -urF +pbP hpD tPi sRX -iZa +nJa jWz rpX tnM @@ -73599,14 +73599,14 @@ oyu jWz ooj poc -aWB +jVy jWz rpX tnM uXg ygq ygq -kEl +iBw jtB ygq lyX @@ -74459,7 +74459,7 @@ aac aac aUp ahg -aWZ +eqY aUp aaQ ahZ @@ -74521,7 +74521,7 @@ aHP aKZ cjn fKt -aOL +lQy cpU aHT aSw @@ -76479,7 +76479,7 @@ xkj xkj aXp bdj -bbM +oeI beA bgV aXp @@ -76728,7 +76728,7 @@ wXm wXm wXm rxp -hfv +tTi uhe rxp uXg @@ -80618,7 +80618,7 @@ kRO xwn pVn aKF -lkl +jVc khT gih vsy @@ -81394,7 +81394,7 @@ vsy gih khT jNJ -eyA +iXi xgR uHa vsy @@ -83272,7 +83272,7 @@ aeC abX akK uux -amc +fmB bUm uux bHj @@ -83742,9 +83742,9 @@ ntu ydz xuq sXl -gkA +wAb chx -cTN +jxi sXl gih vsy @@ -84245,7 +84245,7 @@ acE aYz ajE aiV -akM +ors aYz uux uux @@ -84427,7 +84427,7 @@ aad aad aad uux -adR +neu aeh mcD adz @@ -84833,7 +84833,7 @@ abX akK uux amg -wUa +fIW uux aoV bAr @@ -85205,9 +85205,9 @@ abE abT abE aYz -acT -adx -adV +yll +fTN +iAP bAr bAr bAr @@ -85816,7 +85816,7 @@ aqU uux abX aeC -avj +wqI aww aeB adz @@ -87963,7 +87963,7 @@ abX aiV aei aiV -aye +fjs adz vEp vEp @@ -88152,7 +88152,7 @@ abX ady bAr apM -ara +lPK uux abX abX @@ -90287,7 +90287,7 @@ bEE bEE afd bEE -ajd +xpC ajI ajI uux @@ -90478,7 +90478,7 @@ bEE bEE afA aga -bop +prA bEE bEE bEE diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index c1d5cf029e..d1aa245ce2 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -2661,13 +2661,6 @@ icon_state = "red" }, /area/almayer/living/starboard_garden) -"aiQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "aiR" = ( /obj/structure/stairs{ dir = 8; @@ -10237,6 +10230,14 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"aIn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/computerlab) "aIo" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -10614,6 +10615,32 @@ /obj/docking_port/stationary/escape_pod/east, /turf/open/floor/plating, /area/almayer/hull/upper_hull/u_m_p) +"aJP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) "aJU" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -20120,6 +20147,16 @@ icon_state = "green" }, /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" + }, +/area/almayer/squads/req) "bGF" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 @@ -28193,18 +28230,6 @@ icon_state = "plate" }, /area/almayer/engineering/engineering_workshop) -"cEB" = ( -/obj/structure/phone_base/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) "cEC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28322,6 +28347,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"cHe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) "cHl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -28435,6 +28469,22 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"cJq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 + }, +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "cJu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -28770,6 +28820,16 @@ icon_state = "plate" }, /area/almayer/hull/lower_hull/l_f_p) +"cQO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/computerlab) "cRb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29512,6 +29572,18 @@ icon_state = "plate" }, /area/almayer/living/gym) +"dgm" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "dgx" = ( /turf/open/floor/almayer{ dir = 8; @@ -30300,16 +30372,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"dvD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/squads/req) "dvF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/ot{ @@ -31419,6 +31481,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"dTO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) "dTZ" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_side" @@ -31567,18 +31653,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliason) -"dWJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) "dWX" = ( /obj/structure/machinery/light{ dir = 8 @@ -31597,15 +31671,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"dXo" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "dXr" = ( /obj/structure/bed/chair{ dir = 8; @@ -31920,6 +31985,27 @@ /obj/structure/closet/firecloset, /turf/open/floor/almayer, /area/almayer/hallways/vehiclehangar) +"edW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) "eed" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -32174,6 +32260,28 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"eii" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/phone_base/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) "eim" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -34110,6 +34218,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"eYN" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Almayer"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -34981,6 +35098,27 @@ icon_state = "plate" }, /area/almayer/living/gym) +"fsx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) "fsz" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -35063,6 +35201,14 @@ icon_state = "plate" }, /area/almayer/hull/lower_hull/l_m_p) +"ftE" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "fut" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -35140,6 +35286,30 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"fvs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) "fvu" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -35880,25 +36050,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/general_equipment) -"fLS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SEA Office Shutters"; - name = "SEA Office Shutters"; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/structure/phone_base/rotary{ - name = "Senior Enlisted Advisor Office Telephone"; - phone_category = "Almayer"; - phone_id = "Senior Enlisted Advisor's Office"; - pixel_x = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) "fLX" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -35964,19 +36115,6 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) -"fMW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) "fNb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -36319,19 +36457,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/aft_hallway) -"fXE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -36530,30 +36655,6 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_f_p) -"gcI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "gcK" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -36635,6 +36736,19 @@ icon_state = "silvercorner" }, /area/almayer/hallways/repair_bay) +"gdJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) "gdS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -37232,6 +37346,10 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"grz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) "grG" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -37621,6 +37739,20 @@ icon_state = "orange" }, /area/almayer/hallways/starboard_hallway) +"gyI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/folder/black{ + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -37676,6 +37808,13 @@ icon_state = "plating" }, /area/almayer/engineering/engine_core) +"gzv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/command/computerlab) "gzw" = ( /obj/structure/closet/hydrant{ pixel_x = 30 @@ -39506,6 +39645,19 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"hnI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) "hnV" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -39550,10 +39702,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"hpz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) "hpN" = ( /obj/structure/machinery/light, /obj/structure/machinery/computer/crew, @@ -39916,12 +40064,6 @@ "hyQ" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) -"hzb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) "hzc" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/notunnel) @@ -40326,6 +40468,14 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_a_p) +"hIr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "hII" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -40434,43 +40584,6 @@ icon_state = "cargo_arrow" }, /area/almayer/engineering/engineering_workshop/hangar) -"hKU" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -10; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown"; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/phone_base/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" - }, -/obj/structure/machinery/door_control{ - id = "ARES Emergency"; - name = "ARES Emergency Lockdown"; - pixel_x = 10; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) "hLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -42339,24 +42452,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"iAi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/phone_base/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -42558,11 +42653,6 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) -"iFp" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/computerlab) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -42844,6 +42934,24 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"iLJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/phone_base{ + dir = 1; + name = "Brig Warden's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig Warden's Office"; + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) "iLO" = ( /turf/open/floor/almayer{ dir = 4; @@ -43316,6 +43424,15 @@ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"iWZ" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 @@ -44325,6 +44442,31 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) +"jod" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/clipboard{ + base_pixel_x = 20; + pixel_x = 5 + }, +/obj/item/paper{ + pixel_x = 5 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/phone_base/rotary{ + name = "CIC Reception Telephone"; + phone_category = "Command"; + phone_id = "CIC Reception"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) "jox" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = -32 @@ -44649,27 +44791,6 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 - }, -/obj/structure/phone_base/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -17; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "jxK" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -44701,6 +44822,11 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"jzy" = ( +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/computerlab) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -45040,6 +45166,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/general_equipment) +"jJr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/folder/red, +/obj/structure/phone_base/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig CMP's Office"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) "jJs" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -45909,24 +46047,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/upper_hull/u_a_p) -"kaS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/storage/photo_album{ - pixel_x = -6; - pixel_y = -17 - }, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "kbc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46542,6 +46662,14 @@ icon_state = "test_floor4" }, /area/almayer/hallways/aft_hallway) +"kqn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -47971,6 +48099,18 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"kUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) "kUt" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -48526,6 +48666,19 @@ }, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"lgS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) "lgX" = ( /obj/structure/sign/safety/storage{ pixel_y = 32 @@ -48692,25 +48845,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"ljL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/phone_base{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) "ljO" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -49185,12 +49319,31 @@ }, /turf/open/floor/plating, /area/almayer/hull/upper_hull/u_m_p) -"ltU" = ( -/obj/structure/filingcabinet, +"ltP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "silverfull" }, -/area/almayer/command/combat_correspondent) +/area/almayer/command/securestorage) "ltX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -49468,15 +49621,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lzt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) "lzx" = ( /turf/open/floor/almayer{ dir = 1; @@ -49672,6 +49816,14 @@ icon_state = "mono" }, /area/almayer/hallways/aft_hallway) +"lDf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "lDg" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "laddernorthwest"; @@ -50270,11 +50422,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) -"lPz" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) "lPB" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, @@ -50369,6 +50516,23 @@ icon_state = "green" }, /area/almayer/hallways/port_hallway) +"lRa" = ( +/obj/structure/closet/secure_closet, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/storage/box/tapes, +/obj/item/clothing/head/fedora, +/obj/item/clothing/suit/storage/marine/light/reporter, +/obj/item/clothing/head/helmet/marine/reporter, +/obj/item/clothing/head/cmcap/reporter, +/obj/item/device/flashlight, +/obj/item/device/toner, +/obj/item/device/toner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "lRs" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -50642,20 +50806,6 @@ icon_state = "test_floor4" }, /area/almayer/hull/lower_hull/l_m_s) -"maH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 - }, -/obj/item/device/binoculars, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -50688,6 +50838,25 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower_engineering) +"mbI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SEA Office Shutters"; + name = "SEA Office Shutters"; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/phone_base/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Almayer"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) "mce" = ( /turf/open/floor/almayer{ icon_state = "greencorner" @@ -51121,27 +51290,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/lower_hull/l_f_s) -"mmG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "mmN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -51491,13 +51639,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"mtN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/computerlab) "mtX" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/rifle/m41aMK1/ap, @@ -51858,31 +51999,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/clipboard{ - base_pixel_x = 20; - pixel_x = 5 - }, -/obj/item/paper{ - pixel_x = 5 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/phone_base/rotary{ - name = "CIC Reception Telephone"; - phone_category = "Command"; - phone_id = "CIC Reception"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -52134,6 +52250,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"mJb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "mJe" = ( /obj/structure/sign/safety/conference_room{ pixel_x = -17; @@ -52377,10 +52506,22 @@ icon_state = "orange" }, /area/almayer/hallways/stern_hallway) +"mMk" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "mMP" = ( /obj/effect/landmark/start/intel, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) +"mMU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) "mMV" = ( /obj/structure/pipes/vents/scrubber, /obj/item/device/radio/intercom{ @@ -53056,36 +53197,6 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"nbb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/phone_base{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"nbm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/phone_base{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) "nbB" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /turf/open/floor/almayer{ @@ -53370,6 +53481,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"nib" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) "nig" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -53451,6 +53568,24 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"niZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 + }, +/obj/structure/phone_base/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) "nja" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -54576,14 +54711,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"nHh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/computerlab) "nHF" = ( /turf/open/floor/plating, /area/almayer/hull/lower_hull/l_m_s) @@ -54720,6 +54847,43 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"nKQ" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -10; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/phone_base/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" + }, +/obj/structure/machinery/door_control{ + id = "ARES Emergency"; + name = "ARES Emergency Lockdown"; + pixel_x = 10; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) "nLa" = ( /obj/structure/bed/chair{ dir = 4 @@ -54788,6 +54952,18 @@ /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/hull/upper_hull/u_f_p) +"nLT" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) "nLZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55025,31 +55201,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/upper_hull/u_a_s) -"nQh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) "nQv" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -55206,6 +55357,15 @@ }, /turf/open/floor/almayer, /area/almayer/hull/upper_hull/u_f_s) +"nUF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "nVe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/bridge{ @@ -55379,32 +55539,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"nYS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -55660,6 +55794,13 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"oeJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/computerlab) "oeL" = ( /obj/structure/machinery/vending/coffee{ density = 0; @@ -56259,6 +56400,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"oqY" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/obj/structure/plasticflaps, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) "oqZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -57442,6 +57593,28 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) +"oRi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/machinery/light, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) "oRj" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -57974,13 +58147,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/aft_hallway) -"peT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/command/computerlab) "pfa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -58101,21 +58267,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"phj" = ( -/obj/item/clothing/head/helmet/marine/reporter, -/obj/item/clothing/suit/storage/marine/light/reporter, -/obj/item/clothing/head/cmcap/reporter, -/obj/item/clothing/head/fedora, -/obj/structure/closet/secure_closet, -/obj/item/storage/box/tapes, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "piO" = ( /obj/structure/surface/rack, /obj/item/tool/weldingtool, @@ -58203,6 +58354,24 @@ icon_state = "redfull" }, /area/almayer/squads/alpha_bravo_shared) +"plb" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) "plE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -58520,16 +58689,6 @@ "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"pud" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/computerlab) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -58629,24 +58788,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/lower_hull/l_f_s) -"pxd" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/phone_base{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -58930,16 +59071,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie) -"pDL" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/rotary{ - name = "Captain's Office"; - phone_category = "Offices"; - phone_id = "Captain's Office"; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) "pEl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -58958,18 +59089,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"pEt" = ( -/obj/structure/phone_base{ - name = "Brig Offices Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Main Offices"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "pEy" = ( /obj/item/ammo_casing/bullet, /turf/open/floor/plating/plating_catwalk, @@ -59054,16 +59173,6 @@ icon_state = "plate" }, /area/almayer/hull/lower_hull/l_a_p) -"pFQ" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/obj/structure/plasticflaps, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) "pGG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, @@ -59134,6 +59243,16 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/lower_hull/l_f_s) +"pGQ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -59852,6 +59971,11 @@ icon_state = "test_floor4" }, /area/almayer/engineering/engineering_workshop) +"pWp" = ( +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) "pWr" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -60180,6 +60304,20 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/starboard_hallway) +"qcn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 + }, +/obj/item/device/binoculars, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/starboard_missiles) "qcy" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -60638,6 +60776,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) +"qlX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "qmk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61329,18 +61475,6 @@ icon_state = "plating" }, /area/almayer/shipboard/port_point_defense) -"qzH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/folder/red, -/obj/structure/phone_base/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig CMP's Office"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) "qAA" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -62481,15 +62615,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"qZF" = ( -/obj/structure/phone_base/rotary{ - name = "CL Office Telephone"; - phone_category = "Almayer"; - phone_id = "CL Office" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) "qZH" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -63261,6 +63386,13 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"rpM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "rpW" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -63349,6 +63481,47 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) +"rrI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -64735,6 +64908,25 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) +"rYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) "rYi" = ( /obj/structure/bed/chair, /obj/structure/machinery/power/apc/almayer{ @@ -65654,6 +65846,16 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"sth" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + name = "Captain's Office"; + phone_category = "Offices"; + phone_id = "Captain's Office"; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) "sti" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/balaclavas, @@ -65936,19 +66138,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"sAj" = ( -/obj/structure/phone_base{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) "sAm" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -66409,13 +66598,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"sJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) "sJY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -66456,6 +66638,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/starboard_hallway) +"sLW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) "sMs" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 @@ -66862,6 +67066,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"sVS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Cells"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) "sWW" = ( /obj/structure/machinery/flasher{ alpha = 1; @@ -67404,6 +67619,19 @@ icon_state = "plating" }, /area/almayer/shipboard/brig/armory) +"tgd" = ( +/obj/structure/phone_base{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) "tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68137,6 +68365,13 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"tuX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) "tuZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -69388,22 +69623,20 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_f_s) -"tYW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Cells"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) "tYX" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) +"tZa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) "tZc" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -70244,27 +70477,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"uqB" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/phone_base{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/ce_room) "uqH" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, @@ -70377,16 +70589,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering) -"utx" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) "utK" = ( /obj/structure/machinery/light{ dir = 4 @@ -70934,10 +71136,6 @@ icon_state = "orange" }, /area/almayer/hallways/stern_hallway) -"uBM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) "uBN" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -71059,24 +71257,6 @@ }, /turf/open/floor/almayer, /area/almayer/hull/upper_hull/u_f_p) -"uEK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/phone_base{ - dir = 1; - name = "Brig Warden's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig Warden's Office"; - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -71542,13 +71722,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"uPd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/command/computerlab) "uPr" = ( /turf/open/floor/almayer{ dir = 5; @@ -71684,47 +71857,6 @@ icon_state = "plate" }, /area/almayer/hull/lower_hull/l_f_p) -"uSH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "uSL" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -72133,6 +72265,16 @@ icon_state = "orange" }, /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" + }, +/area/almayer/squads/req) "vbS" = ( /obj/structure/closet/secure_closet/personal/patient{ name = "morgue closet" @@ -72188,19 +72330,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/general_equipment) -"vcJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) "vcK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -73667,14 +73796,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/hydroponics) -"vEf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "vEj" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -75182,15 +75303,6 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_a_s) -"whm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, -/area/almayer/command/airoom) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) @@ -75340,6 +75452,23 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"wke" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -75728,28 +75857,6 @@ icon_state = "green" }, /area/almayer/hallways/aft_hallway) -"wsx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/phone_base/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) "wsD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -76002,6 +76109,27 @@ icon_state = "plate" }, /area/almayer/medical/lower_medical_medbay) +"wxJ" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) "wxU" = ( /obj/item/ashtray/bronze{ pixel_x = 7; @@ -76392,6 +76520,13 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"wGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) "wGX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -77515,30 +77650,6 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_a_p) -"xcP" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/phone_base/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) "xdx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular/empty, @@ -78791,28 +78902,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"xDH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/machinery/light, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "xDQ" = ( /obj/structure/platform, /obj/item/trash/USCMtray{ @@ -79052,27 +79141,6 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"xIo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "xIw" = ( /obj/structure/machinery/brig_cell/cell_2{ pixel_x = 32 @@ -79676,14 +79744,6 @@ icon_state = "plate" }, /area/almayer/hull/upper_hull/u_m_s) -"xUV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -88045,7 +88105,7 @@ aTg pdG vAG dOL -qzH +jJr hwS wly wIC @@ -90471,7 +90531,7 @@ vBm vBm vBm vBm -pEt +dgm mLJ fkn gaJ @@ -91496,13 +91556,13 @@ gaJ gaJ tRA lMc -tYW +sVS cMl oeB rkL ldu eRL -uEK +iLJ vBm qJZ ohJ @@ -93820,7 +93880,7 @@ dqd uNL hJp kcp -nYS +aJP bTS bTS lxo @@ -96344,7 +96404,7 @@ aaa aaa aad aeE -maH +qcn ayq cfE cfE @@ -96392,7 +96452,7 @@ btD rVN rVN vly -vcJ +gdJ pun ajZ aaa @@ -97808,7 +97868,7 @@ ukU bfP fvv vcK -sJI +wGI tuA tuA tuA @@ -99006,9 +99066,9 @@ wVW wVW wVW swH -xDH +oRi wVW -gcI +dTO sEM wVW wVW @@ -99207,13 +99267,13 @@ apo fHh wVW lZs -mmG +edW sni ayz dAX aQg vpV -xIo +fsx aGp wVW aDv @@ -100818,7 +100878,7 @@ agj eYC agc fNb -pDL +sth agc agc hvH @@ -100834,7 +100894,7 @@ wVW rOC soX azX -uSH +rrI aCb aDv aEC @@ -101727,7 +101787,7 @@ nXP mNf hJp uNL -xcP +fvs xSI uZQ aoH @@ -102662,7 +102722,7 @@ aCj ayK aAd aAP -mCF +jod ayu aCj bYY @@ -104486,7 +104546,7 @@ umS yjM qbO aqw -fMW +hnI bYe amO wZM @@ -106106,7 +106166,7 @@ aiX aiX aiX sHM -dWJ +kUh aiX aiX aiX @@ -106423,7 +106483,7 @@ qyD omo blZ bqN -nbb +lgS bqN bwR gfW @@ -107652,7 +107712,7 @@ mWw apT apA arC -nbm +wke cSN asy atw @@ -109362,7 +109422,7 @@ ajl vtx ajl ajl -ljL +rYd fbB cyU bho @@ -111394,7 +111454,7 @@ lMv dVu eSo qmD -wsx +eii lJv aCt kXw @@ -112325,7 +112385,7 @@ vzP bJt hjB bJt -pxd +plb bDs gSk bDs @@ -112424,7 +112484,7 @@ bqy bYj eUR bsd -qZF +eYN bYj xne cNH @@ -118500,8 +118560,8 @@ avK aqU aCZ dgg -pud -uPd +cQO +gzv aHq sDC ajt @@ -119308,7 +119368,7 @@ mLE tmK avK aug -hKU +nKQ aqU lyE rsO @@ -119910,18 +119970,18 @@ uLu anC aiC ioU -nQh +ltP qPE xqD -lPz -iFp -nHh -iFp -iFp +pWp +jzy +aIn +jzy +jzy aHq cnE liJ -peT +mMU cbn aHq uLu @@ -120113,7 +120173,7 @@ aSz anG aiC ioU -lzt +cHe wTd cmK lFm @@ -120934,7 +120994,7 @@ oeM eed oeM eed -hpz +grz aRi aGN qrv @@ -121137,7 +121197,7 @@ fXx kXf huO iLO -mtN +oeJ xNv iLO bUa @@ -121435,7 +121495,7 @@ bdj bri bLX bdl -cEB +nLT bNP bmD bNP @@ -122664,7 +122724,7 @@ bZr bNQ bNQ bNQ -utx +bGz hMs cbw iEb @@ -122867,7 +122927,7 @@ bZr krN krN krN -pFQ +oqY can buH iEb @@ -122973,9 +123033,9 @@ alG anG apf oIB -oIB -oIB -oIB +sLW +cJq +gyI oIB sFR vuv @@ -123070,7 +123130,7 @@ bZr ibc uly bNN -dvD +vbR pky cbv cbS @@ -123176,9 +123236,9 @@ alG aYD uPI oIB -fXE -kaS -aiQ +mJb +hIr +ftE oIB sFR vuv @@ -123379,9 +123439,9 @@ sUF anG apd oIB -jxC -hzb -xUV +pGQ +bZw +kqn oIB sFR hPo @@ -123583,8 +123643,8 @@ aYD aTS qgK tEB -uBM -dXo +nib +rpM oIB lBR nVu @@ -123786,8 +123846,8 @@ anG mPX oIB wKF -bZw -ltU +tuX +lDf oIB fbx cFA @@ -123988,9 +124048,9 @@ aSC aZH iAB oIB -phj -vEf -pxj +iWZ +qlX +nUF oIB fbx cxo @@ -124191,9 +124251,9 @@ rFY ctC gPF oIB -oIB -oIB -oIB +lRa +mMk +pxj oIB fbx gHg @@ -124882,7 +124942,7 @@ sou bAX bdl wIr -sAj +tgd jAB iYt bMa @@ -125905,7 +125965,7 @@ qlz xYf skn bQX -fLS +mbI cLl qlz tez @@ -128631,7 +128691,7 @@ bNM iEr owg eNi -uqB +wxJ eJX sAC wYY @@ -138433,7 +138493,7 @@ lmz daz cwS ffE -whm +tZa wpw ffE ffE @@ -139660,7 +139720,7 @@ wyv pTt gAe rCi -iAi +niZ mUz our rna