diff --git a/code/__DEFINES/dcs/signals/atom/signals_obj.dm b/code/__DEFINES/dcs/signals/atom/signals_obj.dm
index c870a55ed746..ed27c26b2115 100644
--- a/code/__DEFINES/dcs/signals/atom/signals_obj.dm
+++ b/code/__DEFINES/dcs/signals/atom/signals_obj.dm
@@ -25,6 +25,8 @@
/// from /obj/structure/transmitter/update_icon()
#define COMSIG_TRANSMITTER_UPDATE_ICON "transmitter_update_icon"
+#define COMSIG_STRUCTURE_WRENCHED "structure_wrenched"
+#define COMSIG_STRUCTURE_UNWRENCHED "structure_unwrenched"
#define COMSIG_TENT_COLLAPSING "tent_collapsing"
/// from /obj/proc/afterbuckle()
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index 010c74c404c4..881c41182ab4 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -179,6 +179,8 @@
// HIVE TRAITS
/// If the Hive is a Xenonid Hive
#define TRAIT_XENONID "t_xenonid"
+/// If the hive or xeno can use objects.
+#define TRAIT_OPPOSABLE_THUMBS "t_thumbs"
/// If the Hive delays round end (this is overridden for some hives). Does not occur naturally. Must be applied in events.
#define TRAIT_NO_HIVE_DELAY "t_no_hive_delay"
/// If the Hive uses it's colors on the mobs. Does not occur naturally, excepting the Mutated hive.
diff --git a/code/controllers/subsystem/minimap.dm b/code/controllers/subsystem/minimap.dm
index 478848906047..ff250625043f 100644
--- a/code/controllers/subsystem/minimap.dm
+++ b/code/controllers/subsystem/minimap.dm
@@ -765,7 +765,7 @@ SUBSYSTEM_DEF(minimaps)
data["canDraw"] = FALSE
data["canViewTacmap"] = TRUE
data["canViewCanvas"] = FALSE
- data["isXeno"] = FALSE
+ data["isxeno"] = FALSE
return data
@@ -781,7 +781,7 @@ SUBSYSTEM_DEF(minimaps)
var/is_xeno = istype(xeno)
var/faction = is_xeno ? xeno.hivenumber : user.faction
- data["isXeno"] = is_xeno
+ data["isxeno"] = is_xeno
data["canViewTacmap"] = is_xeno
data["canViewCanvas"] = faction == FACTION_MARINE || faction == XENO_HIVE_NORMAL
@@ -799,7 +799,7 @@ SUBSYSTEM_DEF(minimaps)
data["canDraw"] = FALSE
data["canViewTacmap"] = FALSE
data["canViewCanvas"] = TRUE
- data["isXeno"] = FALSE
+ data["isxeno"] = FALSE
return data
@@ -811,7 +811,7 @@ SUBSYSTEM_DEF(minimaps)
data["canDraw"] = FALSE
data["canViewTacmap"] = FALSE
data["canViewCanvas"] = TRUE
- data["isXeno"] = TRUE
+ data["isxeno"] = TRUE
return data
diff --git a/code/datums/action.dm b/code/datums/action.dm
index 3a597ad262b1..d1768655a2da 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -191,6 +191,8 @@
var/mob/living/carbon/human/human = owner
if(human.body_position == STANDING_UP)
return TRUE
+ if((HAS_TRAIT(owner, TRAIT_OPPOSABLE_THUMBS)) && !owner.is_mob_incapacitated())
+ return TRUE
/datum/action/item_action/update_button_icon()
button.overlays.Cut()
diff --git a/code/datums/emergency_calls/cmb.dm b/code/datums/emergency_calls/cmb.dm
index feb31cf0fe16..bbe2e161842a 100644
--- a/code/datums/emergency_calls/cmb.dm
+++ b/code/datums/emergency_calls/cmb.dm
@@ -54,7 +54,7 @@
print_backstory(mob)
- addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
/datum/emergency_call/cmb/print_backstory(mob/living/carbon/human/M)
@@ -160,7 +160,7 @@
print_backstory(mob)
- addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
/datum/emergency_call/cmb/anchorpoint/print_backstory(mob/living/carbon/human/M)
diff --git a/code/datums/emergency_calls/inspection.dm b/code/datums/emergency_calls/inspection.dm
index 031a9f210761..e473466f4fb8 100644
--- a/code/datums/emergency_calls/inspection.dm
+++ b/code/datums/emergency_calls/inspection.dm
@@ -258,7 +258,7 @@
print_backstory(mob)
- addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
/datum/emergency_call/inspection_cmb/print_backstory(mob/living/carbon/human/M)
@@ -341,4 +341,4 @@
print_backstory(mob)
- addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
diff --git a/code/datums/emergency_calls/xeno_cultists.dm b/code/datums/emergency_calls/xeno_cultists.dm
index f112511b5e22..5a69c4002105 100644
--- a/code/datums/emergency_calls/xeno_cultists.dm
+++ b/code/datums/emergency_calls/xeno_cultists.dm
@@ -34,4 +34,4 @@
arm_equipment(H, /datum/equipment_preset/other/xeno_cultist, TRUE, TRUE)
print_backstory(H)
- addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS)
diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm
index afcc9686cff5..6643cd6b805c 100644
--- a/code/game/machinery/cryo.dm
+++ b/code/game/machinery/cryo.dm
@@ -1,4 +1,8 @@
#define HEAT_CAPACITY_HUMAN 100 //249840 J/K, for a 72 kg person.
+#define DEATH_STAGE_NONE 0
+#define DEATH_STAGE_EARLY 1
+#define DEATH_STAGE_WARNING 2
+#define DEATH_STAGE_CRITICAL 3
/obj/structure/machinery/cryo_cell
name = "cryo cell"
@@ -19,6 +23,7 @@
var/mob/living/carbon/occupant = null
var/obj/item/reagent_container/glass/beaker = null
+ var/occupant_death_stage = DEATH_STAGE_NONE
/obj/structure/machinery/cryo_cell/Initialize()
. = ..()
@@ -28,19 +33,18 @@
QDEL_NULL(beaker)
. = ..()
-
/obj/structure/machinery/cryo_cell/process()
if(!on)
updateUsrDialog()
return
if(occupant)
- if(occupant.stat != DEAD)
- process_occupant()
- else
+ var/mob/living/carbon/human/human_occupant = occupant
+ if(occupant.stat == DEAD && (!istype(human_occupant) || human_occupant.undefibbable))
go_out(TRUE, TRUE) //Whether auto-eject is on or not, we don't permit literal deadbeats to hang around.
- playsound(src.loc, 'sound/machines/ping.ogg', 25, 1)
- visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("\The [src] pings: Patient is dead!")]")
+ display_message("Patient is dead!", warning = TRUE)
+ else
+ process_occupant()
updateUsrDialog()
return TRUE
@@ -116,13 +120,14 @@
data["beakerContents"] = beakerContents
return data
-/obj/structure/machinery/cryo_cell/ui_act(action, list/params)
+/obj/structure/machinery/cryo_cell/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
switch(action)
if("power")
on = !on
+ update_use_power(on ? USE_POWER_ACTIVE : USE_POWER_IDLE)
update_icon()
. = TRUE
if("eject")
@@ -143,7 +148,8 @@
if("notice")
release_notice = !release_notice
. = TRUE
- updateUsrDialog()
+
+ updateUsrDialog(ui.user)
/obj/structure/machinery/cryo_cell/attackby(obj/item/W, mob/living/user)
if(istype(W, /obj/item/reagent_container/glass))
@@ -158,34 +164,59 @@
beaker = W
var/reagentnames = ""
- for(var/datum/reagent/R in beaker.reagents.reagent_list)
- reagentnames += ";[R.name]"
+ for(var/datum/reagent/cur_reagent in beaker.reagents.reagent_list)
+ reagentnames += ";[cur_reagent.name]"
- msg_admin_niche("[key_name(user)] put \a [beaker] into \the [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]) [ADMIN_JMP(src.loc)].", 1)
+ msg_admin_niche("[key_name(user)] put \a [beaker] into [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]) [ADMIN_JMP(src.loc)].", 1)
if(user.drop_inv_item_to_loc(W, src))
- user.visible_message("[user] adds \a [W] to \the [src]!", "You add \a [W] to \the [src]!")
+ user.visible_message("[user] adds \a [W] to [src]!", "You add \a [W] to [src]!")
else if(istype(W, /obj/item/grab))
- if(isxeno(user)) return
- var/obj/item/grab/G = W
- if(!ismob(G.grabbed_thing))
+ if(isxeno(user))
+ return
+ var/obj/item/grab/grabber = W
+ if(!ismob(grabber.grabbed_thing))
return
- var/mob/M = G.grabbed_thing
- put_mob(M)
+ var/mob/grabbed_mob = grabber.grabbed_thing
+ put_mob(grabbed_mob)
- updateUsrDialog()
+ updateUsrDialog(user)
+/obj/structure/machinery/cryo_cell/power_change(area/master_area)
+ . = ..()
+ if((occupant || on) && operable())
+ update_use_power(USE_POWER_ACTIVE)
+ update_icon()
/obj/structure/machinery/cryo_cell/update_icon()
icon_state = initial(icon_state)
- icon_state = "[icon_state]-[on ? "on" : "off"]-[occupant ? "occupied" : "empty"]"
+ var/is_on = on && operable()
+ icon_state = "[icon_state]-[is_on ? "on" : "off"]-[occupant ? "occupied" : "empty"]"
/obj/structure/machinery/cryo_cell/proc/process_occupant()
- if(occupant)
- if(occupant.stat == DEAD)
- return
- occupant.bodytemperature += 2*(temperature - occupant.bodytemperature)
- occupant.bodytemperature = max(occupant.bodytemperature, temperature) // this is so ugly i'm sorry for doing it i'll fix it later i promise
+ if(!occupant)
+ return
+ if(!operable())
+ return
+
+ occupant.bodytemperature += 2*(temperature - occupant.bodytemperature)
+ occupant.bodytemperature = max(occupant.bodytemperature, temperature) // this is so ugly i'm sorry for doing it i'll fix it later i promise
+
+ // Warnings if dead
+ if(occupant.stat == DEAD && ishuman(occupant))
+ var/mob/living/carbon/human/human_occupant = occupant
+ var/old_state = occupant_death_stage
+ if(world.time > occupant.timeofdeath + human_occupant.revive_grace_period - 1 MINUTES)
+ occupant_death_stage = DEATH_STAGE_CRITICAL
+ else if(world.time > occupant.timeofdeath + human_occupant.revive_grace_period - 2.5 MINUTES)
+ occupant_death_stage = DEATH_STAGE_WARNING
+ else
+ occupant_death_stage = DEATH_STAGE_EARLY
+ if(old_state != occupant_death_stage)
+ display_message("Patient is critical!", warning = TRUE)
+
+ // Passive healing if alive and cold enough
+ if(occupant.stat != DEAD)
occupant.recalculate_move_delay = TRUE
occupant.set_stat(UNCONSCIOUS)
if(occupant.bodytemperature < T0C)
@@ -202,22 +233,39 @@
var/heal_brute = occupant.getBruteLoss() ? min(1, 20/occupant.getBruteLoss()) : 0
var/heal_fire = occupant.getFireLoss() ? min(1, 20/occupant.getFireLoss()) : 0
occupant.heal_limb_damage(heal_brute,heal_fire)
- var/has_cryo = occupant.reagents.get_reagent_amount("cryoxadone") >= 1
- var/has_clonexa = occupant.reagents.get_reagent_amount("clonexadone") >= 1
- var/has_cryo_medicine = has_cryo || has_clonexa
- if(beaker && !has_cryo_medicine)
- beaker.reagents.trans_to(occupant, 1, 10)
+
+ // Chemical healing if cryo meds are involved
+ if(beaker && occupant.reagents && beaker.reagents)
+ var/occupant_has_cryo_meds = occupant.reagents.get_reagent_amount("cryoxadone") >= 1 || occupant.reagents.get_reagent_amount("clonexadone") >= 1
+ var/beaker_has_cryo_meds = beaker.reagents.get_reagent_amount("cryoxadone") >= 1 || beaker.reagents.get_reagent_amount("clonexadone") >= 1
+
+ // To administer, either the occupant has cryo meds and the beaker doesn't or vice versa (not both)
+ var/can_administer = (occupant_has_cryo_meds ^ beaker_has_cryo_meds) && length(beaker.reagents.reagent_list)
+ if(can_administer && occupant_has_cryo_meds)
+ // If its the case of the occupant has cryo meds and not the beaker, we need to pace out the dosage
+ // So lets make sure they don't already have some of the beaker drugs
+ for(var/datum/reagent/cur_beaker_reagent in beaker.reagents.reagent_list)
+ for(var/datum/reagent/cur_occupant_reagent in occupant.reagents.reagent_list)
+ if(cur_beaker_reagent.id == cur_occupant_reagent.id)
+ can_administer = FALSE
+ break
+
+ if(can_administer)
+ beaker.reagents.trans_to(occupant, 5)
beaker.reagents.reaction(occupant)
- if(!occupant.getBruteLoss(TRUE) && !occupant.getFireLoss(TRUE) && !occupant.getCloneLoss() && autoeject) //release the patient automatically when brute and burn are handled on non-robotic limbs
- display_message("external wounds are")
+
+ if(autoeject)
+ //release the patient automatically when brute and burn are handled on non-robotic limbs
+ if(!occupant.getBruteLoss(TRUE) && !occupant.getFireLoss(TRUE) && !occupant.getCloneLoss())
+ display_message("Patient's external wounds are healed.")
go_out(TRUE)
return
- if(occupant.health >= 100 && autoeject)
- display_message("external wounds are")
+ if(occupant.health >= occupant.maxHealth)
+ display_message("Patient's external wounds are healed.")
go_out(TRUE)
return
-/obj/structure/machinery/cryo_cell/proc/go_out(auto_eject = null, dead = null)
+/obj/structure/machinery/cryo_cell/proc/go_out(auto_eject = FALSE, dead = FALSE)
if(!(occupant))
return
if(occupant.client)
@@ -235,66 +283,72 @@
if(occupant.bodytemperature < 261 && occupant.bodytemperature >= 70)
occupant.bodytemperature = 261
occupant.recalculate_move_delay = TRUE
- occupant = null
if(auto_eject) //Turn off and announce if auto-ejected because patient is recovered or dead.
on = FALSE
if(release_notice) //If auto-release notices are on as it should be, let the doctors know what's up
- playsound(src.loc, 'sound/machines/ping.ogg', 100, 14)
- var/reason = "Reason for release: Patient recovery."
+ var/reason = "Reason for release: Patient recovery."
if(dead)
- reason = "Reason for release: Patient death."
- ai_silent_announcement("Patient [occupant] has been automatically released from \the [src] at: [get_area(occupant)]. [reason]", MED_FREQ)
+ reason = "Reason for release: Patient death."
+ ai_silent_announcement("Patient [occupant] has been automatically released from [src] at: [sanitize_area((get_area(occupant))?.name)]. [reason]", ":m")
+ occupant = null
update_use_power(USE_POWER_IDLE)
update_icon()
return
-/obj/structure/machinery/cryo_cell/proc/put_mob(mob/living/carbon/M as mob)
+/obj/structure/machinery/cryo_cell/proc/put_mob(mob/living/carbon/cur_mob)
if(inoperable())
to_chat(usr, SPAN_DANGER("The cryo cell is not functioning."))
return
- if(!istype(M) || isxeno(M))
- to_chat(usr, SPAN_DANGER("The cryo cell cannot handle such a lifeform!"))
+ if(!istype(cur_mob) || isxeno(cur_mob))
+ to_chat(usr, SPAN_DANGER("The cryo cell cannot handle such a lifeform!"))
return
if(occupant)
- to_chat(usr, SPAN_DANGER("The cryo cell is already occupied!"))
+ to_chat(usr, SPAN_DANGER("The cryo cell is already occupied!"))
return
- if(M.abiotic())
+ if(cur_mob.abiotic())
to_chat(usr, SPAN_DANGER("Subject may not have abiotic items on."))
return
- if(do_after(usr, 20, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC))
- to_chat(usr, SPAN_NOTICE("You move [M.name] inside the cryo cell."))
- M.forceMove(src)
- if(M.health >= -100 && (M.health <= 0 || M.sleeping))
- to_chat(M, SPAN_NOTICE("You feel cold liquid surround you. Your skin starts to freeze up."))
- occupant = M
+ if(do_after(usr, 2 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC))
+ visible_message(SPAN_NOTICE("[usr] moves [usr == cur_mob ? "" : "[cur_mob] "]inside the cryo cell."))
+ cur_mob.forceMove(src)
+ if(cur_mob.health >= HEALTH_THRESHOLD_DEAD && (cur_mob.health <= 0 || cur_mob.sleeping))
+ to_chat(cur_mob, SPAN_NOTICE("You feel cold liquid surround you. Your skin starts to freeze up."))
+ occupant = cur_mob
+ occupant_death_stage = DEATH_STAGE_NONE
update_use_power(USE_POWER_ACTIVE)
update_icon()
return TRUE
-/obj/structure/machinery/cryo_cell/proc/display_message(msg)
- playsound(src.loc, 'sound/machines/ping.ogg', 25, 1)
- visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("\The [src] pings: Patient's " + msg + " healed.")]")
+/obj/structure/machinery/cryo_cell/proc/display_message(msg, silent = FALSE, warning = FALSE)
+ if(!silent)
+ if(warning)
+ playsound(loc, 'sound/machines/twobeep.ogg', 40)
+ else
+ playsound(loc, 'sound/machines/ping.ogg', 25, 1)
+ visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] [warning ? "beeps" : "pings"]: [msg]")]")
/obj/structure/machinery/cryo_cell/verb/move_eject()
set name = "Eject occupant"
set category = "Object"
set src in oview(1)
if(usr == occupant)//If the user is inside the tube...
- if(usr.stat == 2)//and he's not dead....
+ if(usr.stat == DEAD)//and he's not dead....
return
- if(alert(usr, "Would you like to activate the ejection sequence of the cryo cell? Healing may be in progress.", "Confirm", "Yes", "No") == "Yes")
+ if(tgui_alert(usr, "Would you like to activate the ejection sequence of the cryo cell? Healing may be in progress.", "Confirm", list("Yes", "No")) == "Yes")
to_chat(usr, SPAN_NOTICE("Cryo cell release sequence activated. This will take thirty seconds."))
- visible_message(SPAN_WARNING ("The cryo cell's tank starts draining as its ejection lights blare!"))
- sleep(300)
- if(!src || !usr || !occupant || (occupant != usr)) //Check if someone's released/replaced/bombed him already
- return
- go_out()//and release him from the eternal prison.
- else
- if(usr.stat != 0)
- return
- go_out()
- return
+ visible_message(SPAN_WARNING("The cryo cell's tank starts draining as its ejection lights blare!"))
+ addtimer(CALLBACK(src, PROC_REF(finish_eject), usr), 30 SECONDS, TIMER_UNIQUE|TIMER_NO_HASH_WAIT)
+ else
+ if(usr.stat != CONSCIOUS)
+ return
+ go_out()
+
+/obj/structure/machinery/cryo_cell/proc/finish_eject(mob/original)
+ //Check if someone's released/replaced/bombed him already
+ if(QDELETED(src) || QDELETED(original) || !occupant || occupant != original)
+ return
+ go_out()//and release him from the eternal prison.
/obj/structure/machinery/cryo_cell/verb/move_inside()
set name = "Move Inside"
@@ -309,8 +363,8 @@
//clickdrag code - "resist to get out" code is in living_verbs.dm
/obj/structure/machinery/cryo_cell/MouseDrop_T(mob/target, mob/user)
. = ..()
- var/mob/living/H = user
- if(!istype(H) || target != user) //cant make others get in. grab-click for this
+ var/mob/living/living_mob = user
+ if(!istype(living_mob) || target != user) //cant make others get in. grab-click for this
return
put_mob(target)
@@ -324,3 +378,8 @@
/datum/data/function/proc/display()
return
+
+#undef DEATH_STAGE_NONE
+#undef DEATH_STAGE_EARLY
+#undef DEATH_STAGE_WARNING
+#undef DEATH_STAGE_CRITICAL
diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm
index 88055a89f82b..a04dcd4d9212 100644
--- a/code/game/machinery/machinery.dm
+++ b/code/game/machinery/machinery.dm
@@ -254,6 +254,10 @@ Class Procs:
return TRUE
if(user.is_mob_incapacitated())
return TRUE
+ if(!(istype(user, /mob/living/carbon/human) || isRemoteControlling(user) || istype(user, /mob/living/carbon/xenomorph)))
+ if(!HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
+ to_chat(usr, SPAN_DANGER("You don't have the dexterity to do this!"))
+ return TRUE
if(!is_valid_user(user))
to_chat(usr, SPAN_DANGER("You don't have the dexterity to do this!"))
return TRUE
diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm
index bfb539043b26..c7443130b247 100644
--- a/code/game/machinery/vending/cm_vending.dm
+++ b/code/game/machinery/vending/cm_vending.dm
@@ -373,41 +373,49 @@ GLOBAL_LIST_EMPTY(vending_products)
//------------INTERACTION PROCS---------------
-/obj/structure/machinery/cm_vending/attack_alien(mob/living/carbon/xenomorph/M)
+/obj/structure/machinery/cm_vending/attack_alien(mob/living/carbon/xenomorph/user)
if(stat & TIPPED_OVER || indestructible)
- to_chat(M, SPAN_WARNING("There's no reason to bother with that old piece of trash."))
+ to_chat(user, SPAN_WARNING("There's no reason to bother with that old piece of trash."))
return XENO_NO_DELAY_ACTION
- if(M.a_intent == INTENT_HARM && !unslashable)
- M.animation_attack_on(src)
- if(prob(M.melee_damage_lower))
+ if(user.a_intent == INTENT_HARM && !unslashable)
+ user.animation_attack_on(src)
+ if(prob(user.melee_damage_lower))
playsound(loc, 'sound/effects/metalhit.ogg', 25, 1)
- M.visible_message(SPAN_DANGER("[M] smashes [src] beyond recognition!"), \
+ user.visible_message(SPAN_DANGER("[user] smashes [src] beyond recognition!"), \
SPAN_DANGER("You enter a frenzy and smash [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT)
malfunction()
tip_over()
else
- M.visible_message(SPAN_DANGER("[M] slashes [src]!"), \
+ user.visible_message(SPAN_DANGER("[user] slashes [src]!"), \
SPAN_DANGER("You slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT)
playsound(loc, 'sound/effects/metalhit.ogg', 25, 1)
return XENO_ATTACK_ACTION
- if(M.action_busy)
+ if(user.action_busy)
return XENO_NO_DELAY_ACTION
-
- M.visible_message(SPAN_WARNING("[M] begins to lean against [src]."), \
+ if(user.a_intent == INTENT_HELP && user.IsAdvancedToolUser())
+ user.set_interaction(src)
+ tgui_interact(user)
+ if(!hacked)
+ to_chat(user, SPAN_WARNING("You slash open [src]'s front panel, revealing the items within."))
+ var/datum/effect_system/spark_spread/spark_system = new
+ spark_system.set_up(5, 5, get_turf(src))
+ hacked = TRUE
+ return XENO_ATTACK_ACTION
+ user.visible_message(SPAN_WARNING("[user] begins to lean against [src]."), \
SPAN_WARNING("You begin to lean against [src]."), null, 5, CHAT_TYPE_XENO_COMBAT)
var/shove_time = 80
- if(M.mob_size >= MOB_SIZE_BIG)
+ if(user.mob_size >= MOB_SIZE_BIG)
shove_time = 30
- if(istype(M,/mob/living/carbon/xenomorph/crusher))
+ if(istype(user,/mob/living/carbon/xenomorph/crusher))
shove_time = 15
- xeno_attack_delay(M) //Adds delay here and returns nothing because otherwise it'd cause lag *after* finishing the shove.
+ xeno_attack_delay(user) //Adds delay here and returns nothing because otherwise it'd cause lag *after* finishing the shove.
- if(do_after(M, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE))
- M.animation_attack_on(src)
- M.visible_message(SPAN_DANGER("[M] knocks [src] down!"), \
+ if(do_after(user, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE))
+ user.animation_attack_on(src)
+ user.visible_message(SPAN_DANGER("[user] knocks [src] down!"), \
SPAN_DANGER("You knock [src] down!"), null, 5, CHAT_TYPE_XENO_COMBAT)
tip_over()
return XENO_NO_DELAY_ACTION
@@ -508,7 +516,12 @@ GLOBAL_LIST_EMPTY(vending_products)
if(.)
return
- var/mob/living/carbon/human/user = usr
+ var/mob/living/carbon/human/human_user
+ var/mob/living/carbon/user = ui.user
+
+ if(ishuman(user))
+ human_user = usr
+
switch (action)
if ("vend")
if(stat & IN_USE)
@@ -528,8 +541,11 @@ GLOBAL_LIST_EMPTY(vending_products)
to_chat(usr, SPAN_WARNING("The floor is too cluttered, make some space."))
vend_fail()
return FALSE
-
- if((!user.assigned_squad && squad_tag) || (!user.assigned_squad?.omni_squad_vendor && (squad_tag && user.assigned_squad.name != squad_tag)))
+ if(HAS_TRAIT(user,TRAIT_OPPOSABLE_THUMBS)) // the big monster 7 ft with thumbs does not care for squads
+ vendor_successful_vend(itemspec, usr)
+ add_fingerprint(usr)
+ return TRUE
+ if((!human_user.assigned_squad && squad_tag) || (!human_user.assigned_squad?.omni_squad_vendor && (squad_tag && human_user.assigned_squad.name != squad_tag)))
to_chat(user, SPAN_WARNING("This machine isn't for your squad."))
vend_fail()
return FALSE
@@ -554,7 +570,7 @@ GLOBAL_LIST_EMPTY(vending_products)
to_chat(user, SPAN_WARNING("That set is already taken."))
vend_fail()
return FALSE
- var/obj/item/card/id/ID = user.wear_id
+ var/obj/item/card/id/ID = human_user.wear_id
if(!istype(ID) || !ID.check_biometrics(user))
to_chat(user, SPAN_WARNING("You must be wearing your [SPAN_INFO("dog tags")] to select a specialization!"))
return FALSE
@@ -584,7 +600,7 @@ GLOBAL_LIST_EMPTY(vending_products)
to_chat(user, SPAN_WARNING("Something bad occurred with [src], tell a Dev."))
vend_fail()
return FALSE
- ID.set_assignment((user.assigned_squad ? (user.assigned_squad.name + " ") : "") + JOB_SQUAD_SPECIALIST + " ([specialist_assignment])")
+ ID.set_assignment((human_user.assigned_squad ? (human_user.assigned_squad.name + " ") : "") + JOB_SQUAD_SPECIALIST + " ([specialist_assignment])")
GLOB.data_core.manifest_modify(user.real_name, WEAKREF(user), ID.assignment)
GLOB.available_specialist_sets -= p_name
else if(vendor_role.Find(JOB_SYNTH))
@@ -777,6 +793,8 @@ GLOBAL_LIST_EMPTY(vending_products)
return listed_products
/obj/structure/machinery/cm_vending/proc/can_access_to_vend(mob/user, display = TRUE, ignore_hack = FALSE)
+ if(HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) // We're just going to skip the mess of access checks assuming xenos with thumbs are human and just allow them to access because it's funny
+ return TRUE
if(!hacked || ignore_hack)
if(!allowed(user))
if(display)
@@ -990,12 +1008,16 @@ GLOBAL_LIST_EMPTY(vending_products)
to_chat(user, SPAN_WARNING("\The [item_to_stock] needs to be fully charged to restock it!"))
return
- if(istype(item_to_stock, /obj/item/cell))
+ else if(istype(item_to_stock, /obj/item/cell))
var/obj/item/cell/C = item_to_stock
if(C.charge < C.maxcharge)
to_chat(user, SPAN_WARNING("\The [item_to_stock] needs to be fully charged to restock it!"))
return
+ else if(!additional_restock_checks(item_to_stock, user))
+ // the error message needs to go in the proc
+ return FALSE
+
if(item_to_stock.loc == user) //Inside the mob's inventory
if(item_to_stock.flags_item & WIELDED)
item_to_stock.unwield(user)
@@ -1013,6 +1035,10 @@ GLOBAL_LIST_EMPTY(vending_products)
updateUsrDialog()
return //We found our item, no reason to go on.
+/// additional restocking checks for individual vendor subtypes. Parse in item, do checks, return FALSE to fail. Include error message.
+/obj/structure/machinery/cm_vending/sorted/proc/additional_restock_checks(obj/item/item_to_stock, mob/user)
+ return TRUE
+
//sending an /empty ammo box type path here will return corresponding regular (full) type of this box
//if there is one set in corresponding_box_types or will return FALSE otherwise
/obj/structure/machinery/cm_vending/sorted/proc/return_corresponding_type(unusual_path)
diff --git a/code/game/machinery/vending/vendor_types/medical.dm b/code/game/machinery/vending/vendor_types/medical.dm
index 9750669ac88a..a867c9b61f29 100644
--- a/code/game/machinery/vending/vendor_types/medical.dm
+++ b/code/game/machinery/vending/vendor_types/medical.dm
@@ -1,3 +1,53 @@
+//------------SUPPLY LINK FOR MEDICAL VENDORS---------------
+
+/obj/structure/medical_supply_link
+ name = "medilink supply port"
+ desc = "A complex network of pipes and machinery, linking to large storage systems below the deck. Medical vendors linked to this port will be able to infinitely restock supplies."
+ icon = 'icons/effects/warning_stripes.dmi'
+ icon_state = "medlink_unclamped"
+ var/base_state = "medlink"
+ anchored = TRUE
+ density = FALSE
+ unslashable = TRUE
+ unacidable = TRUE
+ plane = FLOOR_PLANE
+ layer = ABOVE_TURF_LAYER //It's the floor, man
+
+/obj/structure/medical_supply_link/ex_act(severity, direction)
+ return FALSE
+
+/obj/structure/medical_supply_link/Initialize()
+ . = ..()
+ RegisterSignal(src, COMSIG_STRUCTURE_WRENCHED, PROC_REF(do_clamp_animation))
+ RegisterSignal(src, COMSIG_STRUCTURE_UNWRENCHED, PROC_REF(do_unclamp_animation))
+ update_icon()
+
+/// Performs the clamping animation when a structure is anchored in our loc
+/obj/structure/medical_supply_link/proc/do_clamp_animation()
+ SIGNAL_HANDLER
+ flick("[base_state]_clamping", src)
+ addtimer(CALLBACK(src, PROC_REF(update_icon), 2.6 SECONDS))
+ update_icon()
+
+/// Performs the unclamping animation when a structure is unanchored in our loc
+/obj/structure/medical_supply_link/proc/do_unclamp_animation()
+ SIGNAL_HANDLER
+ flick("[base_state]_unclamping", src)
+ addtimer(CALLBACK(src, PROC_REF(update_icon), 2.6 SECONDS))
+ update_icon()
+
+/obj/structure/medical_supply_link/update_icon()
+ var/obj/structure/machinery/cm_vending/sorted/medical/vendor = locate() in loc
+ if(vendor && vendor.anchored)
+ icon_state = "[base_state]_clamped"
+ else
+ icon_state = "[base_state]_unclamped"
+
+// --- Green
+/obj/structure/medical_supply_link/green
+ icon_state = "medlink_green_unclamped"
+ base_state = "medlink_green"
+
//------------SORTED MEDICAL VENDORS---------------
/obj/structure/machinery/cm_vending/sorted/medical
@@ -14,6 +64,9 @@
vendor_theme = VENDOR_THEME_COMPANY
vend_delay = 0.5 SECONDS
+ /// sets vendor to require a medlink to be able to resupply
+ var/requires_supply_link_port = TRUE
+
var/datum/health_scan/last_health_display
var/healthscan = TRUE
@@ -60,6 +113,36 @@
if(healthscan)
. += SPAN_NOTICE("The [src.name] offers assisted medical scan, for ease of usage with minimal training. Present the target in front of the scanner to scan.")
+/// checks if there is a supply link in our location and we are anchored to it
+/obj/structure/machinery/cm_vending/sorted/medical/proc/get_supply_link()
+ if(!anchored)
+ return FALSE
+ var/obj/structure/medical_supply_link/linkpoint = locate() in loc
+ if(!linkpoint)
+ return FALSE
+ return TRUE
+
+/obj/structure/machinery/cm_vending/sorted/medical/additional_restock_checks(obj/item/item_to_stock, mob/user)
+ if(istype(item_to_stock, /obj/item/reagent_container/hypospray/autoinjector) || istype(item_to_stock, /obj/item/reagent_container/glass/bottle))
+ if(requires_supply_link_port && !get_supply_link())
+ var/obj/item/reagent_container/container = item_to_stock
+ if(container.reagents.total_volume < container.reagents.maximum_volume)
+ if(user)
+ to_chat(user, SPAN_WARNING("[src] makes a buzzing noise as it rejects [container.name]. Looks like this vendor cannot refill these without a connected supply link."))
+ playsound(src, 'sound/machines/buzz-sigh.ogg', 15, TRUE)
+ return FALSE
+
+ //stacked items handling if the vendor cannot restock partial stacks
+ else if(istype(item_to_stock, /obj/item/stack))
+ if(requires_supply_link_port && !get_supply_link())
+ var/obj/item/stack/restock_stack = item_to_stock
+ if(restock_stack.amount < restock_stack.max_amount) // if the stack is not full
+ if(user)
+ to_chat(user, SPAN_WARNING("[src] makes a buzzing noise as it rejects [restock_stack]. Looks like this vendor cannot restock these without a connected supply link."))
+ playsound(src, 'sound/machines/buzz-sigh.ogg', 15, TRUE)
+ return FALSE
+ return TRUE
+
/obj/structure/machinery/cm_vending/sorted/medical/attackby(obj/item/I, mob/user)
if(stat == WORKING && LAZYLEN(chem_refill) && (istype(I, /obj/item/reagent_container/hypospray/autoinjector) || istype(I, /obj/item/reagent_container/glass/bottle))) // only if we are completely fine and working
if(!hacked)
@@ -80,6 +163,11 @@
to_chat(user, SPAN_WARNING("[src] makes a warning noise. The [C.name] is currently full."))
return
+ if(requires_supply_link_port && !get_supply_link())
+ to_chat(user, SPAN_WARNING("[src] makes a buzzing noise as it rejects [C.name]. Looks like this vendor cannot refill these without a connected supply link."))
+ playsound(src, 'sound/machines/buzz-sigh.ogg', 15, TRUE)
+ return
+
to_chat(user, SPAN_NOTICE("[src] makes a whirring noise as it refills your [C.name]."))
// Since the reagent is deleted on use it's easier to make a new one instead of snowflake checking
var/obj/item/reagent_container/new_container = new C.type(src)
@@ -104,6 +192,11 @@
to_chat(user, SPAN_WARNING("[src] makes a warning noise. The [S.name] is currently fully stacked."))
return
+ if(requires_supply_link_port && !get_supply_link())
+ to_chat(user, SPAN_WARNING("[src] makes a buzzing noise as it rejects [S.name]. Looks like this vendor cannot restock these without a connected supply link."))
+ playsound(src, 'sound/machines/buzz-sigh.ogg', 15, TRUE)
+ return
+
to_chat(user, SPAN_NOTICE("[src] makes a whirring noise as it restocks your [S.name]."))
S.amount = S.max_amount
S.update_icon()
@@ -231,6 +324,7 @@
name = "\improper Medical Equipment Vendor"
desc = "A vending machine dispensing various pieces of medical equipment."
req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL)
+ requires_supply_link_port = FALSE
req_access = null
vendor_theme = VENDOR_THEME_CLF
@@ -272,6 +366,7 @@
name = "\improper Basic Medical Supplies Vendor"
desc = "A vending machine dispensing basic medical supplies."
req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL)
+ requires_supply_link_port = FALSE
req_access = null
vendor_theme = VENDOR_THEME_CLF
@@ -307,6 +402,7 @@
/obj/structure/machinery/cm_vending/sorted/medical/blood/antag
req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL)
+ requires_supply_link_port = FALSE
req_access = null
vendor_theme = VENDOR_THEME_CLF
@@ -315,6 +411,7 @@
desc = "Wall-mounted Medical Equipment Dispenser."
icon_state = "wallmed"
vend_delay = 0.7 SECONDS
+ requires_supply_link_port = FALSE
req_access = list()
diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm
index 9ce8390095e8..6eb5a333ec81 100644
--- a/code/game/machinery/vending/vendor_types/requisitions.dm
+++ b/code/game/machinery/vending/vendor_types/requisitions.dm
@@ -208,14 +208,14 @@
/obj/structure/machinery/cm_vending/sorted/cargo_ammo/populate_product_list(scale)
listed_products = list(
list("REGULAR AMMUNITION", -1, null, null),
- list("Box Of Buckshot Shells", round(scale * 20), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
- list("Box Of Flechette Shells", round(scale * 8), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
- list("Box Of Shotgun Slugs", round(scale * 20), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR),
- list("M4RA Magazine (10x24mm)", round(scale * 30), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR),
- list("M41A MK2 Magazine (10x24mm)", round(scale * 50), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
- list("M39 HV Magazine (10x20mm)", round(scale * 50), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR),
- list("M44 Speed Loader (.44)", round(scale * 40), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
- list("M4A3 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
+ list("Box Of Buckshot Shells", round(scale * 40), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
+ list("Box Of Flechette Shells", round(scale * 40), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
+ list("Box Of Shotgun Slugs", round(scale * 40), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR),
+ list("M4RA Magazine (10x24mm)", round(scale * 60), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR),
+ list("M41A MK2 Magazine (10x24mm)", round(scale * 100), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR),
+ list("M39 HV Magazine (10x20mm)", round(scale * 100), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR),
+ list("M44 Speed Loader (.44)", round(scale * 80), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR),
+ list("M4A3 Magazine (9mm)", round(scale * 100), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR),
list("ARMOR-PIERCING AMMUNITION", -1, null, null),
list("88 Mod 4 AP Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol/mod88, VENDOR_ITEM_REGULAR),
@@ -248,9 +248,9 @@
list("XM51 Magazine (16g)", round(scale * 3), /obj/item/ammo_magazine/rifle/xm51, VENDOR_ITEM_REGULAR),
list("SHOTGUN SHELL BOXES", -1, null, null),
- list("Shotgun Shell Box (Buckshot x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
- list("Shotgun Shell Box (Flechette x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
- list("Shotgun Shell Box (Slugs x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Buckshot x 100)", round(scale * 4), /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Flechette x 100)", round(scale * 4), /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR),
+ list("Shotgun Shell Box (Slugs x 100)", round(scale * 4), /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR),
list("Shotgun Shell Box (16g) (Breaching x 120)", 1, /obj/item/ammo_box/magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR),
)
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
index 2736de3a981d..d3662c785890 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm
@@ -7,7 +7,7 @@
desc = "An automated weapon rack hooked up to a big storage of standard-issue weapons."
icon_state = "guns"
req_access = list()
- req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_CARGO)
+ req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP)
hackable = TRUE
vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index f6aa2600f838..fb0103876301 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -461,6 +461,8 @@ cases. Override_icon_state should be a list.*/
if(item.flags_equip_slot & slotdefine2slotbit(slot))
if(is_type_in_list(item, uniform_restricted))
+ if(light_on)
+ turn_light(toggle_on = FALSE)
user.drop_inv_item_on_ground(src)
to_chat(user, SPAN_NOTICE("You drop \the [src] to the ground while unequipping \the [item]."))
diff --git a/code/game/objects/items/explosives/grenades/grenade.dm b/code/game/objects/items/explosives/grenades/grenade.dm
index 6b793233678d..b2f95646a966 100644
--- a/code/game/objects/items/explosives/grenades/grenade.dm
+++ b/code/game/objects/items/explosives/grenades/grenade.dm
@@ -36,7 +36,7 @@
to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!"))
return FALSE
- if(harmful && !user.allow_gun_usage)
+ if(harmful && ishuman(user) && !user.allow_gun_usage)
to_chat(user, SPAN_WARNING("Your programming prevents you from using this!"))
return FALSE
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index 5816b687ba6e..5e4bc8c726bd 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -351,6 +351,12 @@
/obj/item/storage/backpack/satchel/lockable/liaison
lock_overridable = FALSE
+/obj/item/storage/backpack/satchel/blue
+ icon_state = "satchel_blue"
+
+/obj/item/storage/backpack/satchel/black
+ icon_state = "satchel_black"
+
/obj/item/storage/backpack/satchel/norm
name = "satchel"
desc = "A trendy-looking satchel."
diff --git a/code/game/objects/items/storage/internal.dm b/code/game/objects/items/storage/internal.dm
index a491df12f086..4d196ab145aa 100644
--- a/code/game/objects/items/storage/internal.dm
+++ b/code/game/objects/items/storage/internal.dm
@@ -61,10 +61,13 @@
else
user.drop_inv_item_on_ground(master_item)
user.put_in_r_hand(master_item)
- return
else
user.drop_inv_item_on_ground(master_item)
user.put_in_r_hand(master_item)
+
+ if(master_item.light_on)
+ master_item.turn_light(toggle_on = FALSE)
+ return
if("l_hand")
if(master_item.time_to_unequip)
user.visible_message(SPAN_NOTICE("[user] starts taking off \the [master_item]."))
@@ -73,10 +76,13 @@
else
user.drop_inv_item_on_ground(master_item)
user.put_in_l_hand(master_item)
- return
else
user.drop_inv_item_on_ground(master_item)
user.put_in_l_hand(master_item)
+
+ if(master_item.light_on)
+ master_item.turn_light(toggle_on = FALSE)
+ return
master_item.add_fingerprint(user)
return FALSE
return FALSE
diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index 8a37eef3ee73..f589e9c5a52a 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -142,31 +142,39 @@
return "on [t_his] feet"
return "...somewhere?"
-/obj/proc/updateUsrDialog()
- if(in_use)
- var/is_in_use = 0
- var/list/nearby = viewers(1, src)
- for(var/mob/M in nearby)
- if ((M.client && M.interactee == src))
- is_in_use = 1
- attack_hand(M)
- if (isSilicon(usr))
- if (!(usr in nearby))
- if (usr.client && usr.interactee==src) // && M.interactee == src is omitted because if we triggered this by using the dialog, it doesn't matter if our machine changed in between triggering it and this - the dialog is probably still supposed to refresh.
- is_in_use = 1
- attack_remote(usr)
- in_use = is_in_use
+/obj/proc/updateUsrDialog(mob/user)
+ if(!user)
+ user = usr
+ if(!in_use || !user)
+ return
+
+ var/is_in_use = FALSE
+ var/list/nearby = viewers(1, src)
+ for(var/mob/cur_mob in nearby)
+ if(cur_mob.client && cur_mob.interactee == src)
+ is_in_use = TRUE
+ attack_hand(cur_mob)
+ if(isSilicon(user))
+ if(!(user in nearby))
+ if(user.client && user.interactee == src) // && M.interactee == src is omitted because if we triggered this by using the dialog, it doesn't matter if our machine changed in between triggering it and this - the dialog is probably still supposed to refresh.
+ is_in_use = TRUE
+ attack_remote(user)
+
+ in_use = is_in_use
/obj/proc/updateDialog()
// Check that people are actually using the machine. If not, don't update anymore.
- if(in_use)
- var/list/nearby = viewers(1, src)
- var/is_in_use = 0
- for(var/mob/M in nearby)
- if ((M.client && M.interactee == src))
- is_in_use = 1
- src.interact(M)
- in_use = is_in_use
+ if(!in_use)
+ return
+
+ var/is_in_use = FALSE
+ var/list/nearby = viewers(1, src)
+ for(var/mob/cur_mob in nearby)
+ if(cur_mob.client && cur_mob.interactee == src)
+ is_in_use = TRUE
+ interact(cur_mob)
+
+ in_use = is_in_use
/obj/proc/interact(mob/user)
return
@@ -269,7 +277,7 @@
if (!ismob(M) || (get_dist(src, user) > 1) || user.is_mob_restrained() || user.stat || buckled_mob || M.buckled || !isturf(user.loc))
return
- if (isxeno(user))
+ if (isxeno(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
to_chat(user, SPAN_WARNING("You don't have the dexterity to do that, try a nest."))
return
if (iszombie(user))
@@ -292,12 +300,12 @@
if(M.loc != src.loc)
return
. = buckle_mob(M)
- if (M.mob_size <= MOB_SIZE_XENO && M.stat == DEAD && istype(src, /obj/structure/bed/roller))
- do_buckle(M, user)
- return
- if (M.mob_size > MOB_SIZE_HUMAN)
- to_chat(user, SPAN_WARNING("[M] is too big to buckle in."))
- return
+ if (M.mob_size <= MOB_SIZE_XENO)
+ if ((M.stat == DEAD && istype(src, /obj/structure/bed/roller) || HAS_TRAIT(M, TRAIT_OPPOSABLE_THUMBS)))
+ do_buckle(M, user)
+ else if ((M.mob_size > MOB_SIZE_HUMAN))
+ to_chat(user, SPAN_WARNING("[M] is too big to buckle in."))
+ return
do_buckle(M, user)
// the actual buckling proc
diff --git a/code/game/objects/prop.dm b/code/game/objects/prop.dm
index c067a9730e70..ac94e8ab03b4 100644
--- a/code/game/objects/prop.dm
+++ b/code/game/objects/prop.dm
@@ -89,6 +89,11 @@
icon_state = "uscmflag2"
desc = "A miniature historical table flag of the United States Colonial Marines, in traditional scarlet and gold. The USCM logo sits in the center; an eagle is perched atop it and an anchor rests behind it."
+/obj/item/prop/tableflag/upp
+ name = "UPP table flag"
+ icon_state = "uppflag"
+ desc = "A miniature table flag of the Union of Progressive Peoples, consisting of 17 yellow stars, surrounding the bigger one in the middle on scarlet field."
+
/obj/item/prop/flower_vase
name = "flower vase"
icon_state = "flowervase"
diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm
index 2519ed2940d5..919f185ebe9e 100644
--- a/code/game/objects/structures.dm
+++ b/code/game/objects/structures.dm
@@ -219,8 +219,12 @@
playsound(loc, 'sound/items/Ratchet.ogg', 25, 1)
if(anchored)
user.visible_message(SPAN_NOTICE("[user] anchors [src] into place."),SPAN_NOTICE("You anchor [src] into place."))
+ for(var/obj/medlink in loc)
+ SEND_SIGNAL(medlink, COMSIG_STRUCTURE_WRENCHED, src)
else
user.visible_message(SPAN_NOTICE("[user] unanchors [src]."),SPAN_NOTICE("You unanchor [src]."))
+ for(var/obj/medlink in loc)
+ SEND_SIGNAL(medlink, COMSIG_STRUCTURE_UNWRENCHED, src)
return TRUE
/obj/structure/get_applying_acid_time()
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index e19d190c7442..d9bf8677bb56 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -107,6 +107,11 @@
desc = "This banner depicts Delta Squad's motto. The Marines of Delta Squad adopted it after picking an old bomber movie for movie night a while back."
icon_state = "maximumeffort"
+/obj/structure/sign/banners/united_americas_flag
+ name = "\improper United Americas flag"
+ desc = "A flag of the United Americas. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings."
+ icon_state = "uaflag"
+
//=====================//
// SEMIOTIC STANDARD //
//===================//
diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm
index c4698e5722c5..482139c03707 100644
--- a/code/game/supplyshuttle.dm
+++ b/code/game/supplyshuttle.dm
@@ -289,8 +289,8 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
/obj/structure/machinery/computer/supply_drop_console/proc/handle_supplydrop()
SHOULD_NOT_SLEEP(TRUE)
- var/obj/structure/closet/crate/C = check_pad()
- if(!C)
+ var/obj/structure/closet/crate/crate = check_pad()
+ if(!crate)
to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("No crate was detected on the drop pad. Get Requisitions on the line!")]")
return
@@ -316,19 +316,21 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The landing zone appears to be obstructed or out of bounds. Package would be lost on drop.")]")
return
- C.visible_message(SPAN_WARNING("\The [C] loads into a launch tube. Stand clear!"))
- current_squad.send_message("'[C.name]' supply drop incoming. Heads up!")
- current_squad.send_maptext(C.name, "Incoming Supply Drop:")
+ crate.visible_message(SPAN_WARNING("\The [crate] loads into a launch tube. Stand clear!"))
+ current_squad.send_message("'[crate.name]' supply drop incoming. Heads up!")
+ current_squad.send_maptext(crate.name, "Incoming Supply Drop:")
COOLDOWN_START(src, next_fire, drop_cooldown)
if(ismob(usr))
var/mob/M = usr
M.count_niche_stat(STATISTICS_NICHE_CRATES)
- playsound(C.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh
- var/obj/structure/droppod/supply/pod = new(null, C)
- C.forceMove(pod)
+ playsound(crate.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh
+ var/obj/structure/droppod/supply/pod = new(null, crate)
+ crate.forceMove(pod)
pod.launch(T)
- visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]")
+ log_ares_requisition("Supply Drop", "Launch [crate.name] to X[x_supply], Y[y_supply].", usr.real_name)
+ log_game("[key_name(usr)] launched supply drop '[crate.name]' to X[x_coord], Y[y_coord].")
+ visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[crate.name]' supply drop launched! Another launch will be available in five minutes.")]")
//A limited version of the above console
//Can't pick squads, drops less often
diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm
index e07f7324bcc2..b1a956abf756 100644
--- a/code/game/turfs/auto_turf.dm
+++ b/code/game/turfs/auto_turf.dm
@@ -198,7 +198,8 @@
while(bleed_layer > 0)
xeno_attack_delay(M)
- if(!do_after(M, 12, INTERRUPT_ALL, BUSY_ICON_FRIENDLY))
+ var/size = max(M.mob_size, 1)
+ if(!do_after(M, 12/size, INTERRUPT_ALL, BUSY_ICON_FRIENDLY))
return XENO_NO_DELAY_ACTION
if(!bleed_layer)
diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm
index 801bdcc87e18..ff0e9cc6ebaf 100644
--- a/code/modules/admin/tabs/event_tab.dm
+++ b/code/modules/admin/tabs/event_tab.dm
@@ -773,6 +773,7 @@
Spawn a nuke
Toggle PMC gun restrictions
Turn everyone into monkies
+ Give or take opposable thumbs and gun permits from xenos
"}
diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm
index da8743d6dead..ddb33a2ccc3f 100644
--- a/code/modules/admin/topic/topic_events.dm
+++ b/code/modules/admin/topic/topic_events.dm
@@ -93,6 +93,63 @@
message_admins("[key_name_admin(usr)] added [amount] research credits.")
GLOB.chemical_data.update_credits(amount)
+ if("xenothumbs")
+ var/grant = alert(usr, "Do you wish to grant or revoke Xenomorph firearms permits?", "Give or Take", "Grant", "Revoke", "Cancel")
+ if(grant == "Cancel")
+ return
+
+ var/list/mob/living/carbon/xenomorph/permit_recipients = list()
+ var/list/datum/hive_status/permit_hives = list()
+ switch(alert(usr, "Do you wish to do this for one Xeno or an entire hive?", "Recipients", "Xeno", "Hive", "All Xenos"))
+ if("Xeno")
+ permit_recipients += tgui_input_list(usr, "Select recipient Xenomorph:", "Armed Xenomorph", GLOB.living_xeno_list)
+ if(isnull(permit_recipients[1])) //Cancel button.
+ return
+ if("Hive")
+ permit_hives += GLOB.hive_datum[tgui_input_list(usr, "Select recipient hive:", "Armed Hive", GLOB.hive_datum)]
+ if(isnull(permit_hives[1])) //Cancel button.
+ return
+ permit_recipients = permit_hives[1].totalXenos.Copy()
+ if("All Xenos")
+ permit_recipients = GLOB.living_xeno_list.Copy()
+ for(var/H in GLOB.hive_datum)
+ permit_hives += GLOB.hive_datum[H]
+
+ var/list/handled_xenos = list()
+
+ for(var/mob/living/carbon/xenomorph/xeno as anything in permit_recipients)
+ if(QDELETED(xeno) || xeno.stat == DEAD) //Xenos might die before the admin picks them.
+ to_chat(usr, SPAN_HIGHDANGER("[xeno] died before her firearms permit could be issued!"))
+ continue
+ if(HAS_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS))
+ if(grant == "Revoke")
+ REMOVE_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS, TRAIT_SOURCE_HIVE)
+ to_chat(xeno, SPAN_XENOANNOUNCE("You forget how thumbs work. You feel a terrible sense of loss."))
+ handled_xenos += xeno
+ else if(grant == "Grant")
+ ADD_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS, TRAIT_SOURCE_HIVE)
+ to_chat(xeno, SPAN_XENOANNOUNCE("You suddenly comprehend the magic of opposable thumbs along with surprising kinesthetic intelligence. You could do... so much with this knowledge."))
+ handled_xenos += xeno
+
+ for(var/datum/hive_status/permit_hive as anything in permit_hives)
+ //Give or remove the trait from newly-born xenos in this hive.
+ if(grant == "Grant")
+ LAZYADD(permit_hive.hive_inherant_traits, TRAIT_OPPOSABLE_THUMBS)
+ else
+ LAZYREMOVE(permit_hive.hive_inherant_traits, TRAIT_OPPOSABLE_THUMBS)
+
+ if(!length(handled_xenos) && !length(permit_hives))
+ return
+
+ if(grant == "Grant")
+ message_admins("[usr] granted 2nd Amendment rights to [length(handled_xenos) > 1 ? "[length(handled_xenos)] xenos" : "[length(handled_xenos) == 1 ? "[handled_xenos[1]]" : "no xenos"]"]\
+ [length(permit_hives) > 1 ? " in all hives, and to any new xenos. Quite possibly we will all regret this." : "[length(permit_hives) == 1 ? " in [permit_hives[1]], and to any new xenos in that hive." : "."]"]")
+ else
+ message_admins("[usr] revoked 2nd Amendment rights from [length(handled_xenos) > 1 ? "[length(handled_xenos)] xenos" : "[length(handled_xenos) == 1 ? "[handled_xenos[1]]" : "no xenos"]"]\
+ [length(permit_hives) > 1 ? " in all hives, and from any new xenos." : "[length(permit_hives) == 1 ? " in [permit_hives[1]], and from any new xenos in that hive." : "."]"]")
+
+
+
/datum/admins/proc/create_humans_list(href_list)
if(SSticker?.current_state < GAME_STATE_PLAYING)
alert("Please wait until the game has started before spawning humans")
diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm
index e3658a64c2ab..3f8e2080f35e 100644
--- a/code/modules/clothing/gloves/color.dm
+++ b/code/modules/clothing/gloves/color.dm
@@ -1,8 +1,8 @@
/obj/item/clothing/gloves/yellow
desc = "These gloves will protect the wearer from electric shock."
name = "insulated gloves"
- icon_state = "lightbrown"
- item_state = "lightbrowngloves"
+ icon_state = "insulated"
+ item_state = "insulated"
siemens_coefficient = 0
permeability_coefficient = 0.05
flags_cold_protection = BODY_FLAG_HANDS
@@ -13,8 +13,8 @@
/obj/item/clothing/gloves/fyellow //Cheap Chinese Crap
desc = "These gloves are cheap copies of the coveted gloves, no way this can end badly."
name = "budget insulated gloves"
- icon_state = "lightbrown"
- item_state = "lightbrowngloves"
+ icon_state = "insulated"
+ item_state = "insulated"
siemens_coefficient = 1 //Set to a default of 1, gets overridden in New()
permeability_coefficient = 0.05
diff --git a/code/modules/clothing/gloves/marine_gloves.dm b/code/modules/clothing/gloves/marine_gloves.dm
index 092fb41d370f..6da362da30f4 100644
--- a/code/modules/clothing/gloves/marine_gloves.dm
+++ b/code/modules/clothing/gloves/marine_gloves.dm
@@ -38,8 +38,8 @@
/obj/item/clothing/gloves/marine/insulated
name = "marine insulated gloves"
desc = "These gloves will protect the wearer from electric shock."
- icon_state = "lightbrown"
- item_state = "lightbrowngloves"
+ icon_state = "insulated"
+ item_state = "insulated"
siemens_coefficient = 0
/obj/item/clothing/gloves/marine/black
diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm
index 19009606db35..6d2ad9934a40 100644
--- a/code/modules/clothing/suits/marine_armor/ert.dm
+++ b/code/modules/clothing/suits/marine_armor/ert.dm
@@ -79,13 +79,12 @@
item_state = "armor"
item_state_slots = null
contained_sprite = TRUE
+ slowdown = SLOWDOWN_ARMOR_LIGHT
flags_armor_protection = BODY_FLAG_CHEST
flags_cold_protection = BODY_FLAG_CHEST
flags_heat_protection = BODY_FLAG_CHEST
- slowdown = SLOWDOWN_ARMOR_NONE // only protects chest, but enables rapid movement
-
/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate/lead
desc = "A basic vest with a Weyland-Yutani badge on the right breast. This variant is worn by low-level guards that have elevated in rank due to 'good conduct in the field', also known as corporate bootlicking."
icon_state = "lead_armor"
diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm
index f7dd5be511ce..92eeea638fae 100644
--- a/code/modules/clothing/under/marine_uniform.dm
+++ b/code/modules/clothing/under/marine_uniform.dm
@@ -896,7 +896,7 @@
item_icons = list(
WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi',
)
-
+
/obj/item/clothing/under/marine/reporter/black
icon_state = "cc_black"
worn_state = "cc_black"
diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm
index 4fe8cc193ce6..413c2edda0c7 100644
--- a/code/modules/clothing/under/ties.dm
+++ b/code/modules/clothing/under/ties.dm
@@ -386,9 +386,19 @@
icon_state = "commandopatch"
/obj/item/clothing/accessory/patch/upp
+ name = "UPP patch"
+ desc = "A fire-resistant shoulder patch, worn by the men and women of the Union of Progressive Peoples Armed Collective."
+ icon_state = "upppatch"
+
+/obj/item/clothing/accessory/patch/upp/airborne
name = "UPP Airborne Reconnaissance patch"
desc = "A fire-resistant shoulder patch, worn by the men and women of the 173rd Airborne Reconnaissance Platoon."
- icon_state = "upppatch"
+ icon_state = "vdvpatch"
+
+/obj/item/clothing/accessory/patch/upp/naval
+ name = "UPP Naval Infantry patch"
+ desc = "A fire-resistant shoulder patch, worn by the men and women of the UPP Naval Infantry."
+ icon_state = "navalpatch"
/obj/item/clothing/accessory/poncho
name = "USCM Poncho"
diff --git a/code/modules/cm_marines/dropship_ammo.dm b/code/modules/cm_marines/dropship_ammo.dm
index 93768e218375..0926f2bcefff 100644
--- a/code/modules/cm_marines/dropship_ammo.dm
+++ b/code/modules/cm_marines/dropship_ammo.dm
@@ -144,7 +144,7 @@
ammo_used_per_firing = 40
point_cost = 275
fire_mission_delay = 2
- var/bullet_spread_range = 4 //how far from the real impact turf can bullets land
+ var/bullet_spread_range = 3 //how far from the real impact turf can bullets land
var/shrapnel_type = /datum/ammo/bullet/shrapnel/gau //For siming 30mm bullet impacts.
var/directhit_damage = 105 //how much damage is to be inflicted to a mob, this is here so that we can hit resting mobs.
var/penetration = 10 //AP value pretty much
@@ -169,27 +169,26 @@
for(var/i = 1 to ammo_used_per_firing)
sleep(1)
- for(var/j in 1 to 2) //rather than halving the sleep, were doubling the bullets shot "bang"
- var/turf/impact_tile = pick(turf_list)
- var/datum/cause_data/cause_data = create_cause_data(fired_from.name, source_mob)
- impact_tile.ex_act(EXPLOSION_THRESHOLD_VLOW, pick(GLOB.alldirs), cause_data)
- create_shrapnel(impact_tile,1,0,0,shrapnel_type,cause_data,FALSE,100) //simulates a bullet
- for(var/atom/movable/explosion_effect in impact_tile)
- if(iscarbon(explosion_effect))
- var/mob/living/carbon/bullet_effect = explosion_effect
- explosion_effect.ex_act(EXPLOSION_THRESHOLD_VLOW, null, cause_data)
- bullet_effect.apply_armoured_damage(directhit_damage,ARMOR_BULLET,BRUTE,null,penetration)
- else
- explosion_effect.ex_act(EXPLOSION_THRESHOLD_VLOW)
- new /obj/effect/particle_effect/expl_particles(impact_tile)
- if(!soundplaycooldown) //so we don't play the same sound 20 times very fast.
- playsound(impact_tile, 'sound/effects/gauimpact.ogg',40,1,20)
- soundplaycooldown = 3
- soundplaycooldown--
- if(!debriscooldown)
- impact_tile.ceiling_debris_check(1)
- debriscooldown = 6
- debriscooldown--
+ var/turf/impact_tile = pick(turf_list)
+ var/datum/cause_data/cause_data = create_cause_data(fired_from.name, source_mob)
+ impact_tile.ex_act(EXPLOSION_THRESHOLD_VLOW, pick(GLOB.alldirs), cause_data)
+ create_shrapnel(impact_tile,1,0,0,shrapnel_type,cause_data,FALSE,100) //simulates a bullet
+ for(var/atom/movable/explosion_effect in impact_tile)
+ if(iscarbon(explosion_effect))
+ var/mob/living/carbon/bullet_effect = explosion_effect
+ explosion_effect.ex_act(EXPLOSION_THRESHOLD_VLOW, null, cause_data)
+ bullet_effect.apply_armoured_damage(directhit_damage,ARMOR_BULLET,BRUTE,null,penetration)
+ else
+ explosion_effect.ex_act(EXPLOSION_THRESHOLD_VLOW)
+ new /obj/effect/particle_effect/expl_particles(impact_tile)
+ if(!soundplaycooldown) //so we don't play the same sound 20 times very fast.
+ playsound(impact_tile, 'sound/effects/gauimpact.ogg',40,1,20)
+ soundplaycooldown = 3
+ soundplaycooldown--
+ if(!debriscooldown)
+ impact_tile.ceiling_debris_check(1)
+ debriscooldown = 6
+ debriscooldown--
sleep(11) //speed of sound simulation
playsound(impact, 'sound/effects/gau.ogg',100,1,60)
diff --git a/code/modules/cm_marines/m2c.dm b/code/modules/cm_marines/m2c.dm
index dea7d80b50f9..23a9d243b134 100644
--- a/code/modules/cm_marines/m2c.dm
+++ b/code/modules/cm_marines/m2c.dm
@@ -73,7 +73,7 @@
icon_state = icon_name
/obj/item/device/m2c_gun/proc/check_can_setup(mob/user, turf/rotate_check, turf/open/OT, list/ACR)
- if(!ishuman(user))
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return FALSE
if(broken_gun)
to_chat(user, SPAN_WARNING("You can't set up \the [src], it's completely broken!"))
@@ -148,7 +148,7 @@
HMG.try_mount_gun(user)
/obj/item/device/m2c_gun/attackby(obj/item/O as obj, mob/user as mob)
- if(!ishuman(user))
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
if(!iswelder(O) || user.action_busy)
@@ -330,7 +330,7 @@
update_icon()
/obj/structure/machinery/m56d_hmg/auto/attackby(obj/item/O as obj, mob/user as mob)
- if(!ishuman(user))
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
// RELOADING
if(istype(O, /obj/item/ammo_magazine/m2c))
@@ -456,13 +456,12 @@
// DISASSEMBLY
/obj/structure/machinery/m56d_hmg/auto/MouseDrop(over_object, src_location, over_location)
- if(!ishuman(usr))
- return
- var/mob/living/carbon/human/user = usr
+ var/mob/living/carbon/user = usr
// If the user is unconscious or dead.
if(user.stat)
return
-
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
+ return
if(over_object == user && in_range(src, user))
if((rounds > 0) && (user.a_intent & (INTENT_GRAB)))
playsound(src.loc, 'sound/items/m56dauto_load.ogg', 75, 1)
diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm
index e68ef467faa9..489a7e528832 100644
--- a/code/modules/cm_marines/overwatch.dm
+++ b/code/modules/cm_marines/overwatch.dm
@@ -816,8 +816,8 @@
to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The [name] is busy processing another action!")]")
return
- var/obj/structure/closet/crate/C = locate() in current_squad.drop_pad.loc //This thing should ALWAYS exist.
- if(!istype(C))
+ var/obj/structure/closet/crate/crate = locate() in current_squad.drop_pad.loc //This thing should ALWAYS exist.
+ if(!istype(crate))
to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("No crate was detected on the drop pad. Get Requisitions on the line!")]")
return
@@ -844,17 +844,19 @@
return
busy = TRUE
- C.visible_message(SPAN_WARNING("\The [C] loads into a launch tube. Stand clear!"))
- SEND_SIGNAL(C, COMSIG_STRUCTURE_CRATE_SQUAD_LAUNCHED, current_squad)
+ crate.visible_message(SPAN_WARNING("\The [crate] loads into a launch tube. Stand clear!"))
+ SEND_SIGNAL(crate, COMSIG_STRUCTURE_CRATE_SQUAD_LAUNCHED, current_squad)
COOLDOWN_START(current_squad, next_supplydrop, 500 SECONDS)
if(ismob(usr))
var/mob/M = usr
M.count_niche_stat(STATISTICS_NICHE_CRATES)
- playsound(C.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh
- var/obj/structure/droppod/supply/pod = new(null, C)
+ playsound(crate.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh
+ var/obj/structure/droppod/supply/pod = new(null, crate)
pod.launch(T)
- visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]")
+ log_ares_requisition("Supply Drop", "Launch [crate.name] to X[x_supply], Y[y_supply].", usr.real_name)
+ log_game("[key_name(usr)] launched supply drop '[crate.name]' to X[x_coord], Y[y_coord].")
+ visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[crate.name]' supply drop launched! Another launch will be available in five minutes.")]")
busy = FALSE
/obj/structure/machinery/computer/overwatch/almayer
@@ -884,10 +886,14 @@
density = FALSE
unslashable = TRUE
unacidable = TRUE
+ plane = FLOOR_PLANE
layer = 2.1 //It's the floor, man
var/squad = SQUAD_MARINE_1
var/sending_package = 0
+/obj/structure/supply_drop/ex_act(severity, direction)
+ return FALSE
+
/obj/structure/supply_drop/Initialize(mapload, ...)
. = ..()
GLOB.supply_drop_list += src
diff --git a/code/modules/cm_marines/smartgun_mount.dm b/code/modules/cm_marines/smartgun_mount.dm
index 7cb3b4fa051b..b3035511cab7 100644
--- a/code/modules/cm_marines/smartgun_mount.dm
+++ b/code/modules/cm_marines/smartgun_mount.dm
@@ -70,7 +70,7 @@
return
/obj/item/device/m56d_gun/attackby(obj/item/O as obj, mob/user as mob)
- if(!ishuman(user))
+ if(!ishuman(user) || !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
if(QDELETED(O))
@@ -92,7 +92,7 @@
if(istype(machine, /obj/structure/machinery/m56d_hmg) || istype(machine, /obj/structure/machinery/m56d_post))
to_chat(user, SPAN_WARNING("This is too close to [machine]!"))
return
- if(!ishuman(user))
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
if(!has_mount)
return
@@ -188,7 +188,7 @@
/obj/item/device/m56d_post/attack_self(mob/user)
..()
- if(!ishuman(usr))
+ if(!ishuman(usr) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
if(SSinterior.in_interior(user))
to_chat(usr, SPAN_WARNING("It's too cramped in here to deploy \a [src]."))
@@ -296,9 +296,9 @@
return XENO_ATTACK_ACTION
/obj/structure/machinery/m56d_post/MouseDrop(over_object, src_location, over_location) //Drag the tripod onto you to fold it.
- if(!ishuman(usr))
+ var/mob/living/carbon/user = usr //this is us
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return
- var/mob/living/carbon/human/user = usr //this is us
if(over_object == user && in_range(src, user))
if(anchored && gun_mounted)
to_chat(user, SPAN_WARNING("\The [src] can't be folded while there's an unsecured gun mounted on it. Either complete the assembly or take the gun off with a crowbar."))
@@ -313,7 +313,7 @@
qdel(src)
/obj/structure/machinery/m56d_post/attackby(obj/item/O, mob/user)
- if(!ishuman(user)) //first make sure theres no funkiness
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) //first make sure theres no funkiness
return
if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) //rotate the mount
@@ -549,7 +549,7 @@
/obj/structure/machinery/m56d_hmg/get_examine_text(mob/user) //Let us see how much ammo we got in this thing.
. = ..()
- if(ishuman(user))
+ if(ishuman(user) || HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
if(rounds)
. += SPAN_NOTICE("It has [rounds] round\s out of [rounds_max].")
else
@@ -568,7 +568,7 @@
return
/obj/structure/machinery/m56d_hmg/attackby(obj/item/O as obj, mob/user as mob) //This will be how we take it apart.
- if(!ishuman(user))
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
return ..()
if(QDELETED(O))
@@ -692,16 +692,18 @@
update_health(round(P.damage / 10)) //Universal low damage to what amounts to a post with a gun.
return 1
-/obj/structure/machinery/m56d_hmg/attack_alien(mob/living/carbon/xenomorph/M) // Those Ayy lmaos.
- if(islarva(M))
+/obj/structure/machinery/m56d_hmg/attack_alien(mob/living/carbon/xenomorph/xeno) // Those Ayy lmaos.
+ if(islarva(xeno))
return //Larvae can't do shit
-
- M.visible_message(SPAN_DANGER("[M] has slashed [src]!"),
+ if(xeno.IsAdvancedToolUser() && xeno.a_intent == INTENT_HELP)
+ try_mount_gun(xeno)
+ return XENO_NO_DELAY_ACTION
+ xeno.visible_message(SPAN_DANGER("[xeno] has slashed [src]!"),
SPAN_DANGER("You slash [src]!"))
- M.animation_attack_on(src)
- M.flick_attack_overlay(src, "slash")
+ xeno.animation_attack_on(src)
+ xeno.flick_attack_overlay(src, "slash")
playsound(loc, "alien_claw_metal", 25)
- update_health(rand(M.melee_damage_lower,M.melee_damage_upper))
+ update_health(rand(xeno.melee_damage_lower,xeno.melee_damage_upper))
return XENO_ATTACK_ACTION
/obj/structure/machinery/m56d_hmg/proc/load_into_chamber()
@@ -841,17 +843,21 @@
// Try to man the gun
try_mount_gun(usr)
-/obj/structure/machinery/m56d_hmg/proc/try_mount_gun(mob/living/carbon/human/user)
+/obj/structure/machinery/m56d_hmg/proc/try_mount_gun(mob/living/carbon/user)
// If the user isn't a human.
if(!istype(user))
return
// If the user is unconscious or dead.
if(user.stat)
return
-
+ if(ishuman(user))
+ var/mob/living/carbon/human/human = user
+ if(!human.allow_gun_usage)
+ to_chat(user, SPAN_WARNING("You aren't allowed to use firearms!"))
+ return
// If the user isn't actually allowed to use guns.
- if(!user.allow_gun_usage)
- to_chat(user, SPAN_WARNING("You aren't allowed to use firearms!"))
+ else if (!HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
+ to_chat(user, SPAN_WARNING("You don't know what to do with [src]!"))
return
// If the user is invisible.
diff --git a/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm b/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm
index 99589582cbf6..358fe5ea26ec 100644
--- a/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm
+++ b/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm
@@ -25,7 +25,8 @@
if(2)
uniform.roll_suit_sleeves(new_human)
new_human.equip_to_slot_or_del(uniform, WEAR_BODY)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp (new_human), WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp(new_human), WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/airborne, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare(new_human), WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE)
@@ -205,6 +206,7 @@
new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_J_STORE)
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/partial, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/airborne, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/uppsynth, WEAR_R_STORE)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET)
diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm
index 64e24ea99efb..324fd8b77aa6 100644
--- a/code/modules/gear_presets/upp.dm
+++ b/code/modules/gear_presets/upp.dm
@@ -67,7 +67,6 @@
paygrade = PAY_SHORT_UE2
/datum/equipment_preset/upp/soldier/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
//face
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR)
//head
@@ -75,6 +74,8 @@
//body
var/obj/item/clothing/under/marine/veteran/UPP/UPP = new()
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET)
//limbs
@@ -256,6 +257,8 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD)
//body
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET) //medic should move fast
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/bizon/upp, WEAR_J_STORE)
//waist
@@ -428,6 +431,8 @@
var/obj/item/clothing/accessory/storage/tool_webbing/equipped/W = new()
UPP.attach_accessory(new_human, W)
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/sapper, WEAR_J_STORE)
@@ -554,6 +559,8 @@
//body
var/obj/item/clothing/under/marine/veteran/UPP/UPP = new()
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET)
//limbs
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET)
@@ -681,6 +688,8 @@
//body
var/obj/item/clothing/under/marine/veteran/UPP/UPP = new()
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET)
//limbs
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET)
@@ -813,6 +822,8 @@
var/obj/item/clothing/accessory/storage/webbing/W = new()
UPP.attach_accessory(new_human, W)
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
@@ -972,6 +983,8 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret, WEAR_HEAD)
//uniform
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/mp, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/mp, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET)
@@ -1131,6 +1144,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/officer, WEAR_JACKET)
@@ -1288,6 +1303,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/officer, WEAR_JACKET)
@@ -1446,6 +1463,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -1604,6 +1623,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -1762,6 +1783,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -1920,6 +1943,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -2078,6 +2103,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -2236,6 +2263,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -2394,6 +2423,8 @@
new_human.equip_to_slot_or_del(M, WEAR_BODY)
for(var/i in 1 to W.hold.storage_slots)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//jacket
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET)
@@ -2637,6 +2668,8 @@
var/obj/item/clothing/accessory/storage/tool_webbing/equipped/webbing = new()
UPP.attach_accessory(new_human, webbing)
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/bottle/tricordrazine, WEAR_IN_JACKET)
//waist
@@ -2782,7 +2815,6 @@
paygrade = PAY_SHORT_UE1
/datum/equipment_preset/upp/conscript/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
//back
var/maybebackpack = prob(20) ? pick(/obj/item/storage/backpack/lightpack/upp, /obj/item/storage/backpack/lightpack) : null
if(maybebackpack)
@@ -2798,6 +2830,8 @@
//body
var/obj/item/clothing/under/marine/veteran/UPP/UPP = new()
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
var/maybejacket = prob(50) ? pick(/obj/item/clothing/suit/storage/marine/faction/UPP/jacket, /obj/item/clothing/suit/storage/snow_suit/soviet) : null
if(maybejacket)
@@ -2896,9 +2930,10 @@
access = get_access(ACCESS_LIST_GLOBAL)
/datum/equipment_preset/upp/commando/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3016,9 +3051,10 @@
paygrade = PAY_SHORT_UC2
/datum/equipment_preset/upp/commando/medic/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/medic, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3183,9 +3219,10 @@
idtype = /obj/item/card/id/silver
/datum/equipment_preset/upp/commando/leader/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/command, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3326,6 +3363,8 @@
/datum/equipment_preset/upp/commando/low_threat/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3354,9 +3393,10 @@
name = "UPP Commando Medic"
/datum/equipment_preset/upp/commando/medic/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/medic, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3393,9 +3433,10 @@
name = "UPP Commando Leader"
/datum/equipment_preset/upp/commando/leader/load_gear(mob/living/carbon/human/new_human)
- //TODO: add backpacks and satchels
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/command, WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET)
@@ -3435,6 +3476,8 @@
/datum/equipment_preset/upp/tank/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/cct(new_human), WEAR_L_EAR)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES)
@@ -3570,6 +3613,8 @@
var/obj/item/clothing/accessory/storage/surg_vest/equipped/W = new()
UPP.attach_accessory(new_human, W)
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY)
//waist
new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/full, WEAR_WAIST)
new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/oxycodone, WEAR_IN_BELT)
diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm
index f817d7d421fa..cda77b4dd4f4 100644
--- a/code/modules/gear_presets/uscm_ship.dm
+++ b/code/modules/gear_presets/uscm_ship.dm
@@ -359,7 +359,7 @@
name = "USCM Cargo Technician (CT)"
flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE
- access = list(ACCESS_MARINE_CARGO, ACCESS_MARINE_PREP)
+ access = list(ACCESS_MARINE_CARGO)
assignment = JOB_CARGO_TECH
rank = JOB_CARGO_TECH
paygrade = PAY_SHORT_ME2
diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm
index c38ddbcd552c..d6d438441d20 100644
--- a/code/modules/mob/living/carbon/human/human_helpers.dm
+++ b/code/modules/mob/living/carbon/human/human_helpers.dm
@@ -206,18 +206,18 @@
return FALSE
-/mob/living/carbon/human/is_mob_restrained(check_grab = 1)
+/mob/living/carbon/human/is_mob_restrained(check_grab = TRUE)
if(check_grab && pulledby && pulledby.grab_level >= GRAB_AGGRESSIVE)
- return 1
+ return TRUE
if (handcuffed)
- return 1
+ return TRUE
if (istype(wear_suit, /obj/item/clothing/suit/straight_jacket))
- return 1
+ return TRUE
if (HAS_TRAIT(src, TRAIT_NESTED))
return TRUE
- return 0
+ return FALSE
/mob/living/carbon/human/proc/disable_special_flags()
status_flags |= CANPUSH
diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm
index 3d372376d1e7..7e6bd4231171 100644
--- a/code/modules/mob/living/carbon/human/inventory.dm
+++ b/code/modules/mob/living/carbon/human/inventory.dm
@@ -525,6 +525,8 @@
interact_item.add_fingerprint(src)
if(do_after(src, get_strip_delay(src, target_mob), INTERRUPT_ALL, BUSY_ICON_GENERIC, target_mob, INTERRUPT_MOVED, BUSY_ICON_GENERIC))
if(interact_item && Adjacent(target_mob) && interact_item == target_mob.get_item_by_slot(slot_to_process))
+ if(interact_item.light_on)
+ interact_item.turn_light(toggle_on = FALSE)
target_mob.drop_inv_item_on_ground(interact_item)
log_interact(src, target_mob, "[key_name(src)] removed [key_name(target_mob)]'s [interact_item.name] ([slot_to_process]) successfully.")
diff --git a/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm b/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm
index eafac03fd51f..9bf275a5448a 100644
--- a/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm
+++ b/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm
@@ -39,25 +39,35 @@
SHOULD_NOT_SLEEP(TRUE)
if(!reagents || undefibbable)
return // Double checking due to Life() funny background=1
- for(var/datum/reagent/generated/R in reagents.reagent_list)
+
+ var/has_cryo_medicine = reagents.get_reagent_amount("cryoxadone") >= 1 || reagents.get_reagent_amount("clonexadone") >= 1
+ if(has_cryo_medicine)
+ var/obj/structure/machinery/cryo_cell/cryo = loc
+ if(!istype(cryo) || !cryo.on || cryo.inoperable())
+ has_cryo_medicine = FALSE
+
+ for(var/datum/reagent/cur_reagent in reagents.reagent_list)
+ if(!has_cryo_medicine && !istype(cur_reagent, /datum/reagent/generated))
+ continue
+
var/list/mods = list( REAGENT_EFFECT = TRUE,
REAGENT_BOOST = FALSE,
REAGENT_PURGE = FALSE,
- REAGENT_FORCE = FALSE,
+ REAGENT_FORCE = has_cryo_medicine,
REAGENT_CANCEL = FALSE)
- for(var/datum/chem_property/P in R.properties)
- var/list/A = P.pre_process(src)
- if(!A)
+ for(var/datum/chem_property/cur_prop in cur_reagent.properties)
+ var/list/results = cur_prop.pre_process(src)
+ if(!results)
continue
- for(var/mod in A)
- mods[mod] |= A[mod]
+ for(var/mod in results)
+ mods[mod] |= results[mod]
if(mods[REAGENT_CANCEL])
return
if(mods[REAGENT_FORCE])
- R.handle_processing(src, mods, delta_time)
- R.holder.remove_reagent(R.id, R.custom_metabolism * delta_time)
+ cur_reagent.handle_processing(src, mods, delta_time)
+ cur_reagent.holder.remove_reagent(cur_reagent.id, cur_reagent.custom_metabolism * delta_time)
- R.handle_dead_processing(src, mods, delta_time)
+ cur_reagent.handle_dead_processing(src, mods, delta_time)
diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
index c25b52d1dd37..10f2af57b719 100644
--- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
+++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
@@ -649,6 +649,10 @@
tracked_marker = null
+ ///This permits xenos with thumbs to fire guns and arm grenades. God help us all.
+/mob/living/carbon/xenomorph/IsAdvancedToolUser()
+ return HAS_TRAIT(src, TRAIT_OPPOSABLE_THUMBS)
+
/mob/living/carbon/xenomorph/proc/do_nesting_host(mob/current_mob, nest_structural_base)
var/list/xeno_hands = list(get_active_hand(), get_inactive_hand())
diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
index 69ab18431237..16cfeca8f87e 100644
--- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
+++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
@@ -52,6 +52,8 @@
gender = NEUTER
icon_size = 48
black_market_value = KILL_MENDOZA
+ ///How much to horizontally adjust the sprites of held item onmobs by. Based on icon size. Most xenos have hands about the same height as a human's.
+ var/xeno_inhand_item_offset
dead_black_market_value = 50
light_system = MOVABLE_LIGHT
var/obj/item/clothing/suit/wear_suit = null
@@ -429,7 +431,7 @@
GLOB.living_xeno_list += src
GLOB.xeno_mob_list += src
-
+ xeno_inhand_item_offset = (icon_size - 32) * 0.5
// More setup stuff for names, abilities etc
update_icon_source()
generate_name()
diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
index 56f908389966..2ab5f6ae703d 100644
--- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
+++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm
@@ -7,92 +7,92 @@
* In that case, the first argument is always the attacker. For attack_alien, it should always be Xenomorph sub-types
*/
-
-/mob/living/carbon/human/attack_alien(mob/living/carbon/xenomorph/M, dam_bonus)
- if(M.fortify || HAS_TRAIT(M, TRAIT_ABILITY_BURROWED))
+// this proc could use refactoring at some point
+/mob/living/carbon/human/attack_alien(mob/living/carbon/xenomorph/attacking_xeno, dam_bonus)
+ if(attacking_xeno.fortify || HAS_TRAIT(attacking_xeno, TRAIT_ABILITY_BURROWED))
return XENO_NO_DELAY_ACTION
- var/intent = M.a_intent
+ var/intent = attacking_xeno.a_intent
- if(M.behavior_delegate)
- intent = M.behavior_delegate.override_intent(src)
+ if(attacking_xeno.behavior_delegate)
+ intent = attacking_xeno.behavior_delegate.override_intent(src)
//Reviewing the four primary intents
switch(intent)
if(INTENT_HELP)
if(on_fire)
- extinguish_mob(M)
+ extinguish_mob(attacking_xeno)
else
- M.visible_message(SPAN_NOTICE("[M] caresses [src] with its claws."), \
+ attacking_xeno.visible_message(SPAN_NOTICE("[attacking_xeno] caresses [src] with its claws."), \
SPAN_NOTICE("We caress [src] with our claws."), null, 5, CHAT_TYPE_XENO_FLUFF)
if(INTENT_GRAB)
- if(M == src || anchored || buckled)
+ if(attacking_xeno == src || anchored || buckled)
return XENO_NO_DELAY_ACTION
- if(check_shields(0, M.name)) // Blocking check
- M.visible_message(SPAN_DANGER("[M]'s grab is blocked by [src]'s shield!"), \
+ if(check_shields(0, attacking_xeno.name)) // Blocking check
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s grab is blocked by [src]'s shield!"), \
SPAN_DANGER("Our grab was blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT)
playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback
return XENO_ATTACK_ACTION
- if(Adjacent(M)) //Logic!
- M.start_pulling(src)
+ if(Adjacent(attacking_xeno)) //Logic!
+ attacking_xeno.start_pulling(src)
if(INTENT_HARM)
- if(M.can_not_harm(src))
- M.animation_attack_on(src)
- M.visible_message(SPAN_NOTICE("[M] nibbles [src]"), \
+ if(attacking_xeno.can_not_harm(src))
+ attacking_xeno.animation_attack_on(src)
+ attacking_xeno.visible_message(SPAN_NOTICE("[attacking_xeno] nibbles [src]"), \
SPAN_XENONOTICE("We nibble [src]"))
return XENO_ATTACK_ACTION
- if(M.behavior_delegate && M.behavior_delegate.handle_slash(src))
+ if(attacking_xeno.behavior_delegate && attacking_xeno.behavior_delegate.handle_slash(src))
return XENO_NO_DELAY_ACTION
if(stat == DEAD)
- to_chat(M, SPAN_WARNING("[src] is dead, why would we want to touch it?"))
+ to_chat(attacking_xeno, SPAN_WARNING("[src] is dead, why would we want to touch it?"))
return XENO_NO_DELAY_ACTION
- if(M.caste && !M.caste.is_intelligent)
+ if(attacking_xeno.caste && !attacking_xeno.caste.is_intelligent)
if(HAS_TRAIT(src, TRAIT_NESTED) && (status_flags & XENO_HOST))
for(var/obj/item/alien_embryo/embryo in src)
- if(HIVE_ALLIED_TO_HIVE(M.hivenumber, embryo.hivenumber))
- to_chat(M, SPAN_WARNING("We should not harm this host! It has a sister inside."))
+ if(HIVE_ALLIED_TO_HIVE(attacking_xeno.hivenumber, embryo.hivenumber))
+ to_chat(attacking_xeno, SPAN_WARNING("We should not harm this host! It has a sister inside."))
return XENO_NO_DELAY_ACTION
- if(check_shields(0, M.name)) // Blocking check
- M.visible_message(SPAN_DANGER("[M]'s slash is blocked by [src]'s shield!"), \
+ if(check_shields(0, attacking_xeno.name)) // Blocking check
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s slash is blocked by [src]'s shield!"), \
SPAN_DANGER("Our slash is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT)
playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback
return XENO_ATTACK_ACTION
//From this point, we are certain a full attack will go out. Calculate damage and modifiers
- M.track_slashes(M.caste_type) //Adds to slash stat.
- var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) + dam_bonus
+ attacking_xeno.track_slashes(attacking_xeno.caste_type) //Adds to slash stat.
+ var/damage = rand(attacking_xeno.melee_damage_lower, attacking_xeno.melee_damage_upper) + dam_bonus
var/acid_damage = 0
- if(M.burn_damage_lower)
- acid_damage = rand(M.burn_damage_lower, M.burn_damage_upper)
+ if(attacking_xeno.burn_damage_lower)
+ acid_damage = rand(attacking_xeno.burn_damage_lower, attacking_xeno.burn_damage_upper)
//Frenzy auras stack in a way, then the raw value is multipled by two to get the additive modifier
- if(M.frenzy_aura > 0)
- damage += (M.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER)
+ if(attacking_xeno.frenzy_aura > 0)
+ damage += (attacking_xeno.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER)
if(acid_damage)
- acid_damage += (M.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER)
+ acid_damage += (attacking_xeno.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER)
- M.animation_attack_on(src)
+ attacking_xeno.animation_attack_on(src)
//Somehow we will deal no damage on this attack
if(!damage)
- playsound(M.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1)
- M.animation_attack_on(src)
- M.visible_message(SPAN_DANGER("[M] lunges at [src]!"), \
+ playsound(attacking_xeno.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1)
+ attacking_xeno.animation_attack_on(src)
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] lunges at [src]!"), \
SPAN_DANGER("We lunge at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT)
return XENO_ATTACK_ACTION
- M.flick_attack_overlay(src, "slash")
+ attacking_xeno.flick_attack_overlay(src, "slash")
var/obj/limb/affecting
- affecting = get_limb(rand_zone(M.zone_selected, 70))
+ affecting = get_limb(rand_zone(attacking_xeno.zone_selected, 70))
if(!affecting) //No organ, just get a random one
affecting = get_limb(rand_zone(null, 0))
if(!affecting) //Still nothing??
@@ -100,17 +100,17 @@
var/armor_block = getarmor(affecting, ARMOR_MELEE)
- if(wear_mask && check_zone(M.zone_selected) == "head")
+ if(wear_mask && check_zone(attacking_xeno.zone_selected) == "head")
if(istype(wear_mask, /obj/item/clothing/mask/gas/yautja))
var/knock_chance = 1
- if(M.frenzy_aura > 0)
- knock_chance += 2 * M.frenzy_aura
- if(M.caste && M.caste.is_intelligent)
+ if(attacking_xeno.frenzy_aura > 0)
+ knock_chance += 2 * attacking_xeno.frenzy_aura
+ if(attacking_xeno.caste && attacking_xeno.caste.is_intelligent)
knock_chance += 2
knock_chance += min(round(damage * 0.25), 10) //Maximum of 15% chance.
if(prob(knock_chance))
playsound(loc, "alien_claw_metal", 25, 1)
- M.visible_message(SPAN_DANGER("[M] smashes off [src]'s [wear_mask.name]!"), \
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] smashes off [src]'s [wear_mask.name]!"), \
SPAN_DANGER("We smash off [src]'s [wear_mask.name]!"), null, 5)
drop_inv_item_on_ground(wear_mask)
if(isyautja(src))
@@ -121,42 +121,39 @@
var/n_damage = armor_damage_reduction(GLOB.marine_melee, damage, armor_block)
- if(M.behavior_delegate)
- n_damage = M.behavior_delegate.melee_attack_modify_damage(n_damage, src)
+ if(attacking_xeno.behavior_delegate)
+ n_damage = attacking_xeno.behavior_delegate.melee_attack_modify_damage(n_damage, src)
+ attacking_xeno.behavior_delegate.melee_attack_additional_effects_target(src)
+ attacking_xeno.behavior_delegate.melee_attack_additional_effects_self()
- if(M.behavior_delegate)
- var/datum/behavior_delegate/MD = M.behavior_delegate
- MD.melee_attack_additional_effects_target(src)
- MD.melee_attack_additional_effects_self()
-
- var/slash_noise = M.slash_sound
+ var/slash_noise = attacking_xeno.slash_sound
var/list/slashdata = list("n_damage" = n_damage, "slash_noise" = slash_noise)
- SEND_SIGNAL(src, COMSIG_HUMAN_XENO_ATTACK, slashdata, M)
+ SEND_SIGNAL(src, COMSIG_HUMAN_XENO_ATTACK, slashdata, attacking_xeno)
var/f_damage = slashdata["n_damage"]
slash_noise = slashdata["slash_noise"]
//The normal attack proceeds
playsound(loc, slash_noise, 25, TRUE)
- M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \
- SPAN_DANGER("We [M.slash_verb] [src]!"), null, null, CHAT_TYPE_XENO_COMBAT)
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] [attacking_xeno.slashes_verb] [src]!"), \
+ SPAN_DANGER("We [attacking_xeno.slash_verb] [src]!"), null, null, CHAT_TYPE_XENO_COMBAT)
- handle_blood_splatter(get_dir(M.loc, src.loc))
+ handle_blood_splatter(get_dir(attacking_xeno.loc, src.loc))
- last_damage_data = create_cause_data(initial(M.name), M)
+ last_damage_data = create_cause_data(initial(attacking_xeno.name), attacking_xeno)
//Logging, including anti-rulebreak logging
if(status_flags & XENO_HOST && stat != DEAD)
if(HAS_TRAIT(src, TRAIT_NESTED)) //Host was buckled to nest while infected, this is a rule break
- attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)] while they were infected and nested")
- M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)] while they were infected and nested")
- message_admins("[key_name(M)] [M.slash_verb]ed [key_name(src)] while they were infected and nested.") //This is a blatant rulebreak, so warn the admins
+ attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)] while they were infected and nested")
+ attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected and nested")
+ message_admins("[key_name(attacking_xeno)] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected and nested.") //This is a blatant rulebreak, so warn the admins
else //Host might be rogue, needs further investigation
- attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)] while they were infected")
- M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)] while they were infected")
+ attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)] while they were infected")
+ attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected")
else //Normal xenomorph friendship with benefits
- attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)]")
- M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)]")
- log_attack("[key_name(M)] [M.slash_verb]ed [key_name(src)]")
+ attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)]")
+ attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)]")
+ log_attack("[key_name(attacking_xeno)] [attacking_xeno.slash_verb]ed [key_name(src)]")
//nice messages so people know that armor works
if(f_damage <= 0.34*damage)
@@ -176,23 +173,22 @@
to_chat(src, SPAN_WARNING("Your armor softens the acid!"))
apply_damage(n_acid_damage, BURN, affecting) //Burn damage
- SEND_SIGNAL(M, COMSIG_HUMAN_ALIEN_ATTACK, src)
+ SEND_SIGNAL(attacking_xeno, COMSIG_HUMAN_ALIEN_ATTACK, src)
updatehealth()
if(INTENT_DISARM)
-
- if(M.legcuffed && isyautja(src))
- to_chat(M, SPAN_XENODANGER("We don't have the dexterity to tackle the headhunter with that thing on our leg!"))
+ if(attacking_xeno.legcuffed && isyautja(src))
+ to_chat(attacking_xeno, SPAN_XENODANGER("We don't have the dexterity to tackle the headhunter with that thing on our leg!"))
return XENO_NO_DELAY_ACTION
- M.animation_attack_on(src)
- if(check_shields(0, M.name)) // Blocking check
- M.visible_message(SPAN_DANGER("[M]'s tackle is blocked by [src]'s shield!"), \
+ attacking_xeno.animation_attack_on(src)
+ if(check_shields(0, attacking_xeno.name)) // Blocking check
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s tackle is blocked by [src]'s shield!"), \
SPAN_DANGER("We tackle is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT)
playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback
return XENO_ATTACK_ACTION
- M.flick_attack_overlay(src, "disarm")
+ attacking_xeno.flick_attack_overlay(src, "disarm")
var/tackle_mult = 1
var/tackle_min_offset = 0
@@ -202,22 +198,29 @@
tackle_min_offset += 2
tackle_max_offset += 2
- if(M.attempt_tackle(src, tackle_mult, tackle_min_offset, tackle_max_offset))
+ var/knocked_down
+ if(attacking_xeno.attempt_tackle(src, tackle_mult, tackle_min_offset, tackle_max_offset))
playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1)
- var/strength = rand(M.tacklestrength_min, M.tacklestrength_max)
+ var/strength = rand(attacking_xeno.tacklestrength_min, attacking_xeno.tacklestrength_max)
Stun(strength)
KnockDown(strength) // Purely for knockdown visuals. All the heavy lifting is done by Stun
- M.visible_message(SPAN_DANGER("[M] tackles down [src]!"), \
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tackles down [src]!"), \
SPAN_DANGER("We tackle down [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT)
- SEND_SIGNAL(src, COMSIG_MOB_TACKLED_DOWN, M)
+ SEND_SIGNAL(src, COMSIG_MOB_TACKLED_DOWN, attacking_xeno)
+ knocked_down = TRUE
else
playsound(loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1)
if (body_position == LYING_DOWN)
- M.visible_message(SPAN_DANGER("[M] tries to tackle [src], but they are already down!"), \
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tries to tackle [src], but they are already down!"), \
SPAN_DANGER("We try to tackle [src], but they are already down!"), null, 5, CHAT_TYPE_XENO_COMBAT)
else
- M.visible_message(SPAN_DANGER("[M] tries to tackle [src]"), \
+ attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tries to tackle [src]"), \
SPAN_DANGER("We try to tackle [src]"), null, 5, CHAT_TYPE_XENO_COMBAT)
+ knocked_down = FALSE
+
+ attacking_xeno.attack_log += "\[[time_stamp()]\] [knocked_down ? "S" : "Uns"]uccessfully tackled [key_name(src)]"
+ attack_log += "\[[time_stamp()]\] Has been [knocked_down ? "" : "un"]successfully tackled by [key_name(attacking_xeno)]"
+ log_attack("[key_name(attacking_xeno)] [knocked_down ? "" : "un"]successfully tackled [key_name(src)] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).")
return XENO_ATTACK_ACTION
@@ -311,7 +314,10 @@
//This proc is here to prevent Xenomorphs from picking up objects (default attack_hand behaviour)
//Note that this is overridden by every proc concerning a child of obj unless inherited
-/obj/item/attack_alien(mob/living/carbon/xenomorph/M)
+/obj/item/attack_alien(mob/living/carbon/xenomorph/xeno)
+ if(HAS_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS))
+ attack_hand(xeno)
+ return XENO_NONCOMBAT_ACTION
return
/obj/attack_larva(mob/living/carbon/xenomorph/larva/M)
@@ -378,10 +384,16 @@
//If we sent it to monkey we'd get some weird shit happening.
/obj/structure/attack_alien(mob/living/carbon/xenomorph/M)
// fuck off dont destroy my unslashables
- if(unslashable || health <= 0)
+ if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS))
to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly."))
return XENO_NO_DELAY_ACTION
+/obj/structure/magazine_box/attack_alien(mob/living/carbon/xenomorph/xeno)
+ if(HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS))
+ attack_hand(xeno)
+ return XENO_NONCOMBAT_ACTION
+ else
+ . = ..()
//Beds, nests and chairs - unbuckling
/obj/structure/bed/attack_alien(mob/living/carbon/xenomorph/M)
@@ -661,7 +673,7 @@
//Xenomorphs can't use machinery, not even the "intelligent" ones
//Exception is Queen and shuttles, because plot power
/obj/structure/machinery/attack_alien(mob/living/carbon/xenomorph/M)
- if(unslashable || health <= 0)
+ if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS))
to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly."))
return XENO_NO_DELAY_ACTION
@@ -680,7 +692,7 @@
// Destroying reagent dispensers
/obj/structure/reagent_dispensers/attack_alien(mob/living/carbon/xenomorph/M)
- if(unslashable || health <= 0)
+ if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS))
to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly."))
return XENO_NO_DELAY_ACTION
@@ -878,7 +890,8 @@
while(bleed_layer > 0)
xeno_attack_delay(M)
- if(!do_after(M, 12, INTERRUPT_ALL, BUSY_ICON_FRIENDLY))
+ var/size = max(M.mob_size, 1)
+ if(!do_after(M, 12/size, INTERRUPT_ALL, BUSY_ICON_FRIENDLY))
return XENO_NO_DELAY_ACTION
if(!bleed_layer)
diff --git a/code/modules/mob/living/carbon/xenomorph/update_icons.dm b/code/modules/mob/living/carbon/xenomorph/update_icons.dm
index 571f261ab981..cf84312657a3 100644
--- a/code/modules/mob/living/carbon/xenomorph/update_icons.dm
+++ b/code/modules/mob/living/carbon/xenomorph/update_icons.dm
@@ -148,7 +148,12 @@
var/t_state = r_hand.item_state
if(!t_state)
t_state = r_hand.icon_state
- overlays_standing[X_R_HAND_LAYER] = r_hand.get_mob_overlay(src, WEAR_R_HAND)
+ /*Move inhand image to the center of the sprite. Strictly speaking this should probably be like monkey get_offset_overlay_image() and tailor item icon
+ positions to the hands of the xeno, but outside of special occasions xenos can't really pick items up and this tends to look better than human default.*/
+ var/image/inhand_image = r_hand.get_mob_overlay(src, WEAR_R_HAND)
+ inhand_image.pixel_x = xeno_inhand_item_offset
+ overlays_standing[X_R_HAND_LAYER] = inhand_image
+
apply_overlay(X_R_HAND_LAYER)
/mob/living/carbon/xenomorph/update_inv_l_hand()
@@ -161,7 +166,13 @@
var/t_state = l_hand.item_state
if(!t_state)
t_state = l_hand.icon_state
- overlays_standing[X_L_HAND_LAYER] = l_hand.get_mob_overlay(src, WEAR_L_HAND)
+
+ /*Move inhand image overlay to the center of the sprite. Strictly speaking this should probably be like monkey get_offset_overlay_image() and tailor item icon
+ positions to the hands of the xeno, but outside of special occasions xenos can't really pick items up and this tends to look better than human default.*/
+ var/image/inhand_image = l_hand.get_mob_overlay(src, WEAR_L_HAND)
+ inhand_image.pixel_x = xeno_inhand_item_offset
+ overlays_standing[X_L_HAND_LAYER] = inhand_image
+
apply_overlay(X_L_HAND_LAYER)
/mob/living/carbon/xenomorph/update_inv_back()
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index d5190318715c..40a06b253c3e 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -224,19 +224,34 @@
/mob/living/resist_grab(moving_resist)
if(!pulledby)
return
- if(pulledby.grab_level)
- if(prob(50))
- playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7)
- visible_message(SPAN_DANGER("[src] has broken free of [pulledby]'s grip!"), null, null, 5)
- pulledby.stop_pulling()
- return 1
- if(moving_resist && client) //we resisted by trying to move
- visible_message(SPAN_DANGER("[src] struggles to break free of [pulledby]'s grip!"), null, null, 5)
- client.next_movement = world.time + (10*pulledby.grab_level) + client.move_delay
- else
+ // vars for checks of strengh
+ var/pulledby_is_strong = HAS_TRAIT(pulledby, TRAIT_SUPER_STRONG)
+ var/src_is_strong = HAS_TRAIT(src, TRAIT_SUPER_STRONG)
+
+ if(!pulledby.grab_level && (!pulledby_is_strong || src_is_strong)) // if passive grab, check if puller is stronger than src, and if not, break free
pulledby.stop_pulling()
- return 1
+ return TRUE
+ // Chance for person to break free of grip, defaults to 50.
+ var/chance = 50
+ if(src_is_strong && !isxeno(pulledby)) // no extra chance to resist warrior grabs
+ chance += 30 // you are strong, you can overpower them easier
+ if(pulledby_is_strong)
+ chance -= 30 // stronger grip
+ // above code means that if you are super strong, 80% chance to resist, otherwise, 20 percent. if both are super strong, standard 50.
+
+ if(prob(chance))
+ playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7)
+ visible_message(SPAN_DANGER("[src] has broken free of [pulledby]'s grip!"), max_distance = 5)
+ pulledby.stop_pulling()
+ return TRUE
+ if(moving_resist && client) //we resisted by trying to move
+ visible_message(SPAN_DANGER("[src] struggles to break free of [pulledby]'s grip!"), max_distance = 5)
+ // +1 delay if super strong, also done as passive grabs would have a modifier of 0 otherwise, causing spam
+ if(pulledby_is_strong && !src_is_strong)
+ client.next_movement = world.time + (10*(pulledby.grab_level + 1)) + client.move_delay
+ else
+ client.next_movement = world.time + (10*pulledby.grab_level) + client.move_delay
/mob/living/movement_delay()
. = ..()
diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm
index 68f169fa2b25..a9000eec5c28 100644
--- a/code/modules/projectiles/gun.dm
+++ b/code/modules/projectiles/gun.dm
@@ -1525,7 +1525,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed
return //We just put the gun up. Can't do it that fast
if(ismob(user)) //Could be an object firing the gun.
- if(!user.IsAdvancedToolUser())
+ if(!user.IsAdvancedToolUser() && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!"))
return
@@ -1755,7 +1755,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed
else
total_recoil -= user.skills.get_skill_level(SKILL_FIREARMS)*RECOIL_AMOUNT_TIER_5
- if(total_recoil > 0 && ishuman(user))
+ if(total_recoil > 0 && (ishuman(user) || HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)))
if(total_recoil >= 4)
shake_camera(user, total_recoil * 0.5, total_recoil)
else
@@ -1767,7 +1767,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed
/obj/item/weapon/gun/proc/muzzle_flash(angle,mob/user)
if(!muzzle_flash || flags_gun_features & GUN_SILENCED || isnull(angle))
return //We have to check for null angle here, as 0 can also be an angle.
- if(!istype(user) || !istype(user.loc,/turf))
+ if(!istype(user) || !isturf(user.loc))
return
var/prev_light = light_range
@@ -1776,12 +1776,12 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed
set_light_on(TRUE)
addtimer(CALLBACK(src, PROC_REF(reset_light_range), prev_light), 0.5 SECONDS)
- var/image_layer = (user && user.dir == SOUTH) ? MOB_LAYER+0.1 : MOB_LAYER-0.1
- var/offset = 5
-
- var/image/I = image('icons/obj/items/weapons/projectiles.dmi',user,muzzle_flash,image_layer)
+ var/image/I = image('icons/obj/items/weapons/projectiles.dmi', user, muzzle_flash, user.dir == NORTH ? ABOVE_LYING_MOB_LAYER : FLOAT_LAYER)
var/matrix/rotate = matrix() //Change the flash angle.
- rotate.Translate(0, offset)
+ if(iscarbonsizexeno(user))
+ var/mob/living/carbon/xenomorph/xeno = user
+ I.pixel_x = xeno.xeno_inhand_item_offset //To center it on the xeno sprite without being thrown off by rotation.
+ rotate.Translate(0, 5) //Y offset to push the flash overlay outwards.
rotate.Turn(angle)
I.transform = rotate
I.flick_overlay(user, 3)
diff --git a/code/modules/projectiles/gun_helpers.dm b/code/modules/projectiles/gun_helpers.dm
index 781db8fc1222..e5d0ef1c0ef8 100644
--- a/code/modules/projectiles/gun_helpers.dm
+++ b/code/modules/projectiles/gun_helpers.dm
@@ -312,7 +312,7 @@ DEFINES in setup.dm, referenced here.
var/tac_reload_time = 15
if(user.skills)
tac_reload_time = max(15 - 5*user.skills.get_skill_level(SKILL_FIREARMS), 5)
- if(do_after(user,tac_reload_time, INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && magazine.loc == old_mag_loc && !current_mag)
+ if(do_after(user,tac_reload_time, (INTERRUPT_ALL & (~INTERRUPT_MOVED)) , BUSY_ICON_FRIENDLY) && magazine.loc == old_mag_loc && !current_mag)
if(isstorage(magazine.loc))
var/obj/item/storage/master_storage = magazine.loc
master_storage.remove_from_storage(magazine)
@@ -460,9 +460,9 @@ DEFINES in setup.dm, referenced here.
else attack_verb = list("slashed", "stabbed", "speared", "torn", "punctured", "pierced", "gored") //Greater than 35
/obj/item/weapon/gun/proc/get_active_firearm(mob/user, restrictive = TRUE)
- if(!ishuman(usr))
- return
if(user.is_mob_incapacitated() || !isturf(usr.loc))
+ return
+ if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
to_chat(user, SPAN_WARNING("Not right now."))
return
@@ -782,7 +782,7 @@ DEFINES in setup.dm, referenced here.
if(flags_gun_features & GUN_BURST_FIRING)
return
- if(!ishuman(usr))
+ if(!ishuman(usr) && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS))
return
if(usr.is_mob_incapacitated() || !usr.loc || !isturf(usr.loc))
diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm
index 3aaeff519456..edb565158185 100644
--- a/code/modules/projectiles/projectile.dm
+++ b/code/modules/projectiles/projectile.dm
@@ -1062,7 +1062,7 @@
bullet_message(P, damaging = FALSE)
return
- if(isxeno(P.firer))
+ if(isxeno(P.firer) && ammo_flags & (AMMO_ACIDIC|AMMO_XENO)) //Xenomorph shooting spit. Xenos with thumbs and guns can fully FF.
var/mob/living/carbon/xenomorph/X = P.firer
if(X.can_not_harm(src))
bullet_ping(P)
diff --git a/code/modules/vehicles/interior/interactable/seats.dm b/code/modules/vehicles/interior/interactable/seats.dm
index 253b4a066b4f..8abbf9f1190d 100644
--- a/code/modules/vehicles/interior/interactable/seats.dm
+++ b/code/modules/vehicles/interior/interactable/seats.dm
@@ -108,7 +108,9 @@
to_chat(user, SPAN_WARNING("You are unable to use heavy weaponry."))
return
- for(var/obj/item/I in user.contents) //prevents shooting while zoomed in, but zoom can still be activated and used without shooting
+ if(!HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))
+ return
+ for(var/obj/item/I in user.contents) //prevents shooting while zoomed in, but zoom can still be activated and used without shooting
if(I.zoom)
I.zoom(user)
diff --git a/html/changelogs/AutoChangeLog-pr-5774.yml b/html/changelogs/AutoChangeLog-pr-5774.yml
deleted file mode 100644
index ec415ec2cd3f..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5774.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "Kaga"
-delete-after: True
-changes:
- - rscadd: "Added the XM43E1 Anti-Materiel Rifle as a pickable sidegrade option for USCM Sniper Specs through the vendor, mutually exclusive with the normal M42A Sniper Rifle. The AMR can shred obstacles, blow a hole through most infantry and their equipment, and even hit a collateral on multiple targets or through light cover, but its lack of specialized ammunition and small magazine mean that you'll need to make every shot count. Ammo can be bought from Req, at the same cost per magazine as the M42A."
- - balance: "Completely updated the XM43E1 AMR, adding damage falloff to its wall-piercing properties whenever it hits something alongside range loss. Most things reduce its damage by 20%. Dense walls and big xenos reduce both the damage and range 3 times as much."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-6064.yml b/html/changelogs/AutoChangeLog-pr-6064.yml
new file mode 100644
index 000000000000..95de949d8a9a
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-6064.yml
@@ -0,0 +1,7 @@
+author: "BadAtThisGame302"
+delete-after: True
+changes:
+ - rscadd: "Added the new UPPA and Naval Patches to all UPP inserts."
+ - bugfix: "Fixed the insulated gloves not having the insulated sprite."
+ - imageadd: "added a black and blue satchel, also an updated red armband sprite courtesy of AmoryBlaine"
+ - imageadd: "added a big UA flag, a UPP table and two new UPP patches all thanks to the folks over at PVE. AmoryBlaine, Morrow and AndroBetel"
\ No newline at end of file
diff --git a/html/changelogs/archive/2024-04.yml b/html/changelogs/archive/2024-04.yml
index 6e238ea64578..abaf0abb4d17 100644
--- a/html/changelogs/archive/2024-04.yml
+++ b/html/changelogs/archive/2024-04.yml
@@ -50,3 +50,63 @@
- code_imp: removes some redundant code on plasteel rods
vero5123:
- bugfix: fixes queen getting stuck in the lobby if they take too long
+2024-04-07:
+ Ben10083:
+ - balance: Mobs with super strength now have an advantage when resisting of a grab
+ is done, both as the grabber and the one being grabbed (Xenos not affected,
+ works as before).
+ - balance: Mobs with super strength no longer have their passive grabs a guaranteed
+ resist (unless both super).
+ Drathek:
+ - bugfix: Fixed objectives not getting displayed for CMB and cultist ERTs.
+ - balance: Cryotubes no longer multiply chemicals.
+ - balance: Cryotubes can now allow chemicals to process in dead if cryoxadone or
+ clonexadone is present.
+ - bugfix: Fixed cryotubes not actually updating their icons/power usage when they
+ become unpowered.
+ - bugfix: Fixed cryotubes healing despite inoperable.
+ - bugfix: The cryotube Eject Occupant verb now works for people other than the occupant
+ (useful if inoperable)
+ - ui: Cryotubes can optionally announce again on the medical channel.
+ InsaneRed:
+ - balance: Goon armor properly has slowdown now
+ Johannes2262:
+ - maptweak: All cell shutters are now linked to the button in the warden's office
+ Kaga:
+ - rscadd: Added the XM43E1 Anti-Materiel Rifle as a pickable sidegrade option for
+ USCM Sniper Specs through the vendor, mutually exclusive with the normal M42A
+ Sniper Rifle. The AMR can shred obstacles, blow a hole through most infantry
+ and their equipment, and even hit a collateral on multiple targets or through
+ light cover, but its lack of specialized ammunition and small magazine mean
+ that you'll need to make every shot count. Ammo can be bought from Req, at the
+ same cost per magazine as the M42A.
+ - balance: Completely updated the XM43E1 AMR, adding damage falloff to its wall-piercing
+ properties whenever it hits something alongside range loss. Most things reduce
+ its damage by 20%. Dense walls and big xenos reduce both the damage and range
+ 3 times as much.
+ NervanCatos:
+ - balance: removes CT access to marine prep weapons racks, doubles ammo count of
+ all regular ammo in req to compensate.
+ SabreML:
+ - admin: Added attack logging for Xeno tackling.
+ Vanagandr, totalepicness:
+ - rscadd: Added a button to event panel to give xenomorphs opposable thumbs and
+ firearms permits, to individuals, to hives, or to all xenos everywhere. They're
+ clumsy, though, and have issues with fine manipulation sometimes. Remember that
+ warriors cannot throw objects and make for poor grenadiers.
+ - rscadd: Xenos with opposable thumbs can use buckles, drive vehicles, use machine
+ guns and vendors without care for access or skills
+ Waseemq1235:
+ - mapadd: Added an APOLLO maintenance controller to the Warden's Office.
+ cuberound:
+ - balance: greatly decreses snow removal time, now it depends on xenomorph size
+ - balance: allows movement during tactical reload (to perform tactical reload click
+ and drag from a magazine to gun in your hand)
+ - balance: reduced GAU spread from 9x9 to 7x7
+ - balance: reduced GAU shots fired per shot back to 1 (bullets per tile from 0.99
+ to 0.82)
+ realforest2001:
+ - rscadd: Added ARES logging for launching supply drops.
+ - admin: Added staff logs for launching supply drops.
+ vero5123:
+ - bugfix: Fixes armor light staying on after removal.
diff --git a/icons/effects/warning_stripes.dmi b/icons/effects/warning_stripes.dmi
index c962ef88bfeb..f4eae17e3748 100644
Binary files a/icons/effects/warning_stripes.dmi and b/icons/effects/warning_stripes.dmi differ
diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi
index eba8a2d0289c..42d46bcc9abe 100644
Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ
diff --git a/icons/mob/humans/onmob/ties.dmi b/icons/mob/humans/onmob/ties.dmi
index 87581eb94168..535e2cc69181 100644
Binary files a/icons/mob/humans/onmob/ties.dmi and b/icons/mob/humans/onmob/ties.dmi differ
diff --git a/icons/obj/items/clothing/backpacks.dmi b/icons/obj/items/clothing/backpacks.dmi
index 13acfa42cc40..be2602f76c57 100644
Binary files a/icons/obj/items/clothing/backpacks.dmi and b/icons/obj/items/clothing/backpacks.dmi differ
diff --git a/icons/obj/items/clothing/ties.dmi b/icons/obj/items/clothing/ties.dmi
index 366f2acb3512..012eb4a9630a 100644
Binary files a/icons/obj/items/clothing/ties.dmi and b/icons/obj/items/clothing/ties.dmi differ
diff --git a/icons/obj/items/items.dmi b/icons/obj/items/items.dmi
index bf9b64474af5..c4d34d3b790c 100644
Binary files a/icons/obj/items/items.dmi and b/icons/obj/items/items.dmi differ
diff --git a/icons/obj/structures/props/banners.dmi b/icons/obj/structures/props/banners.dmi
index d45574de1185..ee30e197d21b 100644
Binary files a/icons/obj/structures/props/banners.dmi and b/icons/obj/structures/props/banners.dmi differ
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index 513e8739ad99..4f0b8de4d810 100644
--- a/maps/map_files/USS_Almayer/USS_Almayer.dmm
+++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm
@@ -119,6 +119,16 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
+"aaE" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aaF" = (
/obj/structure/stairs{
dir = 1;
@@ -208,12 +218,6 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/lifeboat_pumps/north1)
-"abz" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_f_p)
"abB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -508,9 +512,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"acB" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_a_p)
"acI" = (
/obj/structure/desertdam/decals/road_edge{
pixel_x = -12
@@ -578,7 +579,7 @@
/area/almayer/shipboard/weapon_room)
"acQ" = (
/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"acS" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -1045,15 +1046,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"afB" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north1)
"afE" = (
/obj/structure/machinery/vending/dinnerware,
/obj/structure/machinery/firealarm{
@@ -1730,6 +1722,12 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/weapon_room)
+"akh" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"akn" = (
/obj/structure/machinery/light{
dir = 4
@@ -1862,15 +1860,6 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
-"ale" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/north1)
"alf" = (
/obj/structure/machinery/light{
dir = 8
@@ -1939,27 +1928,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/upper_medical)
-"alF" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigmaint_s";
- dir = 1;
- name = "\improper Brig Maintenance"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "perma_lockdown_2";
- name = "\improper Perma Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/perma)
"alL" = (
/turf/closed/wall/almayer,
/area/almayer/command/telecomms)
@@ -2009,14 +1977,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/pilotbunks)
-"amc" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"amd" = (
/obj/structure/machinery/vending/cola{
density = 0;
@@ -2385,6 +2345,23 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
+"aoz" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aoA" = (
/obj/structure/machinery/light,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -2758,13 +2735,6 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering)
-"aqk" = (
-/obj/structure/sign/safety/escapepod{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/north1)
"aqm" = (
/obj/item/bedsheet/brown,
/obj/structure/bed,
@@ -3071,6 +3041,23 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
+"ary" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/obj/structure/machinery/door_control{
+ id = "OTStore";
+ name = "Shutters";
+ pixel_y = -24;
+ access_modified = 1;
+ req_one_access_txt = "35"
+ },
+/obj/structure/surface/rack,
+/obj/item/reagent_container/glass/bucket/janibucket,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower/workshop/hangar)
"arz" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -3182,11 +3169,6 @@
icon_state = "dark_sterile"
},
/area/almayer/living/pilotbunks)
-"ash" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/fore_hallway)
"asm" = (
/obj/structure/stairs{
dir = 4
@@ -3240,18 +3222,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north2)
-"asC" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
- closeOtherId = "brignorth";
- name = "\improper Brig Lobby"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/starboard_hallway)
"asD" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/door_control{
@@ -3280,20 +3250,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
-"asG" = (
-/obj/structure/surface/table/reinforced/almayer_B{
- climbable = 0;
- indestructible = 1;
- unacidable = 1;
- unslashable = 1
- },
-/obj/item/desk_bell{
- pixel_x = -6;
- pixel_y = 10;
- anchored = 1
- },
-/turf/open/floor/almayer/aicore/no_build,
-/area/almayer/command/airoom)
"asH" = (
/obj/structure/machinery/telecomms/bus/preset_three,
/turf/open/floor/almayer{
@@ -3522,11 +3478,43 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
+"atz" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"atH" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"atJ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"atK" = (
/turf/open/floor/almayer{
dir = 10;
@@ -3595,13 +3583,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/pilotbunks)
-"aub" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/north1)
"auc" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -3780,6 +3761,16 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
+"ava" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"avc" = (
/obj/structure/stairs/perspective{
dir = 4;
@@ -4262,10 +4253,6 @@
icon_state = "cargo"
},
/area/almayer/living/pilotbunks)
-"awY" = (
-/obj/effect/landmark/start/pilot/cas_pilot,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/pilotbunks)
"awZ" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/paper_bin/uscm{
@@ -4648,21 +4635,6 @@
icon_state = "silvercorner"
},
/area/almayer/command/cic)
-"ayt" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "CIC Lockdown";
- name = "\improper Combat Information Center Blast Door"
- },
-/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- closeOtherId = "ciclobby_n";
- name = "\improper Combat Information Center"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/command/cic)
"ayu" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -5095,28 +5067,13 @@
icon_state = "silvercorner"
},
/area/almayer/command/cic)
-"aAl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- closeOtherId = "ciclobby_n";
- id_tag = "cic_exterior";
- name = "\improper Combat Information Center"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "CIC Lockdown";
- name = "\improper Combat Information Center Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"aAn" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_x = 8;
+ pixel_y = -32
},
-/area/almayer/command/cic)
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
"aAq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -5523,15 +5480,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/synthcloset)
-"aBQ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/firstaid/o2,
-/obj/effect/spawner/random/tool,
-/obj/effect/spawner/random/technology_scanner,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"aBR" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/ashtray/glass,
@@ -6004,6 +5952,25 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
+"aEf" = (
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"aEg" = (
/turf/open/floor/almayer{
icon_state = "redfull"
@@ -6389,6 +6356,19 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
+"aGk" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Left";
+ name = "ARES Operations Shutter";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"aGm" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -6558,11 +6538,6 @@
/obj/structure/window/reinforced/tinted/frosted,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/numbertwobunks)
-"aHo" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"aHq" = (
/turf/closed/wall/almayer,
/area/almayer/command/computerlab)
@@ -6822,7 +6797,6 @@
/turf/open/floor/grass,
/area/almayer/living/starboard_garden)
"aIC" = (
-/obj/structure/surface/table/almayer,
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
@@ -6839,6 +6813,7 @@
/obj/item/reagent_container/glass/beaker/large{
pixel_x = -6
},
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "sterile_green_side"
},
@@ -7339,11 +7314,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"aLh" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/starboard)
"aLp" = (
/obj/structure/sign/safety/cryo{
pixel_x = 8;
@@ -7491,6 +7461,12 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
+"aMl" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"aMm" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/crowbar,
@@ -7545,6 +7521,11 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
+"aMy" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/starboard)
"aMz" = (
/turf/open/floor/almayer,
/area/almayer/squads/alpha)
@@ -7691,12 +7672,30 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha_bravo_shared)
+"aNE" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"aNI" = (
/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
+"aNO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"aNQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -7789,18 +7788,6 @@
icon_state = "cargo"
},
/area/almayer/command/telecomms)
-"aOw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"aOy" = (
/obj/structure/machinery/light{
dir = 1
@@ -7921,6 +7908,12 @@
"aOR" = (
/turf/open/floor/almayer,
/area/almayer/living/chapel)
+"aOS" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/upper/u_a_s)
"aOU" = (
/obj/structure/platform{
dir = 4
@@ -7972,6 +7965,14 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
+"aPg" = (
+/obj/structure/surface/table/almayer,
+/obj/item/frame/table,
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"aPi" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor/almayer{
@@ -8044,6 +8045,15 @@
icon_state = "emerald"
},
/area/almayer/command/cic)
+"aPC" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"aPD" = (
/obj/structure/machinery/photocopier,
/turf/open/floor/almayer{
@@ -8124,6 +8134,18 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"aPV" = (
+/obj/structure/sign/safety/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aQb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8174,6 +8196,13 @@
icon_state = "plate"
},
/area/almayer/living/offices)
+"aQx" = (
+/obj/structure/window/framed/almayer,
+/obj/structure/curtain/open/shower{
+ name = "hypersleep curtain"
+ },
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_p)
"aQy" = (
/obj/structure/transmitter{
dir = 8;
@@ -8312,14 +8341,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering)
-"aRl" = (
-/obj/structure/machinery/door_control/cl/office/door{
- pixel_y = -20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/midship_hallway)
"aRo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -8338,15 +8359,6 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"aRr" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"aRt" = (
/turf/open/floor/almayer{
dir = 8;
@@ -8537,18 +8549,6 @@
icon_state = "tcomms"
},
/area/almayer/engineering/lower/engine_core)
-"aSl" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "sterile_green_corner"
- },
-/area/almayer/medical/medical_science)
"aSn" = (
/obj/item/stack/sheet/mineral/plastic{
amount = 15
@@ -8986,6 +8986,15 @@
icon_state = "plate"
},
/area/almayer/living/captain_mess)
+"aUB" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aUC" = (
/obj/structure/machinery/light{
dir = 4
@@ -9147,6 +9156,16 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
+"aVK" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aVL" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -9376,6 +9395,12 @@
icon_state = "test_floor4"
},
/area/almayer/living/offices)
+"aWM" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"aWT" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -9540,12 +9565,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/operating_room_two)
-"aYU" = (
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"aZe" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -9945,6 +9964,19 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"bcg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/bed/sofa/south/white/left{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/maint/upper/u_m_p)
"bcm" = (
/turf/closed/wall/almayer,
/area/almayer/hallways/hangar)
@@ -9966,6 +9998,12 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"bct" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"bcw" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -10425,6 +10463,18 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
+"beN" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
"beP" = (
/obj/item/stack/catwalk,
/obj/structure/disposalpipe/segment{
@@ -10494,15 +10544,6 @@
icon_state = "green"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"bff" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"bfl" = (
/turf/open/floor/almayer{
dir = 5;
@@ -10665,12 +10706,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"bgh" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"bgj" = (
/obj/structure/machinery/landinglight/ds1{
dir = 8
@@ -10837,6 +10872,25 @@
icon_state = "test_floor4"
},
/area/almayer/living/chapel)
+"bgM" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
+"bgN" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"bgO" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -10885,6 +10939,23 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
+"bha" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"bhf" = (
/obj/structure/machinery/light{
dir = 4
@@ -10965,6 +11036,15 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
+"bhR" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"bhT" = (
/obj/structure/cargo_container/lockmart/mid{
layer = 3.1;
@@ -10992,23 +11072,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_p)
-"bhZ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/frame/table,
-/obj/item/storage/toolbox/electrical,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
-"bij" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"biq" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/beaker/large,
@@ -11056,15 +11119,6 @@
"biA" = (
/turf/closed/wall/almayer/white,
/area/almayer/medical/operating_room_three)
-"biB" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"biC" = (
/obj/structure/largecrate/random/case,
/obj/structure/machinery/access_button/airlock_exterior,
@@ -11115,13 +11169,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"biT" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north1)
"biV" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 8
@@ -11169,6 +11216,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"bjv" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"bjA" = (
/turf/open/floor/almayer{
dir = 9;
@@ -11207,14 +11261,11 @@
},
/area/almayer/hallways/hangar)
"bkb" = (
-/obj/structure/machinery/light{
- dir = 8
- },
/turf/open/floor/almayer{
dir = 4;
icon_state = "red"
},
-/area/almayer/hallways/upper/port)
+/area/almayer/hallways/upper/aft_hallway)
"bkd" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
@@ -11292,6 +11343,16 @@
},
/turf/open/floor/plating,
/area/almayer/medical/operating_room_one)
+"bkM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/maint/upper/u_m_p)
"bkN" = (
/obj/item/storage/firstaid/toxin{
pixel_x = 6;
@@ -11803,14 +11864,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/bravo)
-"bnF" = (
-/obj/structure/machinery/cryopod{
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/upper/u_m_p)
"bnH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -11968,11 +12021,6 @@
icon_state = "mono"
},
/area/almayer/squads/req)
-"boU" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/weldingtool,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
"boV" = (
/obj/structure/cargo_container/wy/left,
/obj/structure/prop/almayer/minigun_crate{
@@ -12314,12 +12362,6 @@
icon_state = "test_floor5"
},
/area/almayer/squads/req)
-"brm" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"brn" = (
/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart,
/turf/open/floor/almayer{
@@ -12577,6 +12619,10 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
+"btb" = (
+/obj/structure/window/framed/almayer,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_a_s)
"btc" = (
/obj/structure/bed/chair{
dir = 8;
@@ -12607,12 +12653,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"btu" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"btv" = (
/obj/structure/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -13034,15 +13074,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"bwN" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"bwP" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/plating/almayer{
@@ -13122,14 +13153,6 @@
icon_state = "redfull"
},
/area/almayer/living/cryo_cells)
-"bxt" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"bxA" = (
/obj/structure/machinery/power/apc/almayer/hardened,
/obj/effect/decal/warning_stripes{
@@ -13184,16 +13207,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/workshop)
-"bxV" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"bxY" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -13310,15 +13323,6 @@
icon_state = "silver"
},
/area/almayer/living/cryo_cells)
-"byH" = (
-/obj/structure/bed/sofa/south/white/right{
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/maint/upper/u_m_p)
"bzg" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -13520,12 +13524,6 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"bBc" = (
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"bBd" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -13637,6 +13635,11 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
+"bBH" = (
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"bBN" = (
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
@@ -13728,6 +13731,10 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_three)
+"bCs" = (
+/obj/docking_port/stationary/escape_pod/cl,
+/turf/open/floor/plating,
+/area/almayer/command/corporateliaison)
"bCu" = (
/obj/structure/bed/chair/comfy/alpha{
dir = 4
@@ -13850,11 +13857,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/weapon_room)
-"bDi" = (
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
"bDn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/closed/wall/almayer,
@@ -14293,12 +14295,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"bET" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lockerroom)
"bFa" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -15120,25 +15116,6 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"bKN" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
- closeOtherId = "brignorth";
- dir = 2;
- name = "\improper Brig Armoury";
- req_access = null;
- req_one_access_txt = "1;3"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/starboard_hallway)
"bKP" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -15151,11 +15128,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/shipboard/sea_office)
-"bKU" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/aft_hallway)
"bKX" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/masks,
@@ -15185,18 +15157,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_s)
-"bLg" = (
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"bLh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -15310,23 +15270,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
-"bLv" = (
-/obj/structure/machinery/door_control{
- id = "ARES StairsLower";
- name = "ARES Core Lockdown";
- pixel_x = 24;
- pixel_y = -8;
- req_one_access_txt = "90;91;92"
- },
-/obj/structure/machinery/camera/autoname/almayer/containment/ares{
- dir = 8;
- pixel_y = 2
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"bLw" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
@@ -15374,6 +15317,21 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"bLF" = (
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigmaint_n";
+ name = "\improper Brig"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/starboard_hallway)
"bLH" = (
/turf/open/floor/almayer{
dir = 8;
@@ -15427,12 +15385,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_midship_hallway)
-"bMi" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/upper/midship_hallway)
"bMq" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/obj/structure/machinery/light{
@@ -15582,19 +15534,12 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bMV" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_x = -8;
- pixel_y = 28
- },
-/obj/structure/sign/safety/intercom{
- pixel_x = 14;
- pixel_y = 32
+"bMZ" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/maint/upper/u_f_p)
"bNa" = (
/obj/structure/surface/table/almayer,
/obj/item/folder/black,
@@ -15609,12 +15554,6 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bNc" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orangecorner"
- },
-/area/almayer/maint/upper/u_a_s)
"bNe" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -15796,16 +15735,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"bNI" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"bNL" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -15848,15 +15777,6 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"bNT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"bOq" = (
/obj/structure/prop/almayer/cannon_cables,
/turf/open/floor/almayer{
@@ -16051,6 +15971,11 @@
icon_state = "red"
},
/area/almayer/shipboard/weapon_room)
+"bPi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"bPk" = (
/obj/item/roller,
/obj/item/roller,
@@ -16114,27 +16039,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
-"bPB" = (
-/obj/structure/machinery/door/window/eastleft{
- req_one_access_txt = "2;21"
- },
-/obj/structure/machinery/door/window/westright,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "ROlobby1";
- name = "\improper RO Line 1"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/surface/table/reinforced/almayer_blend/north,
-/obj/item/desk_bell{
- pixel_x = -6;
- pixel_y = -8;
- anchored = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/squads/req)
"bPC" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 28
@@ -16396,6 +16300,15 @@
icon_state = "orangecorner"
},
/area/almayer/hallways/lower/starboard_umbilical)
+"bRO" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"bRP" = (
/obj/structure/machinery/body_scanconsole,
/obj/structure/disposalpipe/segment{
@@ -16409,27 +16322,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"bRR" = (
-/obj/structure/machinery/door/window/eastleft{
- req_one_access_txt = "2;21"
- },
-/obj/structure/machinery/door/window/westright,
-/obj/structure/machinery/door/poddoor/shutters/almayer{
- dir = 4;
- id = "ROlobby2";
- name = "\improper RO Line 2"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/surface/table/reinforced/almayer_blend,
-/obj/item/desk_bell{
- pixel_x = -6;
- pixel_y = 10;
- anchored = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/squads/req)
"bRV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -16661,12 +16553,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"bTD" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/upper/fore_hallway)
"bTE" = (
/turf/open/floor/almayer{
dir = 4;
@@ -16781,6 +16667,10 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/s_bow)
+"bTY" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/port)
"bUa" = (
/obj/structure/closet,
/turf/open/floor/almayer{
@@ -17035,6 +16925,10 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
+"bVR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"bVU" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/port_point_defense)
@@ -17129,11 +17023,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/chapel)
-"bWx" = (
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/port)
"bWJ" = (
/obj/structure/machinery/shower{
dir = 4
@@ -17166,6 +17055,18 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
+"bXc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"bXe" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south2)
@@ -17304,6 +17205,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
+"bYL" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_s)
"bYW" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/panic)
@@ -17384,12 +17294,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_midship_hallway)
-"bZq" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"bZr" = (
/turf/open/floor/almayer{
dir = 1;
@@ -17513,15 +17417,6 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"cap" = (
-/obj/structure/surface/rack,
-/obj/item/tool/wirecutters,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"caq" = (
/obj/structure/machinery/light/small,
/turf/open/floor/plating/plating_catwalk,
@@ -17670,12 +17565,14 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
-"cbK" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "red"
+"cbF" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ pixel_x = 1;
+ pixel_y = 17;
+ req_access = null
},
-/area/almayer/hallways/upper/fore_hallway)
+/turf/open/floor/almayer,
+/area/almayer/living/numbertwobunks)
"cbL" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -17696,27 +17593,6 @@
icon_state = "red"
},
/area/almayer/living/cryo_cells)
-"ccc" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/obj/structure/machinery/door/airlock/almayer/research/reinforced{
- closeOtherId = "containment_n";
- dir = 8;
- name = "\improper Containment Airlock"
- },
-/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/medical/containment)
"ccd" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/turf/open/floor/almayer{
@@ -17759,6 +17635,16 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
+"ccx" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"ccG" = (
/obj/structure/largecrate/random/secure,
/obj/effect/decal/warning_stripes{
@@ -17883,6 +17769,17 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
+"cdZ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_s)
"ceg" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -17914,6 +17811,18 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"ceV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"ceY" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -18159,13 +18068,6 @@
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"chC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
"chL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -18372,15 +18274,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"ciI" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"ciN" = (
/turf/open/floor/almayer{
dir = 6;
@@ -18441,6 +18334,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
+"cjm" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wet_sign,
+/obj/item/tool/wet_sign,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
"cjt" = (
/turf/open/floor/almayer{
icon_state = "orange"
@@ -18613,6 +18514,14 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/engine_core)
+"cla" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"cle" = (
/turf/open/floor/almayer{
dir = 4;
@@ -18951,38 +18860,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north2)
-"cmI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/airlock/almayer/security/reinforced{
- access_modified = 1;
- closeOtherId = "astroladder_n";
- name = "\improper Astronavigational Deck";
- req_access = null;
- req_one_access_txt = "3;19"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/navigation)
-"cmJ" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/airlock/almayer/security/reinforced{
- access_modified = 1;
- closeOtherId = "astroladder_s";
- name = "\improper Astronavigational Deck";
- req_access = null;
- req_one_access_txt = "3;19"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/navigation)
"cmK" = (
/obj/structure/window/reinforced,
/turf/open/floor/almayer{
@@ -19010,6 +18887,18 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
+"cmS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"cmV" = (
/obj/effect/landmark/yautja_teleport,
/turf/open/floor/almayer{
@@ -19026,6 +18915,12 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
+"cnm" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"cnn" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -19383,13 +19278,6 @@
/obj/structure/window/framed/almayer/hull/hijack_bustable,
/turf/open/floor/plating,
/area/almayer/squads/req)
-"cpQ" = (
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"cqd" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -19588,6 +19476,17 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"ctJ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"ctQ" = (
/turf/open/floor/almayer{
icon_state = "silver"
@@ -19605,15 +19504,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cryo)
-"cui" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"cuq" = (
/obj/structure/machinery/computer/arcade,
/turf/open/floor/wood/ship,
@@ -19639,19 +19529,6 @@
"cuC" = (
/turf/closed/wall/almayer/outer,
/area/almayer/engineering/upper_engineering/starboard)
-"cuI" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/sign/safety/stairs{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"cuN" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -19672,15 +19549,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/alpha)
-"cva" = (
-/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
- name = "\improper Armourer's Workshop";
- req_access = null
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_m_s)
"cvb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -19696,12 +19564,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_fore_hallway)
-"cvi" = (
-/obj/structure/machinery/vending/hydroseeds,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"cvx" = (
/turf/closed/wall/almayer,
/area/almayer/maint/lower/cryo_cells)
@@ -19730,16 +19592,6 @@
icon_state = "silver"
},
/area/almayer/command/cic)
-"cwi" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"cwo" = (
/obj/structure/largecrate/random/mini/chest{
pixel_x = 4
@@ -19756,14 +19608,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
-"cwL" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = -25
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"cwS" = (
/obj/structure/blocker/invisible_wall,
/turf/open/floor/almayer/aicore/no_build,
@@ -19805,6 +19649,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
+"cyh" = (
+/obj/structure/machinery/door/airlock/almayer/generic/glass{
+ name = "\improper Passenger Cryogenics Bay"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_p)
"cyo" = (
/obj/structure/machinery/vending/cigarette,
/turf/open/floor/almayer{
@@ -19859,19 +19711,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"czJ" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/intercom{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"czN" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -19891,6 +19730,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_midship_hallway)
+"cAa" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/obj/structure/janitorialcart,
+/obj/item/tool/mop,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_p)
"cAm" = (
/obj/structure/bed/chair/office/light{
dir = 8
@@ -20111,12 +19960,27 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"cDI" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"cDN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/lobby)
+"cDP" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"cDZ" = (
/obj/structure/surface/table/almayer,
/obj/item/paper,
@@ -20181,6 +20045,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie)
+"cEG" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"cFh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -20209,18 +20079,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"cFH" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"cFP" = (
/obj/structure/sign/safety/outpatient{
pixel_x = -17;
@@ -20246,6 +20104,12 @@
icon_state = "orange"
},
/area/almayer/maint/hull/lower/l_m_s)
+"cGO" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"cGR" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/upper/u_m_s)
@@ -20283,12 +20147,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"cHn" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
"cHu" = (
/turf/closed/wall/almayer/research/containment/wall/south,
/area/almayer/medical/containment/cell/cl)
@@ -20359,6 +20217,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_fore_hallway)
+"cIS" = (
+/obj/structure/closet,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"cIW" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
name = "\improper Engineering Engine Monitoring"
@@ -20367,15 +20231,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"cJh" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 8;
- id = "Warden Office Shutters";
- name = "\improper Privacy Shutters"
- },
-/turf/open/floor/plating,
-/area/almayer/shipboard/brig/cells)
"cJm" = (
/obj/structure/machinery/light{
dir = 8
@@ -20457,16 +20312,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"cJV" = (
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
"cKm" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/glass/bucket/mopbucket{
@@ -20485,15 +20330,6 @@
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"cKp" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"cKJ" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -20509,6 +20345,14 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/upper_engineering/port)
+"cLd" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/mgoggles/prescription,
+/obj/item/clothing/glasses/mbcg,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"cLl" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -20572,10 +20416,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/processing)
+"cMx" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_a_s)
"cMz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/port)
+"cMH" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"cMN" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -20614,6 +20467,12 @@
icon_state = "orange"
},
/area/almayer/hallways/lower/port_aft_hallway)
+"cNC" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"cNH" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/containment{
id = "Containment Cell 4";
@@ -20672,6 +20531,12 @@
},
/turf/open/floor/almayer,
/area/almayer/living/grunt_rnr)
+"cOe" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"cOh" = (
/obj/item/stool{
pixel_x = 15;
@@ -20834,6 +20699,28 @@
"cQv" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/general_equipment)
+"cQC" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_x = -8;
+ pixel_y = 28
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_x = 14;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
+"cQF" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"cQG" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/starboard_hallway)
@@ -20937,12 +20824,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_midship_hallway)
-"cSM" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"cSP" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -21014,6 +20895,11 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_bow)
+"cUo" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/lifeboat_pumps/north1)
"cVb" = (
/obj/structure/machinery/sentry_holder/almayer,
/turf/open/floor/almayer{
@@ -21064,12 +20950,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"cVT" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"cVZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
@@ -21096,15 +20976,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/lower_medical_medbay)
-"cWo" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_p)
"cWr" = (
/obj/structure/machinery/photocopier{
density = 0;
@@ -21162,17 +21033,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"cXd" = (
-/obj/structure/surface/rack,
-/obj/item/stack/cable_coil,
-/obj/item/attachable/flashlight/grip,
-/obj/item/ammo_box/magazine/l42a{
- pixel_y = 14
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"cXi" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -21194,6 +21054,35 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_s)
+"cXq" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"cXz" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/mask/cigarette/pipe{
+ pixel_x = 8
+ },
+/obj/structure/transmitter/rotary{
+ name = "Reporter Telephone";
+ phone_category = "Almayer";
+ phone_id = "Reporter";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/device/toner{
+ pixel_x = -2;
+ pixel_y = -11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/combat_correspondent)
"cXC" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -21322,6 +21211,10 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_p)
+"cZq" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"cZB" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
@@ -21380,6 +21273,16 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"dan" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldpack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/reagent_container/spray/cleaner,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/u_a_s)
"daz" = (
/turf/closed/wall/almayer/aicore/hull,
/area/almayer/command/airoom)
@@ -21389,6 +21292,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
+"daI" = (
+/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
+ name = "\improper Armourer's Workshop";
+ req_access = null
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_m_s)
"dbc" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -21506,16 +21418,24 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
+"dcR" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"dcT" = (
/obj/structure/pipes/vents/scrubber{
dir = 1
},
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_p)
-"dcZ" = (
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_p)
+"dcX" = (
+/obj/structure/machinery/light/small,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
"ddf" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
/turf/open/floor/almayer{
@@ -21535,12 +21455,6 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"ddp" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"ddw" = (
/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
/obj/structure/sign/safety/terminal{
@@ -21556,16 +21470,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/weapon_room)
-"ddF" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
"ddL" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
@@ -21574,6 +21478,15 @@
/obj/structure/disposalpipe/segment,
/turf/closed/wall/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"ddO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"deg" = (
/obj/structure/platform_decoration{
dir = 1
@@ -21587,18 +21500,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_s)
-"deA" = (
-/obj/item/reagent_container/glass/bucket/janibucket{
- pixel_x = -1;
- pixel_y = 13
- },
-/obj/structure/sign/safety/water{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"deD" = (
/obj/structure/machinery/prop/almayer/CICmap{
pixel_x = -5
@@ -21652,6 +21553,15 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
+"dfA" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"dfC" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -21692,17 +21602,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"dgI" = (
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
-"dgP" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"dha" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -21742,6 +21641,16 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
+"dhA" = (
+/obj/structure/largecrate/supply/generator,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"dhQ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -21769,6 +21678,17 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"diw" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"diz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{
id_tag = "Boat1-D4";
@@ -21843,36 +21763,15 @@
icon_state = "red"
},
/area/almayer/living/briefing)
-"dkt" = (
-/obj/structure/surface/rack,
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = -6;
- pixel_y = -3
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = 5;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0;
- pixel_x = 5;
- pixel_y = -3
- },
-/obj/structure/noticeboard{
- desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'";
- pixel_y = 29
+"dkz" = (
+/obj/structure/pipes/vents/scrubber/no_boom{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "plate"
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/command/airoom)
"dkO" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down2";
@@ -21908,12 +21807,18 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"dlo" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/starboard)
"dlT" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
icon_state = "mono"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"dmg" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/sign/safety/coffee{
@@ -22002,13 +21907,14 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/cells)
-"dni" = (
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = 32
+"dnh" = (
+/obj/structure/surface/rack,
+/obj/item/book/manual/orbital_cannon_manual,
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
},
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/maint/upper/u_a_p)
"dnm" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer,
/obj/structure/machinery/light{
@@ -22111,6 +22017,13 @@
/obj/structure/surface/rack,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
+"doX" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"dpo" = (
/obj/structure/machinery/light{
dir = 1
@@ -22134,19 +22047,6 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_aft_hallway)
-"dpN" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"dpO" = (
/obj/structure/machinery/cm_vending/clothing/marine/delta{
density = 0;
@@ -22157,12 +22057,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/delta)
-"dpS" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"dqb" = (
/obj/structure/sign/safety/security{
pixel_x = -16
@@ -22264,16 +22158,20 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/execution)
-"dsS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"dsY" = (
/turf/open/floor/almayer{
icon_state = "orangecorner"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"dtu" = (
+/obj/structure/machinery/portable_atmospherics/canister/air,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/upper/u_a_s)
"dtH" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -22286,25 +22184,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/chapel)
-"dum" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- closeOtherId = "ciclobby_s";
- id_tag = "cic_exterior";
- name = "\improper Combat Information Center"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "CIC Lockdown";
- name = "\improper Combat Information Center Blast Door"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/command/cic)
"duo" = (
/obj/structure/machinery/power/apc/almayer{
dir = 8
@@ -22357,14 +22236,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"duR" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"duT" = (
/obj/structure/bed,
/obj/structure/machinery/flasher{
@@ -22447,6 +22318,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
+"dwu" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_f_s)
"dwA" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/sign/safety/bathunisex{
@@ -22466,15 +22345,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
-"dwJ" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"dxu" = (
/obj/structure/sink{
dir = 1;
@@ -22605,11 +22475,6 @@
icon_state = "plating"
},
/area/almayer/squads/req)
-"dyJ" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/midship_hallway)
"dyK" = (
/obj/structure/machinery/light{
dir = 8
@@ -22628,24 +22493,27 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"dzV" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
"dzX" = (
/obj/structure/sign/safety/water{
pixel_x = -17
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_p)
+"dAl" = (
+/obj/item/paper_bin/wy,
+/obj/structure/surface/table/woodentable/fancy,
+/obj/item/tool/pen/clicky,
+/obj/item/tool/pen/clicky,
+/obj/structure/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/item/desk_bell{
+ anchored = 1;
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/turf/open/floor/carpet,
+/area/almayer/command/corporateliaison)
"dAm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -22666,18 +22534,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
-"dAr" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/life_support{
- pixel_x = 14;
- pixel_y = -25
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/lifeboat_pumps/south2)
"dAA" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -22809,25 +22665,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
-"dCb" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/fore_hallway)
"dCe" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -22896,22 +22733,6 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/port_aft_hallway)
-"dDc" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/fore_hallway)
"dDp" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -23062,11 +22883,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"dFd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"dFk" = (
/turf/open/floor/almayer{
dir = 8;
@@ -23086,6 +22902,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
+"dFB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"dFF" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
@@ -23309,18 +23132,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/p_bow)
-"dJF" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/lifeboat_pumps/south2)
"dJG" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -23342,17 +23153,38 @@
"dJJ" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/execution_storage)
+"dJO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4;
+ density = 0;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"dKp" = (
/turf/open/floor/almayer/research/containment/corner{
dir = 4
},
/area/almayer/medical/containment/cell/cl)
-"dKD" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"dKK" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -23423,17 +23255,31 @@
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south1)
+"dMj" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"dMB" = (
/turf/open/floor/almayer{
dir = 8;
icon_state = "plating_striped"
},
/area/almayer/living/cryo_cells)
+"dME" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"dMK" = (
/turf/closed/wall/almayer/research/containment/wall/corner{
dir = 8
},
/area/almayer/medical/containment/cell)
+"dNj" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"dNq" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -23456,6 +23302,18 @@
},
/turf/open/floor/plating,
/area/almayer/living/cryo_cells)
+"dNv" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"dNM" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
@@ -23520,11 +23378,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/hallways/lower/repair_bay)
-"dOW" = (
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"dPd" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight/lamp{
@@ -23545,12 +23398,6 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_umbilical)
-"dPl" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"dPm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -23567,6 +23414,19 @@
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
+"dPB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"dPC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -23678,19 +23538,6 @@
icon_state = "dark_sterile"
},
/area/almayer/shipboard/brig/mp_bunks)
-"dRo" = (
-/obj/structure/sign/safety/bridge{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/structure/sign/safety/west{
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"dRs" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
@@ -23743,12 +23590,6 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
-"dRQ" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"dRT" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -23777,6 +23618,12 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"dSI" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"dSJ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -23846,6 +23693,16 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"dUR" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"dUS" = (
/turf/open/floor/almayer{
icon_state = "dark_sterile"
@@ -24030,20 +23887,6 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"dXH" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/camera_film{
- pixel_x = 4;
- pixel_y = 1;
- layer = 3.03
- },
-/obj/item/stack/sheet/cardboard/small_stack{
- pixel_x = -5;
- pixel_y = 3;
- layer = 3.02
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/charlie_delta_shared)
"dXI" = (
/obj/structure/machinery/door/airlock/almayer/secure/reinforced{
name = "\improper Exterior Airlock";
@@ -24085,6 +23928,18 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_s)
+"dYl" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"dYu" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -24163,11 +24018,6 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"dZR" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
"dZZ" = (
/obj/structure/surface/rack,
/obj/item/tool/weldpack,
@@ -24206,12 +24056,6 @@
dir = 4
},
/area/almayer/medical/containment/cell)
-"ear" = (
-/obj/structure/largecrate/random/case,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
"eas" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24280,12 +24124,6 @@
"ebN" = (
/turf/closed/wall/almayer/aicore/reinforced,
/area/almayer/command/airoom)
-"ebV" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"ecb" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -24315,15 +24153,6 @@
"ecr" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/living/captain_mess)
-"ecz" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"ecS" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -24517,6 +24346,14 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
+"efV" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"egc" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24562,27 +24399,6 @@
icon_state = "green"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"egQ" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"ehc" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 1;
@@ -24613,6 +24429,15 @@
"ehl" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/interrogation)
+"ehm" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"ehx" = (
/obj/effect/landmark/start/marine/tl/alpha,
/obj/effect/landmark/late_join/alpha,
@@ -24961,6 +24786,16 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"emL" = (
+/obj/structure/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"ene" = (
/turf/open/floor/almayer{
dir = 4;
@@ -24975,25 +24810,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"enz" = (
-/obj/structure/sign/safety/bridge{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/sign/safety/west{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
-"enF" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"enK" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -25023,6 +24839,17 @@
icon_state = "test_floor4"
},
/area/almayer/maint/hull/lower/l_m_s)
+"eol" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"eox" = (
/obj/structure/machinery/light/small,
/turf/open/floor/plating/plating_catwalk,
@@ -25035,17 +24862,6 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"eoD" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_m_s)
"eoE" = (
/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
@@ -25092,6 +24908,15 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"epT" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"eqb" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/stamp/denied{
@@ -25304,6 +25129,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
+"esn" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/multitool{
+ desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas.";
+ icon_state = "multitool_big";
+ name = "\improper Oversized Security Access Tuner";
+ pixel_y = 11;
+ pixel_x = 4
+ },
+/obj/item/stack/sheet/cardboard/medium_stack{
+ pixel_y = -6;
+ pixel_x = -7;
+ layer = 3.01
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
"esC" = (
/obj/structure/toilet{
pixel_y = 13
@@ -25343,6 +25184,12 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/gym)
+"esQ" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"esT" = (
/turf/open/floor/almayer/uscm/directional{
dir = 9
@@ -25498,11 +25345,13 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
-"evG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
+"evM" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
/turf/open/floor/almayer{
- icon_state = "mono"
+ dir = 1;
+ icon_state = "green"
},
/area/almayer/hallways/upper/fore_hallway)
"evR" = (
@@ -25548,18 +25397,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/execution)
-"ewL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"ewO" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -25627,13 +25464,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
-"eyI" = (
-/obj/structure/window/framed/almayer,
-/obj/structure/curtain/open/shower{
- name = "hypersleep curtain"
- },
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_p)
"eyM" = (
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/almayer{
@@ -25712,6 +25542,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_umbilical)
+"eAx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"eAC" = (
/obj/structure/machinery/light{
dir = 4
@@ -25885,12 +25731,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/engine_core)
-"eCC" = (
-/obj/structure/bed/chair,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/lifeboat_pumps/north1)
"eCI" = (
/obj/structure/window/reinforced/ultra{
pixel_y = -12
@@ -25901,13 +25741,12 @@
icon_state = "plating"
},
/area/almayer/shipboard/brig/execution)
-"eDk" = (
-/obj/structure/surface/rack,
-/obj/item/tool/weldpack,
+"eDe" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/maint/upper/u_m_s)
"eDo" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -25970,15 +25809,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
-"eEF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"eFa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -26013,17 +25843,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/chemistry)
-"eFI" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"eFK" = (
/obj/structure/bed{
icon_state = "abed"
@@ -26108,23 +25927,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"eGh" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/tool/surgery/scalpel{
- pixel_x = -1;
- pixel_y = 10
- },
-/obj/item/stack/cable_coil{
- pixel_y = 1;
- pixel_x = 8
- },
-/obj/item/stack/sheet/cardboard/small_stack{
- pixel_y = 2;
- pixel_x = -3;
- layer = 3.01
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/alpha_bravo_shared)
"eGq" = (
/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
@@ -26174,13 +25976,15 @@
icon_state = "plating_striped"
},
/area/almayer/maint/hull/lower/l_a_p)
-"eHz" = (
-/obj/structure/largecrate/supply/supplies/mre,
+"eHX" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ req_one_access = null;
+ req_one_access_txt = "2;30;34"
+ },
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/maint/upper/u_f_s)
"eHY" = (
/obj/structure/surface/rack,
/obj/item/device/taperecorder,
@@ -26188,6 +25992,22 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"eIf" = (
+/obj/structure/prop/invuln/pipe_water,
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"eIN" = (
/obj/item/tool/kitchen/utensil/pfork,
/turf/open/floor/almayer{
@@ -26213,14 +26033,18 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_fore_hallway)
-"eJj" = (
-/obj/structure/closet/crate,
-/obj/item/ammo_box/magazine/l42a,
-/obj/item/ammo_box/magazine/l42a,
+"eIY" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"eJg" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "red"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"eJQ" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -26234,33 +26058,15 @@
icon_state = "outerhull_dir"
},
/area/almayer/command/lifeboat)
-"eJX" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/engineering/ce_room)
-"eJZ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
-"eKa" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
- closeOtherId = "briglobby";
- dir = 2;
- name = "\improper Brig Lobby"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/processing)
-"eKm" = (
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
+"eJU" = (
+/obj/structure/bed/chair,
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/lower/starboard_umbilical)
+/area/almayer/lifeboat_pumps/north1)
+"eJX" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/engineering/ce_room)
"eKy" = (
/obj/structure/pipes/standard/simple/visible{
dir = 6
@@ -26371,6 +26177,17 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_s)
+"eLV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"eLX" = (
/obj/structure/bed/chair{
dir = 4
@@ -26380,16 +26197,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/mp_bunks)
-"eMh" = (
-/obj/structure/machinery/door/airlock/almayer/generic{
- name = "\improper Laundry Room";
- req_one_access = list(19,7);
- req_access = list()
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+"eMr" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
},
-/area/almayer/engineering/laundry)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"eMx" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -26498,6 +26311,10 @@
icon_state = "orange"
},
/area/almayer/hallways/lower/starboard_umbilical)
+"ePz" = (
+/obj/structure/largecrate/supply/weapons/pistols,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"ePM" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = 32
@@ -26539,27 +26356,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
-"eQd" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/smg/m39{
- pixel_y = 6
- },
-/obj/item/weapon/gun/smg/m39{
- pixel_y = -6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
-"eQh" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"eQm" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -26628,14 +26424,6 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
-"eRG" = (
-/obj/structure/closet,
-/obj/item/clothing/ears/earmuffs,
-/obj/item/clothing/glasses/regular/hipster,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"eRR" = (
/obj/item/clothing/head/helmet/marine{
pixel_x = 16;
@@ -26652,15 +26440,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/engineering/lower/workshop/hangar)
-"eSc" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/engineering/lower)
"eSk" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -26712,6 +26491,15 @@
/obj/effect/landmark/crap_item,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"eTm" = (
+/obj/structure/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"eTx" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -26721,6 +26509,14 @@
icon_state = "green"
},
/area/almayer/hallways/lower/port_aft_hallway)
+"eTC" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
"eTD" = (
/obj/structure/bed/chair{
dir = 4
@@ -26858,6 +26654,19 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"eWf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"eWp" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair/comfy/charlie{
@@ -26889,12 +26698,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/basketball)
-"eWN" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"eXb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27194,6 +26997,17 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
+"fbr" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ closeOtherId = "briglobby";
+ dir = 2;
+ name = "\improper Brig Lobby"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
"fbu" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -27254,6 +27068,12 @@
icon_state = "plating"
},
/area/almayer/hallways/lower/vehiclehangar)
+"fbV" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/lifeboat_pumps/north2)
"fca" = (
/obj/structure/disposalpipe/segment{
layer = 5.1;
@@ -27322,22 +27142,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"fcX" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/platform_decoration{
- dir = 1
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
-"fdf" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"fdx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -27405,12 +27209,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"fes" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"feD" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -27619,10 +27417,6 @@
/obj/item/device/camera_film,
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
-"fiN" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"fiQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -27631,12 +27425,37 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
+"fje" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
+"fjo" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"fjz" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/maint/hull/upper/u_f_p)
+"fjA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"fkK" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -27661,6 +27480,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/p_bow)
+"flD" = (
+/obj/structure/largecrate/supply/supplies/water,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"flW" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/light{
@@ -27703,12 +27528,6 @@
icon_state = "bluecorner"
},
/area/almayer/living/pilotbunks)
-"fmX" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_p)
"fmZ" = (
/turf/open/floor/almayer{
dir = 8;
@@ -28036,8 +27855,8 @@
pixel_y = 9;
req_access_txt = "3"
},
-/obj/structure/machinery/light{
- dir = 1
+/obj/structure/machinery/computer/working_joe{
+ pixel_y = 16
},
/turf/open/floor/almayer{
dir = 1;
@@ -28061,13 +27880,6 @@
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
-"frI" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"frM" = (
/obj/effect/decal/warning_stripes{
icon_state = "S";
@@ -28079,12 +27891,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/area/almayer/command/airoom)
-"frV" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"fsf" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -28095,6 +27901,12 @@
icon_state = "orangecorner"
},
/area/almayer/hallways/lower/port_umbilical)
+"fsh" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"fsp" = (
/obj/structure/barricade/handrail{
dir = 1;
@@ -28105,18 +27917,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"fsu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"fsR" = (
/obj/structure/pipes/vents/pump{
dir = 8;
@@ -28139,38 +27939,6 @@
icon_state = "plating_striped"
},
/area/almayer/living/cryo_cells)
-"ftb" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
-"ftw" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
-"ftG" = (
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
-"ftZ" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"fuz" = (
/obj/structure/machinery/cm_vending/clothing/pilot_officer,
/turf/open/floor/almayer{
@@ -28268,19 +28036,6 @@
icon_state = "redfull"
},
/area/almayer/command/cic)
-"fvE" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
-"fvJ" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lockerroom)
"fvN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28328,13 +28083,6 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"fwP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"fwY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28429,12 +28177,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/starboard_fore_hallway)
-"fzm" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"fzq" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -28447,6 +28189,20 @@
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
+"fzt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/circuitboard{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/tool/crowbar{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_p)
"fzx" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -28503,15 +28259,6 @@
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"fAW" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"fBi" = (
/turf/open/floor/almayer{
dir = 4;
@@ -28526,18 +28273,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
-"fBA" = (
-/obj/structure/sign/safety/high_voltage{
- pixel_y = -32
- },
-/obj/structure/sign/safety/hazard{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"fBO" = (
/obj/structure/machinery/chem_master{
vial_maker = 1
@@ -28584,12 +28319,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"fCP" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"fCT" = (
/obj/structure/surface/table/almayer,
/obj/item/fuel_cell,
@@ -28598,6 +28327,11 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/engine_core)
+"fCW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"fDh" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -28620,14 +28354,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
-"fDk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"fDG" = (
/obj/structure/machinery/vending/coffee,
/obj/structure/machinery/light{
@@ -28726,14 +28452,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
-"fFs" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_f_s)
"fFD" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -28848,10 +28566,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
-"fGD" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"fHb" = (
/obj/structure/largecrate/random/case/small,
/turf/open/floor/plating/plating_catwalk,
@@ -28878,10 +28592,10 @@
icon_state = "greenfull"
},
/area/almayer/living/offices)
-"fHM" = (
-/obj/docking_port/stationary/escape_pod/cl,
-/turf/open/floor/plating,
-/area/almayer/command/corporateliaison)
+"fIK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"fIM" = (
/obj/effect/landmark/start/marine/tl/bravo,
/obj/effect/landmark/late_join/bravo,
@@ -28972,15 +28686,6 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"fJY" = (
-/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
- dir = 4
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_arrow"
- },
-/area/almayer/command/airoom)
"fKe" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -29145,19 +28850,6 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
-"fMl" = (
-/obj/structure/machinery/door_control{
- id = "ARES Operations Right";
- name = "ARES Operations Shutter";
- pixel_x = 24;
- pixel_y = -8;
- req_one_access_txt = "90;91;92"
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"fMt" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
id = "ARES Interior";
@@ -29186,6 +28878,12 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"fME" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"fMU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -29229,6 +28927,14 @@
icon_state = "cargo_arrow"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"fNX" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"fOk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -29347,13 +29053,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"fQl" = (
-/obj/structure/largecrate/supply/supplies/flares,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"fQn" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -29450,6 +29149,16 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/north1)
+"fSx" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"fSF" = (
/obj/structure/surface/table/almayer,
/obj/item/device/flashlight,
@@ -29538,6 +29247,12 @@
"fVe" = (
/turf/closed/wall/almayer/outer,
/area/almayer/maint/hull/upper/u_a_p)
+"fVk" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_s)
"fVo" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -29594,15 +29309,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"fXf" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"fXg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -29643,6 +29349,12 @@
/obj/effect/landmark/late_join/delta,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/delta)
+"fXO" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"fXP" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -29785,12 +29497,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
-"gar" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"gaJ" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/brig/cryo)
@@ -29850,6 +29556,12 @@
icon_state = "ai_floor3"
},
/area/almayer/command/airoom)
+"gbm" = (
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"gbs" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/ashtray/plastic{
@@ -29868,16 +29580,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"gbR" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"gcm" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -29954,6 +29656,21 @@
icon_state = "redfull"
},
/area/almayer/living/offices/flight)
+"gei" = (
+/obj/structure/sign/safety/ref_bio_storage{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/biohazard{
+ pixel_x = -17;
+ pixel_y = -7
+ },
+/obj/structure/medical_supply_link,
+/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/medical/medical_science)
"gek" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/storage/fancy/cigarettes/wypacket,
@@ -30045,9 +29762,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/area/almayer/command/airoom)
-"gfv" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"gfE" = (
/obj/structure/machinery/recharge_station,
/turf/open/floor/plating,
@@ -30185,6 +29899,12 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
+"giD" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_p)
"giR" = (
/obj/structure/machinery/status_display{
pixel_y = -30
@@ -30198,6 +29918,12 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"giW" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"gjg" = (
/obj/structure/sign/safety/escapepod{
pixel_x = -17;
@@ -30212,6 +29938,18 @@
icon_state = "blue"
},
/area/almayer/hallways/lower/port_midship_hallway)
+"gji" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gjm" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -30306,24 +30044,6 @@
icon_state = "plate"
},
/area/almayer/command/cic)
-"gkV" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
-"glc" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"gll" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -30410,12 +30130,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"gmZ" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"gnu" = (
/obj/structure/surface/table/almayer,
/obj/item/facepaint/green,
@@ -30433,6 +30147,13 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
+"gnK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"gnM" = (
/obj/structure/surface/rack,
/obj/item/frame/table,
@@ -30533,6 +30254,17 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/hangar)
+"gpp" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gpI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -30544,23 +30276,52 @@
"gpO" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/lower/s_bow)
+"gpT" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"gpY" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/lifeboat_pumps/north1)
-"gqf" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"gqt" = (
/obj/structure/sign/safety/storage{
pixel_x = -17
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_a_s)
-"gqv" = (
+"gqx" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
+"gqz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
+"gqH" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
+"gqI" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
},
/area/almayer/hallways/upper/midship_hallway)
"gqP" = (
@@ -30593,6 +30354,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
+"gre" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"grv" = (
/obj/effect/decal/warning_stripes{
icon_state = "NW-out";
@@ -30717,6 +30484,12 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"gsJ" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"gsM" = (
/obj/structure/machinery/portable_atmospherics/powered/pump,
/turf/open/floor/almayer{
@@ -30735,6 +30508,16 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
+"gtg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/starboard)
"gtp" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/obj/structure/disposalpipe/junction{
@@ -30758,6 +30541,11 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/starboard_aft_hallway)
+"gtI" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"gtQ" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -30787,16 +30575,6 @@
icon_state = "redfull"
},
/area/almayer/lifeboat_pumps/south2)
-"gur" = (
-/obj/item/tool/mop{
- pixel_x = -6;
- pixel_y = 24
- },
-/obj/item/reagent_container/glass/bucket,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"guK" = (
/obj/effect/projector{
name = "Almayer_Up3";
@@ -30805,6 +30583,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
+"guP" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orangecorner"
+ },
+/area/almayer/maint/upper/u_a_s)
"guS" = (
/obj/structure/reagent_dispensers/fueltank/custom,
/turf/open/floor/almayer{
@@ -30839,6 +30623,12 @@
icon_state = "silver"
},
/area/almayer/command/cic)
+"gvu" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gvK" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -30853,6 +30643,15 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"gwh" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gwj" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -30929,6 +30728,17 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
+"gxk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"gxm" = (
/turf/closed/wall/almayer/outer,
/area/almayer/maint/hull/upper/stairs)
@@ -30967,12 +30777,6 @@
dir = 8
},
/area/almayer/medical/containment/cell)
-"gxR" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"gxU" = (
/obj/structure/surface/table/almayer,
/obj/item/toy/deck,
@@ -30981,16 +30785,18 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"gyb" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = 32
+"gyh" = (
+/obj/structure/machinery/cm_vending/gear/executive_officer{
+ density = 0;
+ pixel_y = 30
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
+ icon_state = "plate"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/living/numbertwobunks)
"gym" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/mp_bunks)
@@ -31171,6 +30977,25 @@
"gAA" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/alpha_bravo_shared)
+"gAO" = (
+/obj/structure/surface/rack,
+/obj/item/tool/weldpack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
+"gAP" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/obj/structure/closet,
+/obj/item/clothing/head/bearpelt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/living/port_emb)
"gAS" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -31228,12 +31053,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"gBZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/lifeboat_pumps/north2)
"gCf" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
@@ -31255,6 +31074,15 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
+"gCx" = (
+/obj/structure/pipes/vents/pump/no_boom{
+ dir = 8
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"gCB" = (
/obj/structure/machinery/power/apc/almayer/hardened{
cell_type = /obj/item/cell/hyper;
@@ -31276,12 +31104,15 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
-"gCQ" = (
-/obj/structure/machinery/portable_atmospherics/canister/air,
+"gDk" = (
+/obj/structure/sign/safety/stairs{
+ pixel_x = -15
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ dir = 8;
+ icon_state = "green"
},
-/area/almayer/maint/upper/u_a_s)
+/area/almayer/hallways/upper/fore_hallway)
"gDp" = (
/obj/structure/machinery/light{
dir = 4
@@ -31305,25 +31136,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"gDF" = (
-/obj/structure/largecrate/random/case{
- layer = 2.98
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"gDH" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"gDQ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"gDW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31387,24 +31205,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
-"gFL" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
-"gFN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"gFP" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/stern_point_defense)
@@ -31537,17 +31337,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"gHX" = (
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/fore_hallway)
"gHZ" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -31597,13 +31386,6 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/port)
-"gIN" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"gIO" = (
/obj/structure/bed/chair/bolted{
dir = 8
@@ -31634,6 +31416,12 @@
},
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_s)
+"gJg" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"gJp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/emails{
@@ -31643,6 +31431,15 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/repair_bay)
+"gJC" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gJE" = (
/obj/structure/machinery/door_control{
id = "Interrogation Shutters";
@@ -31682,20 +31479,6 @@
icon_state = "green"
},
/area/almayer/living/offices)
-"gJY" = (
-/obj/structure/surface/table/almayer,
-/obj/item/circuitboard{
- pixel_x = 12;
- pixel_y = 7
- },
-/obj/item/tool/crowbar{
- pixel_x = 6;
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
"gKd" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -31782,6 +31565,9 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/hydroponics)
+"gLl" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_f_s)
"gLm" = (
/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer{
@@ -31869,10 +31655,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_fore_hallway)
-"gMJ" = (
-/obj/structure/largecrate/supply/weapons/pistols,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
"gMN" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -31965,6 +31747,11 @@
icon_state = "plating"
},
/area/almayer/hallways/lower/vehiclehangar)
+"gNI" = (
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/u_a_s)
"gNN" = (
/obj/structure/bed/chair/office/dark,
/turf/open/floor/plating/plating_catwalk,
@@ -31978,49 +31765,31 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"gNQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"gNZ" = (
/obj/structure/machinery/light/small{
dir = 1
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/p_bow)
+"gOa" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"gOk" = (
/obj/structure/largecrate/guns/merc{
name = "\improper dodgy crate"
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"gOs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/machinery/door_control{
- id = "ARES Interior";
- indestructible = 1;
- name = "ARES Chamber Lockdown";
- pixel_x = 24;
- pixel_y = 8;
- req_one_access_txt = "90;91;92"
- },
-/obj/structure/machinery/door/poddoor/railing{
- closed_layer = 4;
- density = 0;
- id = "ARES Railing";
- layer = 2.1;
- open_layer = 2.1;
- unacidable = 0;
- unslashable = 0
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"gOC" = (
/obj/structure/machinery/recharge_station,
/turf/open/floor/almayer{
@@ -32061,6 +31830,16 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
+"gPA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"gPS" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -32246,20 +32025,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/p_bow)
-"gTV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/sign/safety/autoopenclose{
- pixel_x = 7;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"gUf" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/turf/open/floor/almayer{
@@ -32279,13 +32044,6 @@
/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/lower/s_bow)
-"gUk" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"gUn" = (
/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/plating/plating_catwalk,
@@ -32323,15 +32081,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/bridgebunks)
-"gUN" = (
-/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
- dir = 4
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_arrow"
- },
-/area/almayer/command/airoom)
"gUS" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -32392,6 +32141,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
+"gVW" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/reduction{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"gWm" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -32521,6 +32284,17 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"gYp" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/maint/upper/u_m_p)
"gYt" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -32832,6 +32606,12 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"hdP" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"hdQ" = (
/obj/structure/closet/secure_closet{
name = "\improper Execution Firearms"
@@ -32930,14 +32710,13 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/engine_core)
-"hfc" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
+"hft" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "red"
+ icon_state = "pipe-c"
},
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/aft_hallway)
"hfv" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -33009,18 +32788,6 @@
icon_state = "red"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
-"hgA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"hgB" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/intel,
@@ -33054,17 +32821,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"hgO" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/prop/almayer/computer/PC{
- dir = 4
- },
-/obj/item/tool/stamp/approved{
- pixel_x = -3;
- pixel_y = -11
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/req)
"hgZ" = (
/obj/structure/machinery/door_control{
dir = 1;
@@ -33165,12 +32921,6 @@
icon_state = "greencorner"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
-"hja" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"hji" = (
/obj/structure/bed/chair{
dir = 4
@@ -33327,6 +33077,14 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"hlj" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"hlH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -33340,15 +33098,19 @@
"hlI" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
-/obj/structure/sign/safety/terminal{
- pixel_y = 32
- },
/obj/structure/transmitter/rotary{
name = "Brig Wardens's Office Telephone";
phone_category = "MP Dept.";
phone_id = "Brig Warden's Office";
pixel_x = 15
},
+/obj/structure/sign/safety/terminal{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/machinery/light{
+ dir = 1
+ },
/turf/open/floor/almayer{
dir = 9;
icon_state = "red"
@@ -33444,16 +33206,6 @@
"hmA" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/maint/hull/upper/p_bow)
-"hmB" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = -32
- },
-/obj/structure/sign/safety/south{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"hmC" = (
/obj/structure/machinery/cm_vending/sorted/marine_food{
density = 0;
@@ -33590,15 +33342,6 @@
icon_state = "mono"
},
/area/almayer/hallways/lower/vehiclehangar)
-"hog" = (
-/obj/structure/machinery/light/small,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_p)
"hoK" = (
/turf/open/floor/almayer{
dir = 8;
@@ -33699,18 +33442,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"hqx" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/aft_hallway)
"hqW" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{
name = "\improper Medical Bay";
@@ -33769,16 +33500,6 @@
"hrI" = (
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_p)
-"hrJ" = (
-/obj/structure/sign/safety/autodoc{
- pixel_x = 20;
- pixel_y = -32
- },
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"hsc" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light{
@@ -33892,6 +33613,15 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_fore_hallway)
+"hto" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"htq" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -33901,16 +33631,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
-"htF" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = 32
- },
-/obj/structure/sign/safety/north{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"htG" = (
/obj/item/tool/soap,
/obj/structure/machinery/light/small{
@@ -33939,26 +33659,6 @@
icon_state = "greenfull"
},
/area/almayer/living/offices)
-"htS" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_m_s)
-"hux" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"huD" = (
/obj/structure/machinery/light{
dir = 1
@@ -34004,15 +33704,6 @@
"hvd" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/interrogation)
-"hvq" = (
-/obj/structure/bed/chair{
- dir = 8;
- pixel_y = 3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"hvv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -34062,6 +33753,15 @@
"hvH" = (
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"hwB" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"hwC" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -34168,6 +33868,16 @@
"hyQ" = (
/turf/closed/wall/almayer,
/area/almayer/living/synthcloset)
+"hyT" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/north{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"hyV" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -34203,16 +33913,6 @@
/obj/effect/decal/cleanable/blood/oil,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"hzl" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/food/snacks/mre_pack/meal5,
-/obj/item/device/flashlight/lamp{
- pixel_x = 3;
- pixel_y = 12
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"hzs" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
@@ -34239,24 +33939,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/starboard_hallway)
-"hzL" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "CIC Lockdown";
- name = "\improper Combat Information Center Blast Door"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/airlock/almayer/command/reinforced{
- closeOtherId = "ciclobby_s";
- name = "\improper Combat Information Center"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/command/cic)
"hzN" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
@@ -34334,14 +34016,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"hBa" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"hBc" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -34365,15 +34039,6 @@
icon_state = "plating"
},
/area/almayer/hallways/lower/vehiclehangar)
-"hBy" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"hBz" = (
/obj/item/mortar_kit,
/turf/open/floor/almayer{
@@ -34441,12 +34106,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"hCF" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"hCS" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/paper_bin/uscm{
@@ -34542,12 +34201,6 @@
icon_state = "greencorner"
},
/area/almayer/hallways/lower/port_fore_hallway)
-"hEj" = (
-/obj/structure/machinery/vending/hydronutrients,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"hEl" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -34589,12 +34242,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"hFt" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
"hFw" = (
/obj/structure/machinery/disposal/broken,
/turf/open/floor/almayer{
@@ -34620,15 +34267,15 @@
icon_state = "test_floor4"
},
/area/almayer/medical/morgue)
-"hGo" = (
-/obj/structure/machinery/alarm/almayer{
- dir = 1
+"hGb" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ dir = 4;
+ icon_state = "orangecorner"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"hGG" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -34749,12 +34396,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"hJe" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_p)
"hJg" = (
/obj/structure/pipes/trinary/mixer{
dir = 4;
@@ -34809,18 +34450,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"hKJ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"hKO" = (
/obj/structure/largecrate/random/barrel/green,
/obj/structure/sign/safety/maint{
@@ -34831,17 +34460,27 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_s)
-"hLt" = (
-/obj/structure/sign/poster{
- desc = "It says DRUG.";
- icon_state = "poster2";
- pixel_y = 30
+"hLr" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
},
-/obj/structure/pipes/standard/simple/hidden/supply{
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ closeOtherId = "containment_s";
+ dir = 8;
+ name = "\improper Containment Airlock"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment)
"hLu" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -34962,6 +34601,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
+"hOd" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"hOn" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"hOu" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -35000,14 +34651,6 @@
icon_state = "silver"
},
/area/almayer/living/auxiliary_officer_office)
-"hPr" = (
-/obj/structure/machinery/status_display{
- pixel_y = -30
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"hPu" = (
/obj/structure/largecrate/supply,
/obj/item/tool/crowbar,
@@ -35027,6 +34670,12 @@
"hPI" = (
/turf/closed/wall/almayer/outer,
/area/almayer/shipboard/brig/perma)
+"hPL" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"hPN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/effect/decal/warning_stripes{
@@ -35039,6 +34688,16 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/hydroponics)
+"hPZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"hQc" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -35177,20 +34836,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
-"hSj" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigmaint_n";
- dir = 1;
- name = "\improper Brig"
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/s_bow)
"hSk" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
@@ -35349,6 +34994,17 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
+"hUu" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"hUz" = (
/obj/structure/largecrate/supply/supplies/mre{
desc = "A supply crate containing everything you need to stop a CLF uprising.";
@@ -35422,6 +35078,15 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
+"hWa" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"hWq" = (
/obj/structure/platform{
layer = 3.1
@@ -35505,12 +35170,16 @@
icon_state = "blue"
},
/area/almayer/command/cichallway)
-"hWV" = (
+"hWP" = (
/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
+/obj/structure/platform_decoration{
+ dir = 1
},
-/area/almayer/hallways/upper/fore_hallway)
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"hXb" = (
/turf/open/floor/almayer{
dir = 1;
@@ -35589,6 +35258,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
+"hYj" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
"hYn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -35735,6 +35410,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"iaO" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"iaR" = (
/obj/structure/machinery/light{
dir = 4
@@ -35771,12 +35455,6 @@
},
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_s)
-"icn" = (
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"icp" = (
/turf/open/floor/almayer{
dir = 8;
@@ -35803,6 +35481,18 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"icQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"icZ" = (
/obj/structure/closet/secure_closet/brig,
/turf/open/floor/almayer{
@@ -35834,21 +35524,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
-"idM" = (
-/turf/open/floor/plating,
-/area/almayer/command/corporateliaison)
"idX" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/prison{
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"iea" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"ied" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -36001,6 +35682,13 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_s)
+"igC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"igS" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
@@ -36025,7 +35713,7 @@
},
/area/almayer/maint/lower/constr)
"ihw" = (
-/obj/structure/machinery/cm_vending/sorted/medical,
+/obj/structure/machinery/cm_vending/sorted/medical/blood,
/turf/open/floor/almayer{
dir = 1;
icon_state = "sterile_green_corner"
@@ -36073,23 +35761,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
-"iis" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 1
- },
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigcells";
- dir = 1;
- name = "\improper Brig Prison Yard And Offices"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/processing)
"iit" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -36108,12 +35779,38 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
+"iiU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"iiZ" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
+"ijd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"ijf" = (
/obj/structure/surface/table/almayer,
/obj/item/cell/crap,
@@ -36123,14 +35820,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"ijn" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"ijr" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -36189,13 +35878,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/s_bow)
-"ikC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"ikQ" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/tool/stamp/hop{
@@ -36251,6 +35933,12 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"iml" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"imo" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -36275,12 +35963,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/living/offices/flight)
-"imM" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"inh" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -36390,16 +36072,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_s)
-"ipr" = (
-/obj/item/tool/weldpack{
- pixel_y = 15
- },
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/head/welding,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"ipB" = (
/obj/structure/surface/rack,
/obj/item/tool/kitchen/rollingpin,
@@ -36539,6 +36211,12 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
+"iso" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"isq" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -36548,14 +36226,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_p)
-"isB" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"isC" = (
/obj/effect/projector{
name = "Almayer_AresDown";
@@ -36590,33 +36260,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
-"itf" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/machinery/door_control{
- id = "ARES Interior";
- indestructible = 1;
- name = "ARES Chamber Lockdown";
- pixel_x = -24;
- pixel_y = 8;
- req_one_access_txt = "90;91;92"
- },
-/obj/structure/machinery/door/poddoor/railing{
- closed_layer = 4;
- density = 0;
- id = "ARES Railing";
- layer = 2.1;
- open_layer = 2.1;
- unacidable = 0;
- unslashable = 0
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"ito" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -36661,12 +36304,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/p_bow)
-"iuh" = (
-/obj/structure/largecrate/random/barrel,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"iun" = (
/obj/effect/spawner/random/tool,
/turf/open/floor/plating/plating_catwalk,
@@ -36945,12 +36582,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"izu" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"izG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -37008,6 +36639,12 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/engine_core)
+"iAI" = (
+/obj/structure/machinery/portable_atmospherics/hydroponics,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"iBl" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -37033,6 +36670,12 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"iCg" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"iCu" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -37073,6 +36716,22 @@
icon_state = "green"
},
/area/almayer/living/offices)
+"iCT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
+"iDa" = (
+/obj/structure/largecrate/supply/supplies/tables_racks,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"iDk" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
@@ -37280,6 +36939,14 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/cells)
+"iIb" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/upper/u_m_p)
"iIj" = (
/obj/structure/stairs/perspective{
dir = 8;
@@ -37301,20 +36968,6 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"iIH" = (
-/obj/structure/largecrate/supply/medicine/medivend{
- pixel_x = 3
- },
-/obj/structure/largecrate/random/mini/med{
- density = 1;
- pixel_x = 3;
- pixel_y = 11
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"iIP" = (
/obj/structure/toilet{
pixel_y = 16
@@ -37329,15 +36982,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
-"iIQ" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"iIR" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -37349,6 +36993,13 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
+"iIU" = (
+/obj/structure/largecrate/random/barrel/red,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"iJB" = (
/obj/structure/sign/safety/galley{
pixel_x = 8;
@@ -37405,6 +37056,12 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
+"iKy" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"iKD" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -37514,6 +37171,12 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/processing)
+"iLL" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"iLO" = (
/turf/open/floor/almayer{
dir = 4;
@@ -37538,11 +37201,18 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
+"iMD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"iMI" = (
-/obj/structure/machinery/cm_vending/sorted/medical/blood,
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
},
+/obj/structure/machinery/cm_vending/sorted/medical,
+/obj/structure/medical_supply_link,
/turf/open/floor/almayer{
dir = 1;
icon_state = "sterile_green_side"
@@ -37610,12 +37280,6 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
-"iOP" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"iOX" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37667,17 +37331,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"iPK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"iPN" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/station_alert,
@@ -37699,14 +37352,6 @@
icon_state = "cargo"
},
/area/almayer/squads/alpha)
-"iPU" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"iQd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -37790,12 +37435,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"iQG" = (
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"iQJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37806,15 +37445,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
-"iRi" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"iRp" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
@@ -37844,6 +37474,61 @@
dir = 4
},
/area/almayer/medical/containment/cell)
+"iSd" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"iSm" = (
/obj/structure/pipes/vents/pump,
/obj/structure/mirror{
@@ -37890,15 +37575,15 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
-"iSu" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"iSx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
},
/turf/open/floor/almayer{
- icon_state = "orangecorner"
+ icon_state = "silvercorner"
},
-/area/almayer/hallways/upper/aft_hallway)
+/area/almayer/hallways/upper/midship_hallway)
"iSB" = (
/obj/structure/platform_decoration{
dir = 8
@@ -37958,6 +37643,20 @@
/obj/structure/curtain/red,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_a_s)
+"iTt" = (
+/obj/structure/largecrate/supply/medicine/medivend{
+ pixel_x = 3
+ },
+/obj/structure/largecrate/random/mini/med{
+ density = 1;
+ pixel_x = 3;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"iTw" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -37984,6 +37683,25 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_s)
+"iTW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ closeOtherId = "astroladder_n";
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
"iUh" = (
/obj/structure/sign/safety/bulkhead_door{
pixel_x = -16
@@ -38044,11 +37762,6 @@
icon_state = "sterile_green_corner"
},
/area/almayer/shipboard/brig/medical)
-"iUV" = (
-/turf/open/floor/almayer{
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"iUW" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -38081,6 +37794,29 @@
icon_state = "silvercorner"
},
/area/almayer/command/cichallway)
+"iVz" = (
+/obj/structure/surface/rack,
+/obj/item/tool/wirecutters,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
+"iVD" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigmaint_n";
+ dir = 1;
+ name = "\improper Brig"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/hull/upper/s_bow)
"iVE" = (
/obj/structure/sign/safety/bathunisex{
pixel_x = 32
@@ -38124,6 +37860,10 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/delta)
+"iWn" = (
+/obj/item/paper/almayer_storage,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"iWx" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out"
@@ -38134,6 +37874,13 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
+"iWB" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"iWH" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -38292,11 +38039,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
-"iZz" = (
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"iZE" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/obj/effect/decal/warning_stripes{
@@ -38343,12 +38085,6 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"jae" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"jaf" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 4
@@ -38382,7 +38118,7 @@
dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"jas" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -38453,10 +38189,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
-"jaW" = (
-/obj/effect/landmark/start/reporter,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"jbq" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
@@ -38516,12 +38248,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"jbO" = (
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"jbX" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -38532,6 +38258,17 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/shipboard/brig/processing)
+"jcu" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0;
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"jcE" = (
/obj/structure/machinery/vending/coffee{
density = 0;
@@ -38546,6 +38283,14 @@
icon_state = "plating_striped"
},
/area/almayer/engineering/upper_engineering/starboard)
+"jdl" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/platform_decoration,
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"jdm" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -38844,12 +38589,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/mp_bunks)
-"jgS" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"jhb" = (
/obj/structure/sign/safety/cryo{
pixel_x = -6;
@@ -38860,12 +38599,6 @@
"jhc" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_umbilical)
-"jhm" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"jhn" = (
/turf/open/floor/almayer{
dir = 1;
@@ -38923,6 +38656,15 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
+"jhQ" = (
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/beret/cm,
+/obj/item/clothing/head/beret/cm,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"jhR" = (
/obj/structure/reagent_dispensers/water_cooler/stacks{
density = 0;
@@ -38995,24 +38737,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/vehiclehangar)
-"jjn" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/structure/machinery/door/window/eastright{
- dir = 8;
- req_access_txt = "8"
- },
-/obj/structure/machinery/door/window/eastleft{
- req_access_txt = "8"
- },
-/obj/item/desk_bell{
- pixel_x = -6;
- pixel_y = 10;
- anchored = 1
- },
-/turf/open/floor/almayer{
- icon_state = "sterile_green"
- },
-/area/almayer/medical/lower_medical_medbay)
"jjS" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -39112,18 +38836,21 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"jkL" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"jkN" = (
/obj/structure/largecrate/random/barrel/yellow,
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
+"jkT" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"jkY" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -39206,12 +38933,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"jlO" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/aft_hallway)
"jlQ" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -39334,12 +39055,6 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/port)
-"jnx" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 6
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"jnD" = (
/turf/open/floor/almayer{
dir = 1;
@@ -39378,6 +39093,29 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"jpl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ closeOtherId = "containment_n";
+ dir = 8;
+ name = "\improper Containment Airlock"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
"jpn" = (
/obj/structure/stairs{
icon_state = "ramptop"
@@ -39412,6 +39150,27 @@
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
+"jpD" = (
+/obj/structure/machinery/door/window/eastleft{
+ req_one_access_txt = "2;21"
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby2";
+ name = "\improper RO Line 2"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/surface/table/reinforced/almayer_blend,
+/obj/item/desk_bell{
+ pixel_x = -6;
+ pixel_y = 10;
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"jpW" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -39444,6 +39203,12 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
+"jrc" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"jre" = (
/obj/structure/closet/secure_closet/cargotech,
/obj/item/clothing/accessory/storage/webbing,
@@ -39483,6 +39248,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/p_stern)
+"jrC" = (
+/obj/structure/machinery/vending/hydronutrients,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"jrI" = (
/obj/structure/filingcabinet{
density = 0;
@@ -39518,6 +39289,19 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
+"jsd" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/obj/structure/sign/safety/stairs{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"jss" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -39600,6 +39384,18 @@
icon_state = "emerald"
},
/area/almayer/hallways/lower/port_midship_hallway)
+"juj" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"juo" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
@@ -39610,15 +39406,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"juG" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
-"juM" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"juS" = (
/obj/structure/machinery/gear{
id = "vehicle_elevator_gears"
@@ -39692,12 +39479,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_s)
-"jvz" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"jvB" = (
/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer/aicore/no_build{
@@ -39800,12 +39581,6 @@
icon_state = "red"
},
/area/almayer/squads/alpha_bravo_shared)
-"jwM" = (
-/obj/structure/largecrate/supply/floodlights,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"jwP" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -39820,6 +39595,13 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
+"jxq" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"jxu" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = -25
@@ -39882,6 +39664,27 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
+"jyY" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "Brig Lockdown Shutters";
+ name = "\improper Brig Lockdown Shutter"
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigmaint_s";
+ dir = 1;
+ name = "\improper Brig Maintenance"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ id = "perma_lockdown_2";
+ name = "\improper Perma Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/perma)
"jzD" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -39991,6 +39794,17 @@
/obj/docking_port/stationary/escape_pod/south,
/turf/open/floor/plating,
/area/almayer/maint/hull/lower/l_m_s)
+"jCm" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/prop/almayer/computer/PC{
+ dir = 4
+ },
+/obj/item/tool/stamp/approved{
+ pixel_x = -3;
+ pixel_y = -11
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/req)
"jCn" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/screwdriver,
@@ -40207,6 +40021,17 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_s)
+"jFM" = (
+/obj/structure/surface/table/almayer,
+/obj/item/attachable/lasersight,
+/obj/item/reagent_container/food/drinks/cans/souto/vanilla{
+ pixel_x = 10;
+ pixel_y = 11
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"jFY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -40291,13 +40116,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/morgue)
-"jHX" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"jIC" = (
/obj/structure/machinery/computer/working_joe{
dir = 4;
@@ -40486,15 +40304,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"jMP" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"jMQ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -40585,14 +40394,6 @@
"jNT" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/execution)
-"jOc" = (
-/obj/structure/closet/secure_closet/personal/cabinet{
- pixel_x = 1;
- pixel_y = 17;
- req_access = null
- },
-/turf/open/floor/almayer,
-/area/almayer/living/numbertwobunks)
"jOi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -40754,20 +40555,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"jRg" = (
-/obj/effect/landmark/crap_item,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
-"jRm" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"jRp" = (
/obj/structure/largecrate/supply/supplies/water,
/obj/item/toy/deck{
@@ -41112,6 +40899,24 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
+"jXk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/largecrate/supply/weapons/m39{
+ pixel_x = 2
+ },
+/obj/structure/largecrate/supply/weapons/m41a{
+ layer = 3.1;
+ pixel_x = 6;
+ pixel_y = 17
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"jXN" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_s)
"jXR" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/blocker/forcefield/multitile_vehicles,
@@ -41123,6 +40928,12 @@
allow_construction = 0
},
/area/almayer/hallways/lower/starboard_fore_hallway)
+"jYa" = (
+/obj/structure/machinery/vending/hydroseeds,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"jYc" = (
/obj/item/bedsheet/blue{
layer = 3.2
@@ -41215,23 +41026,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
-"jZj" = (
-/obj/structure/surface/rack,
-/obj/item/book/manual/orbital_cannon_manual,
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
-"jZl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"jZo" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/obj/effect/step_trigger/clone_cleaner,
@@ -41292,16 +41086,6 @@
},
/turf/open/floor/almayer,
/area/almayer/medical/containment/cell/cl)
-"jZW" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"jZY" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/almayer{
@@ -41316,6 +41100,18 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_bow)
+"kaj" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"kak" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"kam" = (
/obj/item/tool/screwdriver{
layer = 2.9;
@@ -41351,6 +41147,16 @@
icon_state = "red"
},
/area/almayer/squads/alpha)
+"kaE" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "cargo_arrow"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"kaI" = (
/obj/structure/bed/chair{
dir = 4
@@ -41359,6 +41165,15 @@
icon_state = "bluefull"
},
/area/almayer/squads/charlie_delta_shared)
+"kaO" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"kaQ" = (
/obj/structure/disposalpipe/junction,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -41392,6 +41207,21 @@
icon_state = "test_floor4"
},
/area/almayer/squads/bravo)
+"kbl" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/obj/structure/machinery/light,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/fore_hallway)
"kbv" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/upper/starboard)
@@ -41442,16 +41272,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/containment)
-"kbT" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"kbV" = (
/obj/structure/platform{
dir = 1
@@ -41495,6 +41315,21 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_f_p)
+"kcx" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ closeOtherId = "ciclobby_n";
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
"kcA" = (
/obj/structure/machinery/light{
dir = 1
@@ -41561,13 +41396,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"keE" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"keG" = (
/obj/structure/machinery/door/airlock/almayer/security{
dir = 2;
@@ -41593,25 +41421,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/starboard)
-"kfo" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"kfB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/light{
@@ -41694,6 +41503,33 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/vehiclehangar)
+"kgV" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ layer = 3.33;
+ pixel_x = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ layer = 3.33;
+ pixel_y = 2
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ layer = 3.3
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ layer = 3.3
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "plating"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"khd" = (
/obj/structure/bed/chair{
dir = 4
@@ -41756,6 +41592,15 @@
/obj/item/storage/belt/utility,
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
+"kin" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"kio" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -41768,15 +41613,6 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"kiq" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"kiy" = (
/obj/structure/machinery/light{
dir = 8
@@ -41903,12 +41739,6 @@
icon_state = "cargo"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"kjX" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/aft_hallway)
"kjY" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -41970,12 +41800,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"klr" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"klH" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -42016,6 +41840,25 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/north2)
+"kmT" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"knb" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"kng" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -42059,6 +41902,20 @@
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south2)
+"knU" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"kon" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
"kow" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -42112,6 +41969,15 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
+"kpL" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"kpQ" = (
/obj/structure/machinery/door_control{
id = "engidorm";
@@ -42124,6 +41990,13 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"kqa" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"kqb" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -42147,6 +42020,19 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
+"kqo" = (
+/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link/green,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/medical_science)
"kqt" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -42269,6 +42155,14 @@
icon_state = "plating"
},
/area/almayer/squads/req)
+"krO" = (
+/obj/structure/machinery/cm_vending/sorted/medical,
+/obj/structure/medical_supply_link,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/shipboard/brig/medical)
"krS" = (
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
@@ -42370,6 +42264,15 @@
icon_state = "silver"
},
/area/almayer/hallways/lower/repair_bay)
+"ktQ" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_arrow"
+ },
+/area/almayer/command/airoom)
"ktR" = (
/obj/item/trash/crushed_cup,
/turf/open/floor/almayer{
@@ -42572,6 +42475,27 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/mp_bunks)
+"kya" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"kyh" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -42729,25 +42653,6 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"kzR" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
-"kzT" = (
-/obj/structure/machinery/door_control{
- id = "ARES StairsLower";
- name = "ARES Core Lockdown";
- pixel_x = -24;
- pixel_y = -8;
- req_one_access_txt = "90;91;92"
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"kAh" = (
/obj/structure/sign/safety/restrictedarea{
pixel_x = -17
@@ -42771,56 +42676,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
-"kAp" = (
-/obj/structure/surface/rack{
- desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards."
- },
-/obj/structure/machinery/light/small{
- dir = 4;
- icon_state = "bulb-burned";
- status = 3
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/prop{
- desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag"
- },
-/obj/item/prop{
- desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag"
- },
-/obj/item/prop{
- desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
- icon = 'icons/obj/items/bloodpack.dmi';
- icon_state = "bloodpack";
- name = "blood bag"
- },
-/obj/item/prop{
- desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged.";
- icon = 'icons/obj/items/circuitboards.dmi';
- icon_state = "id_mod";
- layer = 2.78;
- name = "circuit board";
- pixel_x = 8;
- pixel_y = 10
- },
-/obj/item/prop{
- desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged.";
- icon = 'icons/obj/items/circuitboards.dmi';
- icon_state = "id_mod";
- layer = 2.79;
- name = "circuit board";
- pixel_x = 8;
- pixel_y = 7
- },
-/turf/open/floor/almayer{
- icon_state = "sterile_green_corner"
- },
-/area/almayer/medical/lower_medical_medbay)
"kAv" = (
/obj/structure/largecrate/supply/ammo/shotgun,
/turf/open/floor/plating/plating_catwalk,
@@ -42890,6 +42745,36 @@
icon_state = "test_floor4"
},
/area/almayer/medical/hydroponics)
+"kCl" = (
+/obj/structure/surface/rack,
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/rifle/l42a/ap{
+ current_rounds = 0;
+ pixel_x = 5;
+ pixel_y = -3
+ },
+/obj/structure/noticeboard{
+ desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'";
+ pixel_y = 29
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"kCm" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 15;
@@ -43026,10 +42911,14 @@
icon_state = "redfull"
},
/area/almayer/living/briefing)
-"kED" = (
-/obj/structure/closet/firecloset,
+"kEA" = (
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
/turf/open/floor/almayer{
- icon_state = "cargo"
+ allow_construction = 0
},
/area/almayer/hallways/upper/fore_hallway)
"kEE" = (
@@ -43132,7 +43021,7 @@
/turf/open/floor/almayer{
icon_state = "mono"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"kHd" = (
/obj/structure/machinery/computer/arcade,
/obj/item/prop/helmetgarb/spacejam_tickets{
@@ -43347,10 +43236,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_p)
-"kLB" = (
-/obj/docking_port/stationary/escape_pod/east,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_s)
"kLE" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/poddoor/almayer{
@@ -43375,13 +43260,6 @@
icon_state = "greencorner"
},
/area/almayer/squads/req)
-"kLZ" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/barrel/red,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"kMa" = (
/obj/structure/platform_decoration,
/turf/open/floor/almayer{
@@ -43441,6 +43319,13 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
+"kMV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/starboard)
"kMW" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access = null
@@ -43480,20 +43365,6 @@
"kNq" = (
/turf/closed/wall/almayer,
/area/almayer/maint/hull/upper/u_a_p)
-"kNx" = (
-/obj/structure/sign/safety/ref_bio_storage{
- pixel_x = -17;
- pixel_y = 7
- },
-/obj/structure/sign/safety/biohazard{
- pixel_x = -17;
- pixel_y = -7
- },
-/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/medical/medical_science)
"kNC" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -43578,12 +43449,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_p)
-"kON" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"kOR" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -43607,6 +43472,12 @@
icon_state = "plate"
},
/area/almayer/squads/req)
+"kPa" = (
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"kPx" = (
/obj/structure/surface/table/almayer,
/obj/item/device/mass_spectrometer,
@@ -43719,21 +43590,6 @@
icon_state = "cargo"
},
/area/almayer/command/lifeboat)
-"kRk" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/screwdriver,
-/obj/item/prop/helmetgarb/gunoil{
- pixel_x = -7;
- pixel_y = 12
- },
-/obj/item/weapon/gun/rifle/l42a{
- pixel_x = 17;
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"kRD" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/structure/machinery/light{
@@ -43751,13 +43607,6 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
-"kRN" = (
-/obj/structure/surface/rack,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"kRP" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/item/prop/magazine/dirty/torn,
@@ -43820,6 +43669,13 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/port_fore_hallway)
+"kSC" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link/green,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"kSH" = (
/obj/structure/sign/prop1{
pixel_y = 32
@@ -43832,18 +43688,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"kSL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/structure/machinery/alarm/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"kSU" = (
/obj/structure/transmitter/no_dnd{
name = "Requisition Telephone";
@@ -43910,15 +43754,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"kUs" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"kUA" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
@@ -43932,6 +43767,23 @@
icon_state = "green"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"kUJ" = (
+/obj/item/trash/USCMtray{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/tool/kitchen/utensil/pfork{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"kUL" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -43968,6 +43820,10 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"kVW" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"kVZ" = (
/obj/structure/machinery/door/window/brigdoor/southright{
id = "Cell 2";
@@ -43978,14 +43834,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
-"kWc" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"kWk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -44070,12 +43918,6 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"kXj" = (
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"kXm" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -44110,6 +43952,12 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"kXD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"kXN" = (
/obj/item/clothing/glasses/sunglasses/aviator{
pixel_x = -1;
@@ -44119,6 +43967,15 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/laundry)
+"kYb" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"kYl" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -44149,6 +44006,14 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"kYF" = (
+/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_f_s)
"kYL" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -44182,6 +44047,12 @@
icon_state = "plate"
},
/area/almayer/living/offices)
+"kZc" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"kZN" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/prop/almayer/computer/PC{
@@ -44219,6 +44090,25 @@
icon_state = "emerald"
},
/area/almayer/living/gym)
+"lat" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
+"laD" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_p)
+"laI" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"laM" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -44240,13 +44130,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
-"laP" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"laQ" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -44281,23 +44164,6 @@
},
/turf/open/floor/plating,
/area/almayer/command/cic)
-"lbc" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
"lbf" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -44326,6 +44192,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"lbO" = (
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"lbX" = (
/obj/structure/bed/chair{
dir = 4
@@ -44394,16 +44266,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
-"ldq" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"ldt" = (
/obj/structure/machinery/conveyor{
dir = 8;
@@ -44414,12 +44276,6 @@
icon_state = "plate"
},
/area/almayer/living/gym)
-"ldz" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/upper/u_a_s)
"ldC" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -44495,9 +44351,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"lfc" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_f_s)
"lft" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/fire,
@@ -44522,6 +44375,16 @@
icon_state = "blue"
},
/area/almayer/living/basketball)
+"lfZ" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/food/snacks/mre_pack/meal5,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"lgk" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
@@ -44680,18 +44543,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
-"liF" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet,
-/obj/item/clothing/under/marine,
-/obj/item/clothing/suit/storage/marine,
-/obj/item/clothing/head/helmet/marine,
-/obj/item/clothing/head/cmcap,
-/obj/item/clothing/head/cmcap,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"liJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -44887,15 +44738,22 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"llt" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 8
+"lla" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
+"llo" = (
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
+ dir = 4;
+ icon_state = "green"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/fore_hallway)
"llK" = (
/obj/structure/platform_decoration{
dir = 4
@@ -44960,6 +44818,20 @@
icon_state = "plate"
},
/area/almayer/living/numbertwobunks)
+"lmG" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/fore_hallway)
"lmK" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/command/securestorage)
@@ -44992,10 +44864,6 @@
icon_state = "silvercorner"
},
/area/almayer/shipboard/brig/cic_hallway)
-"lnD" = (
-/obj/structure/window/framed/almayer,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_a_s)
"lnP" = (
/obj/structure/machinery/vending/cola,
/obj/structure/window/reinforced,
@@ -45089,12 +44957,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"loz" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/starboard)
"loE" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_f_s)
@@ -45179,13 +45041,6 @@
icon_state = "test_floor4"
},
/area/almayer/powered/agent)
-"lpJ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/north1)
"lql" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -45208,6 +45063,16 @@
icon_state = "emerald"
},
/area/almayer/hallways/hangar)
+"lqL" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"lqN" = (
/obj/item/device/assembly/mousetrap/armed,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -45218,15 +45083,6 @@
icon_state = "orange"
},
/area/almayer/living/port_emb)
-"lrd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/midship_hallway)
"lrq" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/armory)
@@ -45268,15 +45124,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"lsh" = (
-/obj/structure/machinery/light/small{
- dir = 1;
- pixel_y = 20
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"lsn" = (
/obj/structure/surface/table/almayer,
/obj/item/paper{
@@ -45358,14 +45205,6 @@
icon_state = "sterile_green"
},
/area/almayer/medical/containment)
-"ltt" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/midship_hallway)
"ltv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45580,11 +45419,6 @@
icon_state = "cargo"
},
/area/almayer/living/commandbunks)
-"lxJ" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_p)
"lxT" = (
/obj/structure/machinery/constructable_frame,
/turf/open/floor/almayer{
@@ -45599,6 +45433,23 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
+"lyh" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/surgery/scalpel{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/stack/cable_coil{
+ pixel_y = 1;
+ pixel_x = 8
+ },
+/obj/item/stack/sheet/cardboard/small_stack{
+ pixel_y = 2;
+ pixel_x = -3;
+ layer = 3.01
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/alpha_bravo_shared)
"lyk" = (
/obj/structure/sign/safety/storage{
pixel_x = -17
@@ -45688,6 +45539,21 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
+"lzt" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/screwdriver,
+/obj/item/prop/helmetgarb/gunoil{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_x = 17;
+ pixel_y = 6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"lzA" = (
/obj/structure/machinery/sleep_console{
dir = 8
@@ -45696,13 +45562,6 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"lzF" = (
-/obj/structure/pipes/standard/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"lAa" = (
/obj/structure/surface/table/almayer,
/obj/item/device/lightreplacer{
@@ -45752,13 +45611,10 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"lBf" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
+"lAW" = (
+/obj/docking_port/stationary/escape_pod/east,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_p)
"lBg" = (
/obj/structure/bedsheetbin,
/turf/open/floor/almayer{
@@ -45783,46 +45639,16 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"lBw" = (
-/obj/structure/machinery/cryopod{
- pixel_y = 6
- },
-/obj/structure/sign/safety/cryo{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/upper/u_m_p)
-"lBB" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
-"lCc" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
-"lCf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"lCg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
},
+/obj/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer{
- icon_state = "orangecorner"
+ dir = 8;
+ icon_state = "green"
},
-/area/almayer/hallways/upper/aft_hallway)
+/area/almayer/hallways/upper/fore_hallway)
"lCm" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -45896,6 +45722,10 @@
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
+"lDH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"lDL" = (
/obj/structure/machinery/light{
dir = 4
@@ -46011,6 +45841,19 @@
icon_state = "blue"
},
/area/almayer/living/port_emb)
+"lFj" = (
+/obj/structure/machinery/door_control{
+ id = "ARES Operations Right";
+ name = "ARES Operations Shutter";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"lFm" = (
/turf/open/floor/almayer{
dir = 8;
@@ -46080,29 +45923,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/port)
-"lFJ" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigcells";
- name = "\improper Brig Prisoner Yard"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "courtyard_cells";
- name = "\improper Courtyard Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/processing)
"lFK" = (
/obj/structure/machinery/light{
dir = 8
@@ -46129,6 +45949,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"lGh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"lHk" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes{
@@ -46208,6 +46037,17 @@
icon_state = "mono"
},
/area/almayer/engineering/upper_engineering/port)
+"lIY" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/starboard)
"lJu" = (
/obj/structure/barricade/metal{
dir = 1
@@ -46336,6 +46176,12 @@
icon_state = "greencorner"
},
/area/almayer/hallways/lower/port_fore_hallway)
+"lLt" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"lLC" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
@@ -46398,6 +46244,28 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
+"lMF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ closeOtherId = "ciclobby_n";
+ id_tag = "cic_exterior";
+ name = "\improper Combat Information Center"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
"lMO" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
@@ -46436,6 +46304,16 @@
icon_state = "plate"
},
/area/almayer/squads/charlie)
+"lNL" = (
+/obj/item/tool/mop{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/item/reagent_container/glass/bucket,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"lNR" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -46449,7 +46327,7 @@
dir = 4
},
/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"lOr" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -46532,10 +46410,12 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
-"lPW" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
+"lPY" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"lQa" = (
/obj/structure/machinery/light{
dir = 8
@@ -46560,16 +46440,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
-"lQl" = (
-/obj/structure/sign/safety/rewire{
- pixel_x = 32
- },
-/obj/structure/machinery/power/apc/almayer,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/lower/port_aft_hallway)
"lQz" = (
/obj/structure/machinery/vending/coffee,
/turf/open/floor/almayer{
@@ -46602,6 +46472,12 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_three)
+"lRh" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"lRs" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -46674,6 +46550,23 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_bow)
+"lSN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
+"lST" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_f_p)
"lSX" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -46699,18 +46592,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/chapel)
-"lUm" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
- closeOtherId = "briglobby";
- name = "\improper Brig Cells"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/processing)
"lUA" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -46816,6 +46697,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/upper/mess)
+"lWS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"lWY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -46841,6 +46730,12 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
+"lXl" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"lXO" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -46855,6 +46750,15 @@
icon_state = "green"
},
/area/almayer/living/offices)
+"lXR" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"lYg" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/plating_catwalk,
@@ -46893,6 +46797,15 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"lYS" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"lZb" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
@@ -46938,6 +46851,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_p)
+"lZJ" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"lZM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -46964,15 +46883,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
-"maF" = (
-/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
- pixel_y = 25
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"maI" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -47057,6 +46967,9 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/vehiclehangar)
+"mdm" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"mdo" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer{
@@ -47133,13 +47046,6 @@
"meQ" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_midship_hallway)
-"meS" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/midship_hallway)
"meT" = (
/obj/structure/machinery/door/poddoor/almayer/open{
id = "Hangar Lockdown";
@@ -47157,15 +47063,18 @@
damage_cap = 15000
},
/area/almayer/squads/alpha)
-"mfH" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
+"mfL" = (
+/obj/item/reagent_container/glass/bucket/janibucket{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/structure/sign/safety/water{
+ pixel_x = -17
},
-/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/maint/upper/u_a_s)
+/area/almayer/maint/upper/u_f_s)
"mfM" = (
/obj/structure/surface/table/almayer,
/obj/effect/landmark/map_item,
@@ -47179,22 +47088,22 @@
icon_state = "silver"
},
/area/almayer/living/briefing)
+"mfO" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"mfQ" = (
/turf/open/floor/almayer{
allow_construction = 0;
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"mfR" = (
-/obj/structure/surface/table/almayer,
-/obj/item/paper_bin{
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/tool/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"mgb" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_p)
@@ -47311,6 +47220,9 @@
icon_state = "plate"
},
/area/almayer/squads/alpha)
+"mis" = (
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_f_s)
"miy" = (
/obj/structure/machinery/optable,
/obj/structure/sign/safety/medical{
@@ -47369,9 +47281,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
-"mjR" = (
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_f_s)
"mjS" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -47601,6 +47510,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_umbilical)
+"mnf" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"mng" = (
/turf/open/floor/almayer{
icon_state = "redcorner"
@@ -47612,33 +47527,18 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
-"mnC" = (
+"mnB" = (
+/obj/structure/surface/rack,
+/obj/item/clothing/glasses/meson,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "greencorner"
+ icon_state = "red"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/maint/upper/u_a_p)
"mnI" = (
/turf/open/floor/almayer{
icon_state = "blue"
},
/area/almayer/living/briefing)
-"mnV" = (
-/obj/structure/sign/safety/refridgeration{
- pixel_y = -32
- },
-/obj/structure/sign/safety/medical{
- pixel_x = 15;
- pixel_y = -32
- },
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"mnW" = (
/obj/structure/surface/table/almayer,
/obj/item/device/reagent_scanner{
@@ -47670,15 +47570,6 @@
icon_state = "cargo"
},
/area/almayer/maint/hull/upper/u_f_p)
-"moq" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
"mor" = (
/obj/structure/machinery/light{
dir = 8
@@ -47776,12 +47667,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"mqd" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/upper/midship_hallway)
"mqg" = (
/obj/structure/bed/chair{
dir = 4
@@ -47859,6 +47744,19 @@
icon_state = "green"
},
/area/almayer/squads/req)
+"mrO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 5
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"msg" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/waterhazard{
@@ -47923,6 +47821,12 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
+"msS" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"msZ" = (
/obj/structure/barricade/handrail{
dir = 8
@@ -47941,14 +47845,6 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"mtq" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"mtr" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -48048,6 +47944,11 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"muW" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"mvg" = (
/obj/docking_port/stationary/escape_pod/west,
/turf/open/floor/plating,
@@ -48139,14 +48040,17 @@
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/stair_clone/upper)
-"mxg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"mxo" = (
+/obj/docking_port/stationary/escape_pod/south,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_f_p)
+"mxq" = (
+/obj/structure/machinery/door_control/cl/office/door{
+ pixel_y = -20
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/turf/open/floor/almayer{
+ icon_state = "plate"
},
-/turf/open/floor/almayer,
/area/almayer/hallways/upper/midship_hallway)
"mxT" = (
/obj/structure/surface/table/almayer,
@@ -48231,26 +48135,17 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/armory)
-"mze" = (
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "Brig Lockdown Shutters";
- name = "\improper Brig Lockdown Shutter"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigmaint_n";
- name = "\improper Brig"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/starboard_hallway)
"mzg" = (
/turf/open/floor/almayer{
icon_state = "emerald"
},
/area/almayer/squads/charlie)
+"mzn" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"mzq" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -48371,25 +48266,38 @@
icon_state = "dark_sterile"
},
/area/almayer/living/pilotbunks)
-"mBp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"mBk" = (
+/obj/structure/surface/table/almayer,
+/obj/item/reagent_container/pill/happy{
+ pixel_x = 6;
+ pixel_y = -4
},
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+/obj/item/prop/helmetgarb/prescription_bottle{
+ pixel_x = 9
},
-/obj/structure/machinery/door/airlock/almayer/security/reinforced{
- access_modified = 1;
- closeOtherId = "astroladder_n";
- name = "\improper Astronavigational Deck";
- req_access = null;
- req_one_access_txt = "3;19"
+/obj/item/tool/surgery/bonegel/empty{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/obj/item/tool/surgery/bonegel/empty{
+ pixel_x = -8;
+ pixel_y = 13
+ },
+/obj/item/tool/surgery/bonegel/empty{
+ layer = 3.01;
+ pixel_x = -5;
+ pixel_y = 19
+ },
+/obj/item/storage/box/gloves{
+ layer = 3.2;
+ pixel_x = -5;
+ pixel_y = 2
},
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ dir = 1;
+ icon_state = "sterile_green_corner"
},
-/area/almayer/shipboard/navigation)
+/area/almayer/medical/lower_medical_medbay)
"mBx" = (
/obj/structure/machinery/firealarm{
dir = 4;
@@ -48416,6 +48324,11 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"mCg" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_p)
"mCo" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -48432,6 +48345,10 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
+"mCJ" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_p)
"mCL" = (
/obj/structure/sign/safety/fire_haz{
pixel_x = 8;
@@ -48455,13 +48372,6 @@
icon_state = "green"
},
/area/almayer/squads/req)
-"mDz" = (
-/obj/structure/machinery/shower{
- pixel_y = 16
- },
-/obj/item/tool/soap,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"mDJ" = (
/turf/open/floor/almayer,
/area/almayer/engineering/upper_engineering/starboard)
@@ -48517,6 +48427,33 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
+"mEs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/structure/machinery/door_control{
+ id = "ARES Interior";
+ indestructible = 1;
+ name = "ARES Chamber Lockdown";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/door/poddoor/railing{
+ closed_layer = 4;
+ density = 0;
+ id = "ARES Railing";
+ layer = 2.1;
+ open_layer = 2.1;
+ unacidable = 0;
+ unslashable = 0
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"mEE" = (
/obj/structure/platform{
dir = 4;
@@ -48611,23 +48548,27 @@
"mFQ" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/maint/hull/lower/s_bow)
+"mGb" = (
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"mGe" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/command/cichallway)
-"mGk" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"mGu" = (
/turf/open/floor/almayer{
dir = 4;
icon_state = "silver"
},
/area/almayer/command/securestorage)
+"mGL" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"mGT" = (
/obj/structure/machinery/status_display{
pixel_y = 30
@@ -48695,12 +48636,6 @@
icon_state = "mono"
},
/area/almayer/medical/hydroponics)
-"mHE" = (
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"mHF" = (
/obj/structure/surface/rack,
/obj/item/clothing/head/headband/red{
@@ -48719,6 +48654,20 @@
icon_state = "mono"
},
/area/almayer/living/pilotbunks)
+"mHT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "orange"
+ },
+/area/almayer/maint/upper/u_a_s)
+"mHY" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"mId" = (
/obj/structure/closet,
/obj/item/clothing/suit/armor/riot/marine/vintage_riot,
@@ -48763,6 +48712,16 @@
icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
+"mIR" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"mJa" = (
/obj/structure/closet/crate/trashcart,
/obj/item/trash/boonie,
@@ -48800,15 +48759,6 @@
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/squads/alpha)
-"mJp" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/fore_hallway)
"mJu" = (
/turf/open/floor/almayer/uscm/directional,
/area/almayer/command/cic)
@@ -48842,12 +48792,6 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
-"mJX" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"mKb" = (
/obj/structure/flora/pottedplant{
desc = "It is made of Fiberbush(tm). It contains asbestos.";
@@ -48919,15 +48863,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"mKG" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"mKJ" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -48960,6 +48895,10 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"mKN" = (
+/obj/effect/landmark/start/pilot/cas_pilot,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
"mLe" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -49079,20 +49018,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/perma)
-"mNS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/supply/weapons/m39{
- pixel_x = 2
- },
-/obj/structure/largecrate/supply/weapons/m41a{
- layer = 3.1;
- pixel_x = 6;
- pixel_y = 17
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"mNX" = (
/turf/open/floor/almayer_hull{
dir = 4;
@@ -49122,12 +49047,6 @@
"mOi" = (
/turf/closed/wall/almayer/outer,
/area/almayer/command/airoom)
-"mOw" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"mOE" = (
/obj/structure/sign/safety/water{
pixel_x = -17
@@ -49136,15 +49055,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"mOR" = (
-/obj/structure/surface/rack,
-/obj/item/roller,
-/obj/item/roller,
-/obj/effect/decal/cleanable/dirt,
+"mOZ" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/upper/u_f_s)
+/area/almayer/hallways/upper/midship_hallway)
"mPc" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -49188,23 +49104,6 @@
/obj/structure/machinery/vending/snack,
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_s)
-"mPK" = (
-/obj/structure/pipes/vents/scrubber{
- dir = 4
- },
-/obj/structure/sign/safety/storage{
- pixel_x = -17;
- pixel_y = 7
- },
-/obj/structure/sign/safety/commline_connection{
- pixel_x = -17;
- pixel_y = -7
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/squads/req)
"mPM" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -49258,11 +49157,6 @@
"mQC" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/port_atmos)
-"mQF" = (
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"mQY" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -49340,6 +49234,12 @@
icon_state = "test_floor4"
},
/area/almayer/maint/hull/upper/u_a_s)
+"mRJ" = (
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"mRQ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -49368,6 +49268,21 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"mSl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/clothing/glasses/mgoggles,
+/obj/item/clothing/glasses/mgoggles,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
+"mSo" = (
+/obj/structure/surface/rack,
+/obj/item/facepaint/sniper,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"mSr" = (
/obj/effect/landmark/crap_item,
/turf/open/floor/almayer,
@@ -49438,16 +49353,6 @@
icon_state = "red"
},
/area/almayer/shipboard/navigation)
-"mTo" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"mTp" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -49507,14 +49412,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_s)
-"mUL" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"mUY" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/tool,
@@ -49617,6 +49514,20 @@
icon_state = "cargo"
},
/area/almayer/living/bridgebunks)
+"mWJ" = (
+/obj/structure/stairs{
+ dir = 8;
+ icon_state = "ramptop"
+ },
+/obj/effect/projector{
+ name = "Almayer_Down3";
+ vector_x = 1;
+ vector_y = -102
+ },
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/fore_hallway)
"mWQ" = (
/obj/structure/flora/pottedplant{
desc = "It is made of Fiberbush(tm). It contains asbestos.";
@@ -49656,19 +49567,6 @@
/obj/item/tool/wrench,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/p_bow)
-"mYd" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = 32
- },
-/obj/structure/sign/safety/east{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"mYt" = (
/obj/effect/decal/warning_stripes{
icon_state = "W";
@@ -49684,6 +49582,12 @@
},
/turf/closed/wall/almayer,
/area/almayer/squads/req)
+"mYA" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"mZb" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -49741,12 +49645,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
-"mZv" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"mZF" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -49817,12 +49715,23 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"naj" = (
-/obj/structure/machinery/light,
+"nah" = (
+/obj/structure/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/obj/item/desk_bell{
+ anchored = 1
+ },
/turf/open/floor/almayer{
- icon_state = "silver"
+ dir = 6;
+ icon_state = "red"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/shipboard/brig/lobby)
"nar" = (
/obj/structure/toilet{
dir = 4
@@ -49893,23 +49802,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_midship_hallway)
-"nbW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"nbH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
-"nbY" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/hallways/upper/aft_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"ncf" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -49939,6 +49840,16 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"ncx" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1;
+ name = "\improper Emergency Air Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_s)
"ncE" = (
/obj/structure/machinery/light{
dir = 8
@@ -49966,13 +49877,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"ncV" = (
-/obj/structure/closet,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"ndl" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -50020,6 +49924,12 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/vehiclehangar)
+"ner" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"new" = (
/obj/item/reagent_container/glass/bucket/janibucket,
/obj/item/reagent_container/glass/bucket/janibucket{
@@ -50081,6 +49991,22 @@
/obj/structure/surface/table/woodentable/fancy,
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
+"neZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ layer = 2.5
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"nff" = (
/obj/structure/surface/table/almayer,
/obj/item/trash/USCMtray{
@@ -50091,6 +50017,13 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
+"nfC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
"ngf" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -50170,15 +50103,6 @@
icon_state = "plate"
},
/area/almayer/squads/bravo)
-"ngF" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
"ngI" = (
/turf/open/floor/almayer{
dir = 8;
@@ -50302,6 +50226,13 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"nhN" = (
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"nhV" = (
/obj/structure/machinery/light/small,
/turf/open/floor/almayer{
@@ -50316,6 +50247,14 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"nii" = (
+/obj/structure/machinery/status_display{
+ pixel_y = -30
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nik" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -50462,6 +50401,12 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/lower/engine_core)
+"nkc" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"nkj" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -50543,6 +50488,14 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/briefing)
+"nlI" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"nlW" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/largecrate/random/barrel/green,
@@ -50651,18 +50604,6 @@
icon_state = "plate"
},
/area/almayer/stair_clone/upper)
-"nnH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/largecrate/random/secure{
- pixel_x = -5
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"nnL" = (
/obj/structure/toilet{
dir = 8
@@ -50675,6 +50616,12 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"noe" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"noj" = (
/obj/structure/largecrate,
/obj/structure/prop/server_equipment/laptop{
@@ -50685,6 +50632,19 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
+"noo" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ closeOtherId = "astroladder_s";
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
"nop" = (
/obj/structure/machinery/portable_atmospherics/powered/scrubber,
/turf/open/floor/almayer{
@@ -50731,6 +50691,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_aft_hallway)
+"noO" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
"noP" = (
/obj/structure/machinery/light{
dir = 1
@@ -50803,13 +50770,6 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"nqG" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/south1)
"nqO" = (
/obj/structure/closet/secure_closet/fridge/fish/stock,
/turf/open/floor/almayer{
@@ -50900,6 +50860,19 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
+"nsr" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"nsH" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"nsQ" = (
/obj/structure/sink{
dir = 4;
@@ -51016,12 +50989,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
-"nvd" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
- },
-/area/almayer/maint/upper/u_m_p)
"nve" = (
/obj/structure/janitorialcart,
/obj/item/tool/mop,
@@ -51029,6 +50996,12 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_p)
+"nvz" = (
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"nvG" = (
/obj/structure/machinery/light{
dir = 8
@@ -51103,40 +51076,12 @@
dir = 4
},
/area/almayer/medical/containment/cell)
-"nwu" = (
-/obj/structure/sign/safety/escapepod{
- pixel_y = -32
- },
-/obj/structure/sign/safety/east{
- pixel_x = 15;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
-"nww" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"nwx" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
icon_state = "red"
},
/area/almayer/shipboard/port_missiles)
-"nwA" = (
-/obj/structure/largecrate/supply/generator,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"nwD" = (
/turf/open/floor/almayer{
dir = 1;
@@ -51160,10 +51105,6 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"nwT" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"nwU" = (
/obj/structure/machinery/light{
dir = 4
@@ -51245,6 +51186,11 @@
icon_state = "test_floor4"
},
/area/almayer/living/briefing)
+"nyK" = (
+/turf/open/floor/almayer{
+ icon_state = "greencorner"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"nyQ" = (
/turf/open/floor/almayer,
/area/almayer/squads/charlie_delta_shared)
@@ -51287,6 +51233,18 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/req)
+"nzT" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ closeOtherId = "brignorth";
+ name = "\improper Brig Lobby"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/starboard_hallway)
"nAd" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -51297,6 +51255,13 @@
/obj/effect/landmark/yautja_teleport,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
+"nAv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
"nAY" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -51494,6 +51459,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/medical_science)
+"nDH" = (
+/obj/structure/machinery/light/small{
+ dir = 1;
+ pixel_y = 20
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"nDM" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -51669,12 +51643,6 @@
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/north2)
-"nGZ" = (
-/obj/structure/largecrate/supply/supplies/water,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"nHu" = (
/obj/structure/largecrate/random/barrel/yellow,
/obj/structure/machinery/light{
@@ -51767,13 +51735,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/port_missiles)
-"nIF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/midship_hallway)
"nIG" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -51882,15 +51843,6 @@
icon_state = "plating"
},
/area/almayer/engineering/upper_engineering)
-"nLM" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"nMe" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -51961,12 +51913,6 @@
icon_state = "emeraldcorner"
},
/area/almayer/living/briefing)
-"nNI" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
"nNT" = (
/obj/item/tool/weldingtool,
/turf/open/floor/plating/plating_catwalk,
@@ -52017,6 +51963,15 @@
icon_state = "plate"
},
/area/almayer/command/corporateliaison)
+"nOp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"nOx" = (
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/plating_catwalk,
@@ -52159,14 +52114,6 @@
icon_state = "plating_striped"
},
/area/almayer/squads/req)
-"nQw" = (
-/obj/structure/closet,
-/obj/item/clothing/glasses/mgoggles/prescription,
-/obj/item/clothing/glasses/mbcg,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"nQA" = (
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
@@ -52241,6 +52188,13 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/execution)
+"nSw" = (
+/obj/structure/pipes/vents/pump,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nSG" = (
/obj/structure/machinery/door_control{
id = "tcomms";
@@ -52259,10 +52213,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
-"nTc" = (
-/obj/docking_port/stationary/escape_pod/south,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_f_p)
"nTl" = (
/turf/open/floor/almayer{
dir = 1;
@@ -52442,20 +52392,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"nVA" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
"nVB" = (
/turf/open/floor/almayer,
/area/almayer/command/securestorage)
@@ -52497,6 +52433,16 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/starboard)
+"nWf" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nWN" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/wood/ship,
@@ -52516,6 +52462,15 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
+"nXG" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"nXO" = (
/obj/structure/surface/table/woodentable/fancy,
/obj/item/storage/fancy/cigar{
@@ -52553,6 +52508,15 @@
icon_state = "test_floor4"
},
/area/almayer/squads/req)
+"nXV" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"nYc" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -52621,6 +52585,29 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_aft_hallway)
+"nZf" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/midship_hallway)
+"nZm" = (
+/obj/structure/machinery/door_control{
+ id = "OTStore";
+ name = "Shutters";
+ pixel_y = 24;
+ access_modified = 1;
+ req_one_access_txt = "35"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/engineering/lower/workshop/hangar)
"nZy" = (
/obj/structure/surface/table/almayer,
/obj/structure/disposalpipe/segment{
@@ -52636,13 +52623,11 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_a_p)
"nZK" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
},
-/area/almayer/maint/upper/u_f_p)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"nZR" = (
/obj/structure/machinery/power/apc/almayer{
dir = 8
@@ -52689,6 +52674,18 @@
icon_state = "plating_striped"
},
/area/almayer/maint/hull/lower/l_a_p)
+"oaP" = (
+/obj/structure/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/marine,
+/obj/item/clothing/suit/storage/marine,
+/obj/item/clothing/head/helmet/marine,
+/obj/item/clothing/head/cmcap,
+/obj/item/clothing/head/cmcap,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"oaW" = (
/obj/structure/machinery/cryopod/right,
/turf/open/floor/almayer{
@@ -52727,14 +52724,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
-"obJ" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"obQ" = (
/obj/structure/bed/chair{
dir = 8
@@ -52789,22 +52778,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/area/almayer/command/airoom)
-"ocI" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
-"ocX" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"odb" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -52955,12 +52928,6 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"oeN" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/hallways/upper/fore_hallway)
"oeZ" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/medical)
@@ -53009,6 +52976,19 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
+"ogT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
+"ohi" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"ohj" = (
/obj/structure/machinery/cryopod,
/turf/open/floor/almayer{
@@ -53168,6 +53148,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/warden_office)
+"oiz" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 2;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigwarden";
+ dir = 1;
+ name = "\improper Warden's Office"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/warden_office)
"oiL" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -53241,6 +53237,9 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
+"ojX" = (
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_f_p)
"ojZ" = (
/obj/structure/window/framed/almayer/white,
/obj/structure/machinery/door/firedoor/border_only/almayer,
@@ -53272,19 +53271,6 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
-"oko" = (
-/obj/structure/largecrate/supply/supplies/tables_racks,
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
-"okx" = (
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"okD" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer6"
@@ -53304,15 +53290,12 @@
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/s_bow)
-"olC" = (
-/obj/structure/largecrate/random/barrel/red,
-/obj/structure/machinery/light/small{
- dir = 8
- },
+"olF" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
-/area/almayer/maint/upper/u_f_s)
+/area/almayer/hallways/upper/midship_hallway)
"olM" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -53387,16 +53370,6 @@
/obj/structure/window/framed/almayer/white,
/turf/open/floor/plating,
/area/almayer/medical/lockerroom)
-"omp" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"omt" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -53434,18 +53407,6 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
-"onh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"onn" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -53540,6 +53501,12 @@
icon_state = "test_floor5"
},
/area/almayer/hallways/lower/port_midship_hallway)
+"opu" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"opC" = (
/obj/structure/machinery/door/airlock/almayer/command/reinforced{
name = "\improper Combat Information Center"
@@ -53571,24 +53538,6 @@
/obj/docking_port/stationary/emergency_response/external/port4,
/turf/open/space/basic,
/area/space)
-"opN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/sign/safety/bridge{
- pixel_y = 32
- },
-/obj/structure/sign/safety/reception{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
"opV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -53714,17 +53663,19 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"orq" = (
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 13
+"orx" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
},
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
},
+/obj/structure/machinery/door/airlock/almayer/maint,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/maint/upper/u_a_s)
"orH" = (
/turf/open/floor/almayer/uscm/directional{
dir = 10
@@ -53740,9 +53691,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop/hangar)
-"orV" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"osc" = (
/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep,
/obj/structure/machinery/light{
@@ -53750,23 +53698,15 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha_bravo_shared)
-"osn" = (
-/obj/item/trash/USCMtray{
- pixel_x = -4;
- pixel_y = 10
- },
-/obj/structure/surface/table/almayer,
-/obj/item/tool/kitchen/utensil/pfork{
- pixel_x = 9;
- pixel_y = 8
- },
-/obj/structure/machinery/light/small{
- dir = 8
+"osr" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/upper/u_f_s)
+/area/almayer/maint/upper/u_f_p)
"osx" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -53779,14 +53719,6 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"osy" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/platform_decoration,
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"osz" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -54061,15 +53993,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_aft_hallway)
-"oxg" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"oxi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -54118,6 +54041,15 @@
/obj/structure/machinery/photocopier,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
+"oyB" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"oyC" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -54220,15 +54152,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/port_umbilical)
-"oAp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/aft_hallway)
"oAB" = (
/obj/structure/platform{
dir = 8;
@@ -54264,17 +54187,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"oAY" = (
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/turf/open/floor/almayer{
- allow_construction = 0;
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/fore_hallway)
"oBq" = (
/obj/structure/bed,
/obj/structure/machinery/flasher{
@@ -54358,6 +54270,12 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_s)
+"oDa" = (
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"oDh" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/p_bow)
@@ -54375,6 +54293,13 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"oDm" = (
+/obj/structure/sign/safety/life_support{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"oDv" = (
/turf/open/floor/almayer{
dir = 9;
@@ -54481,6 +54406,18 @@
icon_state = "test_floor4"
},
/area/almayer/lifeboat_pumps/north1)
+"oEn" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"oEo" = (
/obj/effect/landmark/start/marine/medic/delta,
/obj/effect/landmark/late_join/delta,
@@ -54510,6 +54447,17 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"oEA" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/weapon/gun/shotgun/pump{
+ starting_attachment_types = list(/obj/item/attachable/stock/shotgun);
+ pixel_y = 9
+ },
+/obj/item/stack/sheet/cardboard/small_stack{
+ layer = 3.01
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
"oEE" = (
/obj/structure/machinery/light{
unacidable = 1;
@@ -54558,14 +54506,10 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"oFU" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_p)
+"oFz" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"oFV" = (
/obj/structure/sign/poster{
pixel_x = -32;
@@ -54640,6 +54584,14 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
+"oGI" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"oGJ" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -54664,6 +54616,14 @@
icon_state = "orange"
},
/area/almayer/living/port_emb)
+"oGW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"oGY" = (
/obj/item/device/flashlight/lamp/green{
pixel_x = 5;
@@ -54771,29 +54731,19 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"oIr" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/structure/machinery/door/airlock/almayer/research/reinforced{
- closeOtherId = "containment_n";
- dir = 8;
- name = "\improper Containment Airlock"
- },
-/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+"oIn" = (
+/obj/effect/landmark/start/liaison,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
+"oIp" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/medical/medical_science)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"oIt" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -54803,6 +54753,12 @@
"oIB" = (
/turf/closed/wall/almayer,
/area/almayer/command/combat_correspondent)
+"oIY" = (
+/obj/structure/largecrate/random/barrel,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"oJj" = (
/obj/structure/machinery/light{
dir = 8
@@ -54832,6 +54788,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
+"oJK" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ icon_state = "redfull"
+ },
+/area/almayer/lifeboat_pumps/south2)
"oJL" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -54918,24 +54882,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_fore_hallway)
-"oLm" = (
-/obj/structure/machinery/door_control{
- id = "ARES StairsLower";
- name = "ARES Core Lockdown";
- pixel_x = -24;
- pixel_y = 8;
- req_one_access_txt = "90;91;92"
- },
-/obj/structure/machinery/camera/autoname/almayer/containment/ares{
- dir = 4;
- pixel_y = -8
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"oLF" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -55013,10 +54959,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north1)
-"oNa" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"oNb" = (
/obj/structure/surface/table/almayer,
/obj/structure/flora/pottedplant{
@@ -55053,6 +54995,12 @@
icon_state = "plating"
},
/area/almayer/medical/upper_medical)
+"oNK" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/hull/upper/u_a_s)
"oNM" = (
/obj/structure/largecrate/random/barrel,
/turf/open/floor/almayer{
@@ -55069,6 +55017,23 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"oNW" = (
+/obj/structure/pipes/vents/scrubber{
+ dir = 4
+ },
+/obj/structure/sign/safety/storage{
+ pixel_x = -17;
+ pixel_y = 7
+ },
+/obj/structure/sign/safety/commline_connection{
+ pixel_x = -17;
+ pixel_y = -7
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/squads/req)
"oNY" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_18";
@@ -55079,15 +55044,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"oOi" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/midship_hallway)
"oOp" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/wirecutters,
@@ -55125,6 +55081,15 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"oOZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"oPf" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -55207,6 +55172,11 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/briefing)
+"oQI" = (
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/port)
"oQJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer,
@@ -55253,6 +55223,17 @@
icon_state = "test_floor4"
},
/area/almayer/maint/hull/upper/u_f_s)
+"oRy" = (
+/obj/structure/sign/safety/autodoc{
+ pixel_x = 20;
+ pixel_y = -32
+ },
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link/green,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"oRJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -55376,12 +55357,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"oTc" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"oTe" = (
/obj/item/prop/almayer/box,
/obj/item/prop{
@@ -55480,12 +55455,6 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
-"oUO" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"oUZ" = (
/obj/structure/surface/rack,
/obj/item/tool/crowbar,
@@ -55528,6 +55497,11 @@
allow_construction = 0
},
/area/almayer/hallways/lower/port_fore_hallway)
+"oVo" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"oVY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -55644,6 +55618,17 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"oXP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"oXY" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -55712,12 +55697,6 @@
icon_state = "silver"
},
/area/almayer/hallways/lower/repair_bay)
-"oZn" = (
-/obj/structure/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"oZp" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/light,
@@ -55769,6 +55748,15 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"oZI" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"oZV" = (
/obj/structure/surface/table/reinforced/prison,
/obj/item/roller,
@@ -55926,6 +55914,11 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
+"pcs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"pcv" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
@@ -55972,25 +55965,20 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/upper/mess)
+"pdo" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north2)
"pdp" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/maint/hull/upper/p_bow)
-"pdy" = (
-/obj/structure/machinery/door_control{
- id = "OTStore";
- name = "Shutters";
- pixel_y = 24;
- access_modified = 1;
- req_one_access_txt = "35"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/engineering/lower/workshop/hangar)
"pdK" = (
/obj/structure/stairs/perspective{
dir = 8;
@@ -56017,19 +56005,9 @@
"pek" = (
/turf/closed/wall/almayer,
/area/almayer/maint/hull/upper/s_bow)
-"peu" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
+"pep" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_p)
"peM" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
@@ -56079,12 +56057,6 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/starboard_hallway)
-"pfe" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"pfp" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Up4";
@@ -56131,6 +56103,15 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"pga" = (
+/obj/structure/surface/table/almayer,
+/obj/item/storage/firstaid/o2,
+/obj/effect/spawner/random/tool,
+/obj/effect/spawner/random/technology_scanner,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"pgw" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -56264,6 +56245,15 @@
},
/turf/open/floor/plating,
/area/almayer/shipboard/brig/perma)
+"piQ" = (
+/obj/structure/machinery/status_display{
+ pixel_y = 30
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"pje" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -56318,12 +56308,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_aft_hallway)
-"pjQ" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"pjR" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -56349,9 +56333,21 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
+"pld" = (
+/obj/item/book/manual/medical_diagnostics_manual,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"plv" = (
/turf/open/floor/plating,
/area/almayer/maint/hull/lower/l_m_p)
+"plK" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"pmd" = (
/obj/structure/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -56469,6 +56465,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"poD" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"ppe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -56536,13 +56541,6 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/engineering/upper_engineering/port)
-"pqv" = (
-/obj/structure/pipes/vents/pump,
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"pqw" = (
/obj/structure/sign/safety/maint{
pixel_x = 32
@@ -56591,18 +56589,16 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"pqR" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_p)
"pqX" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
+"pqY" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"prf" = (
/obj/structure/sign/safety/storage{
pixel_x = -17
@@ -56654,12 +56650,6 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
-"prV" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/aft_hallway)
"prX" = (
/obj/structure/ladder{
height = 2;
@@ -56682,6 +56672,15 @@
icon_state = "bluefull"
},
/area/almayer/living/bridgebunks)
+"psk" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"psK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56790,6 +56789,15 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"pub" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"pum" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -56819,28 +56827,24 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"puJ" = (
-/obj/structure/prop/invuln/pipe_water,
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -12;
- pixel_y = 13
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"puO" = (
/obj/structure/sign/safety/maint{
pixel_x = 32
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/north2)
+"puP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"puT" = (
/obj/structure/machinery/light/small{
dir = 4
@@ -56856,13 +56860,10 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"pvE" = (
-/obj/structure/machinery/light{
- dir = 1
- },
+"pvi" = (
/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
+ dir = 6;
+ icon_state = "red"
},
/area/almayer/hallways/upper/aft_hallway)
"pvI" = (
@@ -56914,12 +56915,17 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/starboard_missiles)
-"pwd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"pwl" = (
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = -32
},
/turf/open/floor/almayer{
- icon_state = "mono"
+ dir = 6;
+ icon_state = "blue"
},
/area/almayer/hallways/upper/fore_hallway)
"pwx" = (
@@ -57105,6 +57111,16 @@
icon_state = "redfull"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"pzw" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"pzG" = (
/obj/docking_port/stationary/emergency_response/port1,
/turf/open/floor/almayer{
@@ -57143,14 +57159,6 @@
/obj/item/tool/mop,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_a_p)
-"pBg" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/midship_hallway)
"pBG" = (
/turf/closed/wall/almayer,
/area/almayer/command/corporateliaison)
@@ -57171,17 +57179,6 @@
icon_state = "plate"
},
/area/almayer/squads/req)
-"pCQ" = (
-/obj/structure/surface/table/almayer,
-/obj/item/attachable/lasersight,
-/obj/item/reagent_container/food/drinks/cans/souto/vanilla{
- pixel_x = 10;
- pixel_y = 11
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"pDh" = (
/obj/structure/machinery/power/monitor{
name = "Core Power Monitoring"
@@ -57278,14 +57275,6 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
-"pEA" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 2
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
"pEB" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -57335,14 +57324,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
-"pFJ" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_s)
"pGh" = (
/obj/effect/decal/cleanable/cobweb{
pixel_x = -9;
@@ -57356,6 +57337,25 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
+"pGE" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/tool/hand_labeler{
+ pixel_x = 7
+ },
+/obj/item/paper_bin/uscm{
+ pixel_y = 5
+ },
+/obj/item/tool/pen,
+/obj/structure/machinery/computer/working_joe{
+ dir = 8;
+ pixel_x = 17
+ },
+/obj/item/device/megaphone,
+/obj/item/book/manual/medical_diagnostics_manual,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lower_medical_medbay)
"pGG" = (
/obj/effect/landmark/start/doctor,
/obj/structure/sign/safety/maint{
@@ -57399,12 +57399,6 @@
icon_state = "green"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"pHj" = (
-/obj/structure/machinery/light/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"pHp" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/perma)
@@ -57449,21 +57443,6 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"pIf" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/almayer/maint/upper/u_a_s)
"pIo" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1
@@ -57556,6 +57535,13 @@
icon_state = "ai_floor3"
},
/area/almayer/command/airoom)
+"pJS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"pKh" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -57573,6 +57559,26 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_stern)
+"pKH" = (
+/obj/structure/pipes/vents/pump{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"pKL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/largecrate/random/secure{
+ pixel_x = -5
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"pKU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -57627,6 +57633,15 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"pLE" = (
+/obj/structure/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"pLO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -57747,18 +57762,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_bow)
-"pOC" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"pOD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
@@ -58023,13 +58026,6 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_fore_hallway)
-"pSN" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"pSQ" = (
/obj/structure/reagent_dispensers/fueltank{
anchored = 1
@@ -58063,6 +58059,21 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"pTI" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
+"pTS" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"pTX" = (
/obj/structure/largecrate/random/barrel/red,
/obj/structure/sign/safety/fire_haz{
@@ -58073,6 +58084,21 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
+"pTY" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/maint/upper/u_a_s)
"pUd" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -58141,13 +58167,13 @@
icon_state = "redfull"
},
/area/almayer/shipboard/brig/processing)
-"pUL" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor/almayer{
- icon_state = "plate"
+"pVh" = (
+/obj/structure/machinery/light/small{
+ dir = 1
},
-/area/almayer/maint/upper/u_m_s)
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"pVr" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -58205,16 +58231,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/corporateliaison)
-"pVI" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out"
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"pWb" = (
/obj/effect/landmark/start/marine/tl/delta,
/obj/effect/landmark/late_join/delta,
@@ -58322,15 +58338,6 @@
icon_state = "red"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
-"pYi" = (
-/obj/structure/pipes/vents/pump/no_boom{
- dir = 8
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"pYo" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -58460,6 +58467,9 @@
icon_state = "red"
},
/area/almayer/living/briefing)
+"qbw" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"qbx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -58494,6 +58504,22 @@
icon_state = "blue"
},
/area/almayer/living/pilotbunks)
+"qbP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"qbU" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"qbZ" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{
dir = 1;
@@ -58519,13 +58545,6 @@
icon_state = "plate"
},
/area/almayer/living/auxiliary_officer_office)
-"qcL" = (
-/obj/structure/sign/safety/intercom{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"qdk" = (
/obj/structure/surface/table/almayer,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -58593,6 +58612,15 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
+"qdJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"qdQ" = (
/obj/structure/bed/sofa/vert/grey/top{
pixel_y = 11
@@ -58757,6 +58785,13 @@
icon_state = "test_floor4"
},
/area/almayer/living/starboard_garden)
+"qgn" = (
+/obj/item/stool,
+/obj/effect/landmark/yautja_teleport,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"qgr" = (
/obj/item/trash/plate{
pixel_x = 9;
@@ -58813,6 +58848,12 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"qhg" = (
+/obj/structure/largecrate/random/barrel/yellow,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"qhx" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22"
@@ -58867,6 +58908,11 @@
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
+"qhT" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qhU" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -58908,9 +58954,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/tankerbunks)
-"qii" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"qim" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -58966,16 +59009,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
-"qjT" = (
-/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/l42a,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"qjV" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -58984,6 +59017,27 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"qjY" = (
+/obj/structure/machinery/door/window/eastleft{
+ req_one_access_txt = "2;21"
+ },
+/obj/structure/machinery/door/window/westright,
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ dir = 4;
+ id = "ROlobby1";
+ name = "\improper RO Line 1"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/surface/table/reinforced/almayer_blend/north,
+/obj/item/desk_bell{
+ pixel_x = -6;
+ pixel_y = -8;
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/squads/req)
"qjZ" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/stern_point_defense)
@@ -59160,6 +59214,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/medical_science)
+"qmK" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"qmM" = (
/obj/structure/bed/chair{
dir = 8
@@ -59197,6 +59260,12 @@
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
+"qmW" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"qmY" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -59210,15 +59279,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"qnf" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 15;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/lifeboat_pumps/north2)
"qnh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59266,6 +59326,18 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
+"qnH" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
+"qnX" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"qom" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/chem_dispenser/soda{
@@ -59311,6 +59383,14 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
+"qoM" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"qoN" = (
/turf/open/floor/almayer{
icon_state = "test_floor4"
@@ -59342,13 +59422,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/chemistry)
-"qpH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
"qpQ" = (
/obj/item/reagent_container/glass/beaker/bluespace,
/obj/structure/machinery/chem_dispenser/medbay,
@@ -59366,15 +59439,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
-"qqb" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "blue"
+"qqa" = (
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/plating/almayer{
+ allow_construction = 0
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/fore_hallway)
"qqf" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -59471,22 +59541,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/engineering/ce_room)
-"qtj" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- layer = 2.5
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"qtv" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer{
@@ -59520,17 +59574,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/cryo_tubes)
-"quy" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = -32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/turf/open/floor/almayer,
-/area/almayer/command/lifeboat)
"quJ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -59569,6 +59612,16 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"qvh" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"qvC" = (
/obj/structure/machinery/power/apc/almayer{
dir = 4
@@ -59593,6 +59646,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
+"qvF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/maint/upper/u_a_s)
"qvI" = (
/obj/structure/sign/safety/maint{
pixel_x = -17
@@ -59614,13 +59679,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
-"qwf" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"qwo" = (
/obj/structure/machinery/washing_machine,
/obj/structure/machinery/washing_machine{
@@ -59654,19 +59712,18 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"qwJ" = (
-/obj/structure/machinery/door_control{
- id = "ARES Operations Left";
- name = "ARES Operations Shutter";
- pixel_x = -24;
- pixel_y = -8;
- req_one_access_txt = "90;91;92"
+"qwU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
},
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = -17
},
-/area/almayer/command/airoom)
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"qwY" = (
/obj/structure/machinery/vending/coffee,
/turf/open/floor/almayer{
@@ -59762,12 +59819,6 @@
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_s)
-"qxK" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"qxL" = (
/obj/structure/machinery/medical_pod/autodoc,
/turf/open/floor/almayer{
@@ -59787,6 +59838,13 @@
dir = 4
},
/area/almayer/medical/containment/cell)
+"qxS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"qyi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -59891,12 +59949,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/p_bow)
-"qzQ" = (
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_s)
"qAs" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -59961,6 +60013,9 @@
/area/almayer/maint/hull/upper/u_a_p)
"qAT" = (
/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
/obj/structure/surface/table/almayer,
/obj/structure/machinery/reagentgrinder{
pixel_y = 8
@@ -59974,9 +60029,6 @@
pixel_x = -16;
pixel_y = 5
},
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
/turf/open/floor/almayer{
icon_state = "sterile_green_side"
},
@@ -60136,13 +60188,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"qDX" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/upper/aft_hallway)
-"qEc" = (
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"qEk" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -60239,18 +60284,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/port_fore_hallway)
-"qEZ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- pixel_y = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
-/area/almayer/maint/upper/u_a_s)
"qFi" = (
/obj/structure/bed/chair/comfy/black{
dir = 4
@@ -60342,27 +60375,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/operating_room_two)
-"qGP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
"qGU" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south2)
-"qGZ" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"qHg" = (
/turf/open/floor/almayer{
dir = 1;
@@ -60379,15 +60397,13 @@
icon_state = "test_floor4"
},
/area/almayer/powered)
-"qHu" = (
-/obj/structure/machinery/light{
- dir = 1
+"qHD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
-"qHA" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_a_s)
+/area/almayer/hallways/upper/aft_hallway)
"qHG" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -60406,6 +60422,13 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
+"qHT" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"qIa" = (
/obj/structure/platform{
dir = 4
@@ -60434,6 +60457,16 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
+"qIF" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"qIL" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/camera/autoname/almayer{
@@ -60596,15 +60629,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
-"qKU" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"qKY" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -60637,6 +60661,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/containment)
+"qLk" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_p)
"qLs" = (
/obj/effect/landmark/start/maint,
/turf/open/floor/plating/plating_catwalk,
@@ -60723,6 +60756,20 @@
},
/turf/open/floor/almayer,
/area/almayer/living/briefing)
+"qNc" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = 24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"qNd" = (
/obj/structure/machinery/cryopod,
/obj/structure/machinery/light{
@@ -60732,15 +60779,6 @@
icon_state = "cargo"
},
/area/almayer/squads/delta)
-"qNe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"qNI" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -60828,13 +60866,6 @@
icon_state = "test_floor4"
},
/area/almayer/maint/hull/lower/l_a_s)
-"qPv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/upper/midship_hallway)
"qPD" = (
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/perma)
@@ -60890,6 +60921,9 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"qQu" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"qQy" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60897,13 +60931,19 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
-"qQG" = (
-/obj/structure/largecrate/supply/floodlights,
+"qQD" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/intercom{
+ pixel_y = 32
+ },
/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
+ dir = 1;
+ icon_state = "blue"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/hallways/upper/midship_hallway)
"qQS" = (
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
@@ -60949,21 +60989,21 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
-"qRx" = (
-/obj/structure/sign/safety/stairs{
- pixel_x = -15
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"qSm" = (
/obj/structure/pipes/vents/pump{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/shipboard/port_point_defense)
+"qSp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"qSE" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/cholula,
@@ -61000,6 +61040,14 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"qTi" = (
+/obj/structure/closet/crate,
+/obj/item/ammo_box/magazine/l42a,
+/obj/item/ammo_box/magazine/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"qTu" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -61008,6 +61056,12 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/port_umbilical)
+"qTA" = (
+/obj/structure/largecrate/random/case,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_p)
"qTQ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -61016,6 +61070,13 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
+"qTS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"qTY" = (
/obj/structure/machinery/gibber,
/turf/open/floor/plating/plating_catwalk,
@@ -61047,6 +61108,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie_delta_shared)
+"qUu" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"qUx" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -61067,26 +61134,11 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"qUG" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clothing/mask/cigarette/pipe{
- pixel_x = 8
- },
-/obj/structure/transmitter/rotary{
- name = "Reporter Telephone";
- phone_category = "Almayer";
- phone_id = "Reporter";
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/device/toner{
- pixel_x = -2;
- pixel_y = -11
- },
+"qUK" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "blue"
},
-/area/almayer/command/combat_correspondent)
+/area/almayer/hallways/upper/fore_hallway)
"qUL" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 4
@@ -61210,38 +61262,18 @@
dir = 4
},
/area/almayer/medical/containment/cell/cl)
-"qWS" = (
-/obj/structure/surface/table/almayer,
-/obj/item/reagent_container/pill/happy{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/prop/helmetgarb/prescription_bottle{
- pixel_x = 9
- },
-/obj/item/tool/surgery/bonegel/empty{
- pixel_x = 4;
- pixel_y = 15
- },
-/obj/item/tool/surgery/bonegel/empty{
- pixel_x = -8;
- pixel_y = 13
- },
-/obj/item/tool/surgery/bonegel/empty{
- layer = 3.01;
- pixel_x = -5;
- pixel_y = 19
+"qXh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/storage/box/gloves{
- layer = 3.2;
- pixel_x = -5;
- pixel_y = 2
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_corner"
+ dir = 6;
+ icon_state = "orange"
},
-/area/almayer/medical/lower_medical_medbay)
+/area/almayer/hallways/upper/midship_hallway)
"qXk" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -61320,6 +61352,12 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"qYd" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/south2)
"qYq" = (
/turf/open/floor/almayer{
dir = 5;
@@ -61348,6 +61386,14 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"qYz" = (
+/obj/structure/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"qYC" = (
/obj/structure/disposalpipe/down/almayer{
dir = 4;
@@ -61474,13 +61520,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower/engine_core)
-"rao" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"raE" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -61623,18 +61662,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"rdo" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/fore_hallway)
"rdt" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -61644,6 +61671,25 @@
},
/turf/open/floor/almayer/research/containment/corner4,
/area/almayer/medical/containment/cell)
+"rdz" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ closeOtherId = "ciclobby_s";
+ id_tag = "cic_exterior";
+ name = "\improper Combat Information Center"
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
"rdA" = (
/obj/structure/sign/safety/maint{
pixel_x = -17;
@@ -61700,6 +61746,9 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/port_fore_hallway)
+"rdZ" = (
+/turf/open/floor/plating,
+/area/almayer/command/corporateliaison)
"rec" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 1
@@ -61865,6 +61914,13 @@
"rgL" = (
/turf/open/floor/plating,
/area/almayer/maint/upper/u_m_p)
+"rgO" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"rgW" = (
/turf/open/floor/almayer{
icon_state = "emeraldcorner"
@@ -61876,6 +61932,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_f_s)
+"rho" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"rht" = (
/obj/structure/machinery/vending/cola,
/turf/open/floor/almayer{
@@ -61979,12 +62042,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"riK" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"riP" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/rewire{
@@ -62010,6 +62067,11 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"rjr" = (
+/turf/open/floor/almayer{
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"rjF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62075,6 +62137,15 @@
icon_state = "blue"
},
/area/almayer/living/port_emb)
+"rjX" = (
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/north2)
"rka" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin/uscm,
@@ -62193,6 +62264,18 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
+"rmo" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/hvac_old{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
"rmx" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/recharger,
@@ -62208,11 +62291,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_fore_hallway)
-"rmB" = (
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"rmD" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -62236,18 +62314,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
-"rnd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"rnF" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -62272,6 +62338,15 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/area/almayer/command/airoom)
+"rnM" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"rnN" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/sign/nosmoking_2{
@@ -62332,15 +62407,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"roY" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"rpp" = (
/obj/effect/landmark/start/executive,
/turf/open/floor/plating/plating_catwalk,
@@ -62362,10 +62428,15 @@
icon_state = "plate"
},
/area/almayer/command/cichallway)
-"rpP" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
+"rpV" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"rqb" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = 32
@@ -62486,13 +62557,6 @@
icon_state = "test_floor4"
},
/area/almayer/living/bridgebunks)
-"rrG" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"rrK" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -62546,11 +62610,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"rsN" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"rsO" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
@@ -62731,19 +62790,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/p_bow)
-"rwf" = (
-/obj/structure/sign/safety/analysis_lab{
- pixel_y = 26
- },
-/obj/structure/sign/safety/terminal{
- pixel_x = 15;
- pixel_y = 26
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"rwj" = (
/turf/open/floor/almayer{
dir = 4;
@@ -62815,6 +62861,13 @@
icon_state = "silverfull"
},
/area/almayer/command/computerlab)
+"rxQ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"ryt" = (
/obj/structure/pipes/standard/manifold/visible,
/turf/open/floor/almayer{
@@ -62827,6 +62880,14 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
+"ryJ" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_p)
"ryR" = (
/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,
/turf/open/floor/almayer{
@@ -62929,6 +62990,10 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"rAS" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"rBa" = (
/obj/structure/machinery/cm_vending/clothing/synth,
/obj/structure/prop/invuln/overhead_pipe{
@@ -62983,6 +63048,13 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"rBY" = (
+/obj/structure/machinery/shower{
+ pixel_y = 16
+ },
+/obj/item/tool/soap,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"rCh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -63044,6 +63116,10 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/briefing)
+"rCZ" = (
+/obj/docking_port/stationary/escape_pod/east,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_m_s)
"rDb" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 6
@@ -63080,11 +63156,6 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_umbilical)
-"rDm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"rDr" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer{
@@ -63191,11 +63262,6 @@
icon_state = "outerhull_dir"
},
/area/space)
-"rEs" = (
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/maint/upper/u_a_s)
"rEt" = (
/obj/structure/largecrate/random/secure,
/turf/open/floor/almayer{
@@ -63283,15 +63349,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_medbay)
-"rGc" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"rGj" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -63359,13 +63416,6 @@
icon_state = "plate"
},
/area/almayer/squads/alpha_bravo_shared)
-"rHn" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"rHo" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
layer = 1.9
@@ -63462,17 +63512,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"rIE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"rIH" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -63582,14 +63621,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/living/briefing)
-"rJY" = (
-/obj/item/book/manual/medical_diagnostics_manual,
-/obj/structure/surface/rack,
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/maint/upper/u_a_p)
"rKd" = (
/turf/open/floor/almayer/uscm/directional{
dir = 5
@@ -63608,6 +63639,16 @@
icon_state = "rasputin15"
},
/area/almayer/powered/agent)
+"rKt" = (
+/obj/structure/sign/safety/rewire{
+ pixel_x = 32
+ },
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
"rKA" = (
/obj/structure/bed{
can_buckle = 0
@@ -63692,6 +63733,13 @@
dir = 8
},
/area/almayer/medical/containment/cell/cl)
+"rMh" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
"rMj" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/almayer{
@@ -63833,17 +63881,6 @@
"rPt" = (
/turf/open/floor/wood/ship,
/area/almayer/engineering/ce_room)
-"rPB" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"rPE" = (
/obj/structure/bed/chair{
dir = 8;
@@ -63948,21 +63985,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"rRb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
-"rRf" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"rRq" = (
/turf/closed/wall/almayer,
/area/almayer/lifeboat_pumps/south2)
@@ -63973,6 +63995,11 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
+"rRT" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"rRU" = (
/obj/structure/machinery/light{
dir = 8
@@ -64049,6 +64076,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
+"rSH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south1)
"rSR" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/sign/safety/cryo{
@@ -64056,16 +64090,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/lower/cryo_cells)
-"rTe" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/obj/structure/janitorialcart,
-/obj/item/tool/mop,
+"rSW" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_f_p)
+/area/almayer/hallways/upper/fore_hallway)
"rTk" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 4
@@ -64128,6 +64158,11 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
+"rUN" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"rVc" = (
/obj/structure/bed/chair{
dir = 8;
@@ -64233,6 +64268,12 @@
icon_state = "cargo"
},
/area/almayer/living/cryo_cells)
+"rXq" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_p)
"rXv" = (
/obj/structure/machinery/door/airlock/almayer/maint,
/obj/structure/disposalpipe/segment{
@@ -64303,15 +64344,6 @@
icon_state = "cargo"
},
/area/almayer/maint/hull/lower/l_f_s)
-"rXV" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"rYh" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -64346,15 +64378,6 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering/starboard)
-"rYG" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"rYI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64373,6 +64396,12 @@
icon_state = "plate"
},
/area/almayer/living/offices/flight)
+"rYU" = (
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"rZt" = (
/obj/effect/decal/warning_stripes{
icon_state = "W"
@@ -64400,15 +64429,6 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
-"rZC" = (
-/obj/structure/sign/safety/ladder{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"rZP" = (
/obj/structure/surface/table/almayer,
/obj/item/tool/weldpack,
@@ -64417,6 +64437,17 @@
icon_state = "plate"
},
/area/almayer/shipboard/starboard_point_defense)
+"rZZ" = (
+/obj/structure/sign/poster{
+ desc = "It says DRUG.";
+ icon_state = "poster2";
+ pixel_y = 30
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"sab" = (
/obj/effect/landmark/start/doctor,
/obj/effect/landmark/late_join/doctor,
@@ -64437,13 +64468,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/corporateliaison)
-"saT" = (
-/obj/structure/disposalpipe/junction,
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"sbq" = (
/obj/structure/machinery/door/poddoor/almayer/locked{
icon_state = "almayer_pdoor";
@@ -64485,6 +64509,26 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cryo)
+"sbZ" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ name = "ship-grade camera"
+ },
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/sign/safety/hazard{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/airlock{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"sco" = (
/obj/structure/sign/prop1{
layer = 3.1
@@ -64572,6 +64616,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_s)
+"sdd" = (
+/obj/item/tool/wirecutters/clippers,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"sdf" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -64645,6 +64695,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
+"sfz" = (
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"sfT" = (
/turf/open/floor/almayer,
/area/almayer/hallways/upper/port)
@@ -64751,6 +64807,12 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
+"sgH" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = 25
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"sgL" = (
/obj/structure/machinery/door/poddoor/shutters/almayer/open{
dir = 4;
@@ -64822,6 +64884,12 @@
"sht" = (
/turf/open/floor/almayer,
/area/almayer/living/pilotbunks)
+"shC" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"shL" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/electrical,
@@ -64833,6 +64901,11 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/engine_core)
+"sin" = (
+/turf/open/floor/almayer{
+ icon_state = "bluecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"sir" = (
/obj/structure/machinery/door/airlock/almayer/maint{
req_access = null;
@@ -64900,15 +64973,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower)
-"siS" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 32
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"siT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64961,16 +65025,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
-"sjw" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/maint/upper/u_m_p)
"sjz" = (
/obj/effect/decal/warning_stripes{
icon_state = "SW-out";
@@ -64980,6 +65034,20 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north2)
+"sjG" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
+"sjM" = (
+/obj/effect/landmark/start/reporter,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_p)
"skj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -65375,18 +65443,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_s)
-"spW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"sqa" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -65422,16 +65478,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
-"sqP" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/computer/emails{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"sqW" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/seeds/tomatoseed,
@@ -65506,20 +65552,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_p)
-"ssF" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/safety/reduction{
- pixel_x = 32;
- pixel_y = -8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/port)
"ssU" = (
/obj/structure/machinery/constructable_frame,
/turf/open/floor/almayer{
@@ -65551,15 +65583,6 @@
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
/area/almayer/shipboard/navigation)
-"stk" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"str" = (
/obj/effect/step_trigger/teleporter_vector{
name = "Almayer_Down3";
@@ -65579,12 +65602,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"stA" = (
-/obj/structure/machinery/portable_atmospherics/hydroponics,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"stO" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/faxmachine/uscm/brig,
@@ -65678,6 +65695,12 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"svq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"svt" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -65704,17 +65727,14 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_m_p)
-"svV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
+"swn" = (
+/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
+ pixel_y = -25
},
-/obj/item/weapon/gun/rifle/l42a,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "orangecorner"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/hallways/upper/aft_hallway)
"swt" = (
/turf/open/floor/almayer{
icon_state = "greencorner"
@@ -65808,12 +65828,37 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"syg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/airlock/almayer/security/reinforced{
+ access_modified = 1;
+ closeOtherId = "astroladder_n";
+ name = "\improper Astronavigational Deck";
+ req_access = null;
+ req_one_access_txt = "3;19"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/navigation)
"syj" = (
/obj/structure/sign/safety/escapepod{
pixel_y = 32
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_fore_hallway)
+"syp" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "silver"
+ },
+/area/almayer/maint/upper/u_m_p)
"syH" = (
/obj/structure/machinery/firealarm{
pixel_y = -28
@@ -65823,12 +65868,9 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/delta)
-"szb" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
+"syO" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer,
/area/almayer/hallways/upper/midship_hallway)
"szf" = (
/obj/structure/disposalpipe/segment{
@@ -65936,14 +65978,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/general_equipment)
-"sBK" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
- },
-/turf/open/floor/almayer{
- icon_state = "redfull"
- },
-/area/almayer/lifeboat_pumps/south2)
"sBL" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/machinery/light,
@@ -65951,6 +65985,18 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"sBQ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ closeOtherId = "briglobby";
+ name = "\improper Brig Cells"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
"sBY" = (
/obj/item/tool/wet_sign,
/obj/structure/disposalpipe/segment,
@@ -66026,33 +66072,6 @@
/obj/structure/surface/table/almayer,
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"sDe" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- layer = 3.33;
- pixel_x = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "N";
- layer = 3.33;
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- layer = 3.3
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S";
- layer = 3.3
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "plating"
- },
-/area/almayer/hallways/upper/aft_hallway)
"sDu" = (
/obj/item/clothing/under/marine/dress,
/turf/open/floor/almayer{
@@ -66310,6 +66329,21 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
+"sHC" = (
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"sHI" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"sHM" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/almayer{
@@ -66420,6 +66454,12 @@
icon_state = "cargo"
},
/area/almayer/engineering/lower/workshop/hangar)
+"sJN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
"sJY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -66435,6 +66475,15 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/morgue)
+"sKf" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower)
"sKM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -66653,6 +66702,26 @@
icon_state = "redfull"
},
/area/almayer/medical/upper_medical)
+"sPa" = (
+/obj/structure/surface/rack,
+/obj/item/stack/cable_coil,
+/obj/item/attachable/flashlight/grip,
+/obj/item/ammo_box/magazine/l42a{
+ pixel_y = 14
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
+"sPb" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/starboard)
"sPc" = (
/obj/structure/machinery/light{
dir = 1
@@ -66665,12 +66734,6 @@
icon_state = "plate"
},
/area/almayer/living/offices)
-"sPk" = (
-/obj/structure/machinery/light,
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"sPF" = (
/obj/structure/bed/chair{
can_buckle = 0;
@@ -66697,14 +66760,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_fore_hallway)
-"sQu" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out"
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"sQF" = (
/turf/open/floor/almayer{
icon_state = "red"
@@ -66716,6 +66771,15 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"sRC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"sRM" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -66724,12 +66788,17 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_s)
-"sRP" = (
+"sRZ" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
+ allow_construction = 0;
+ icon_state = "plate"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/hallways/upper/fore_hallway)
"sSa" = (
/obj/structure/machinery/door/airlock/almayer/marine/requisitions{
dir = 2;
@@ -66751,6 +66820,15 @@
icon_state = "tcomms"
},
/area/almayer/shipboard/weapon_room)
+"sSj" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/almayer/lifeboat_pumps/north1)
"sSl" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -66892,6 +66970,14 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
+"sUS" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"sVc" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/seeds/orangeseed,
@@ -66900,15 +66986,13 @@
icon_state = "green"
},
/area/almayer/shipboard/brig/cells)
-"sVA" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
+"sVv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
+ dir = 1;
+ icon_state = "red"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"sVT" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical,
@@ -66929,6 +67013,16 @@
"sVV" = (
/turf/open/floor/almayer,
/area/almayer/hallways/upper/starboard)
+"sWb" = (
+/obj/effect/projector{
+ name = "Almayer_Down2";
+ vector_x = 1;
+ vector_y = -100
+ },
+/turf/open/floor/almayer{
+ allow_construction = 0
+ },
+/area/almayer/hallways/upper/fore_hallway)
"sWp" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -67116,6 +67210,18 @@
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/plating,
/area/almayer/medical/upper_medical)
+"sYU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"sZc" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -67280,17 +67386,6 @@
icon_state = "plate"
},
/area/almayer/hallways/upper/starboard)
-"tbD" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/midship_hallway)
-"tbF" = (
-/turf/open/floor/almayer{
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"tcd" = (
/obj/structure/surface/table/almayer,
/obj/item/device/radio{
@@ -67447,21 +67542,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/port_midship_hallway)
-"teu" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/weapon/gun/shotgun/pump{
- starting_attachment_types = list(/obj/item/attachable/stock/shotgun);
- pixel_y = 9
- },
-/obj/item/stack/sheet/cardboard/small_stack{
- layer = 3.01
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/charlie_delta_shared)
-"tey" = (
-/obj/item/tool/wet_sign,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"tez" = (
/obj/effect/landmark/ert_spawns/distress_cryo,
/obj/effect/landmark/late_join,
@@ -67485,6 +67565,19 @@
icon_state = "plate"
},
/area/almayer/command/cic)
+"teZ" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_one_access_txt = "90;91;92"
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"tfb" = (
/turf/open/floor/almayer{
dir = 8;
@@ -67508,6 +67601,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/execution_storage)
+"tfF" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"tfH" = (
/obj/structure/machinery/light/containment,
/obj/effect/decal/warning_stripes{
@@ -67665,13 +67764,13 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"tic" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
+"tie" = (
+/obj/structure/largecrate/supply/floodlights,
/turf/open/floor/almayer{
- dir = 1;
+ dir = 6;
icon_state = "red"
},
-/area/almayer/lifeboat_pumps/north2)
+/area/almayer/maint/upper/u_a_p)
"tig" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/food/condiment/hotsauce/tabasco{
@@ -67742,12 +67841,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
-"tiO" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/south2)
"tiR" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
@@ -67789,10 +67882,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
-"tiZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"tjj" = (
/turf/open/floor/almayer{
dir = 5;
@@ -67817,16 +67906,6 @@
},
/turf/open/floor/almayer,
/area/almayer/living/tankerbunks)
-"tjz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 4;
- pixel_y = -3
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
"tjH" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/radio/headset/almayer/mt,
@@ -67841,6 +67920,16 @@
icon_state = "orange"
},
/area/almayer/maint/hull/lower/l_m_s)
+"tkd" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/south{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"tkg" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = 8;
@@ -67868,6 +67957,15 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/weapon_room)
+"tkF" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"tkN" = (
/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{
req_access = null;
@@ -67942,6 +68040,11 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"tlM" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/maint/upper/u_a_s)
"tmg" = (
/obj/structure/surface/table/almayer,
/obj/item/reagent_container/hypospray,
@@ -67981,13 +68084,6 @@
icon_state = "redcorner"
},
/area/almayer/shipboard/brig/execution)
-"tmI" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SW-out";
- pixel_x = -1
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/south1)
"tmK" = (
/obj/structure/machinery/door/airlock/almayer/maint{
dir = 1;
@@ -68044,6 +68140,12 @@
"tob" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_m_s)
+"tof" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"tos" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -68121,6 +68223,24 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/starboard_fore_hallway)
+"toS" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/door/window/eastright{
+ dir = 8;
+ req_access_txt = "8"
+ },
+/obj/structure/machinery/door/window/eastleft{
+ req_access_txt = "8"
+ },
+/obj/item/desk_bell{
+ pixel_x = -6;
+ pixel_y = 10;
+ anchored = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green"
+ },
+/area/almayer/medical/lower_medical_medbay)
"tpa" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/structure/window/reinforced{
@@ -68137,20 +68257,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
-"tpj" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
"tpn" = (
/turf/closed/wall/almayer,
/area/almayer/shipboard/brig/evidence_storage)
@@ -68274,6 +68380,20 @@
icon_state = "orangecorner"
},
/area/almayer/engineering/lower)
+"tru" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
+"trx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"trB" = (
/turf/open/floor/almayer{
dir = 10;
@@ -68288,7 +68408,6 @@
icon_state = "W";
pixel_x = -1
},
-/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/o2{
pixel_x = -6;
pixel_y = 6
@@ -68305,6 +68424,7 @@
pixel_x = 8;
pixel_y = -2
},
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
dir = 8;
icon_state = "sterile_green_corner"
@@ -68340,6 +68460,9 @@
/obj/item/clothing/suit/chef/classic,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
+"tsn" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"tsr" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/maint/upper/mess)
@@ -68387,6 +68510,10 @@
/obj/structure/largecrate/random/barrel/blue,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/p_bow)
+"tsH" = (
+/obj/effect/landmark/crap_item,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"tsM" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -68419,14 +68546,6 @@
},
/turf/open/floor/plating,
/area/almayer/powered/agent)
-"tty" = (
-/obj/structure/surface/table/almayer,
-/obj/item/clipboard,
-/obj/item/paper,
-/obj/item/clothing/glasses/mgoggles,
-/obj/item/clothing/glasses/mgoggles,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"ttB" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
@@ -68547,6 +68666,10 @@
icon_state = "orange"
},
/area/almayer/hallways/hangar)
+"tuX" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"tuZ" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
@@ -68561,15 +68684,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_midship_hallway)
-"tvr" = (
-/obj/structure/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"tvt" = (
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
@@ -68630,10 +68744,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"tvS" = (
-/obj/docking_port/stationary/escape_pod/south,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_s)
"twp" = (
/obj/structure/ladder{
height = 1;
@@ -68645,25 +68755,6 @@
},
/turf/open/floor/plating/almayer,
/area/almayer/maint/hull/lower/l_a_s)
-"twq" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/tool/hand_labeler{
- pixel_x = 7
- },
-/obj/item/paper_bin/uscm{
- pixel_y = 5
- },
-/obj/item/tool/pen,
-/obj/structure/machinery/computer/working_joe{
- dir = 8;
- pixel_x = 17
- },
-/obj/item/device/megaphone,
-/obj/item/book/manual/medical_diagnostics_manual,
-/turf/open/floor/almayer{
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"twB" = (
/obj/structure/prop/almayer/name_stencil{
icon_state = "almayer2"
@@ -68712,19 +68803,13 @@
},
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
-"txd" = (
+"txf" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
+ dir = 2;
icon_state = "pipe-c"
},
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 5
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"txp" = (
/obj/structure/largecrate/random/barrel/white,
/turf/open/floor/plating/plating_catwalk,
@@ -68787,6 +68872,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
+"tyC" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"tyD" = (
/turf/open/floor/almayer/research/containment/corner_var1{
dir = 4
@@ -68830,7 +68924,7 @@
/turf/open/floor/almayer{
icon_state = "mono"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"tzL" = (
/obj/structure/sign/safety/waterhazard{
pixel_x = 8;
@@ -68841,6 +68935,13 @@
icon_state = "test_floor5"
},
/area/almayer/medical/hydroponics)
+"tzO" = (
+/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
+/obj/structure/medical_supply_link,
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/medical/chemistry)
"tzP" = (
/obj/structure/barricade/handrail/medical,
/turf/open/floor/almayer{
@@ -68982,25 +69083,25 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
-"tCC" = (
+"tCH" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "orange"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/maint/upper/u_a_s)
-"tCD" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
+/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{
+ closeOtherId = "brignorth";
+ dir = 2;
+ name = "\improper Brig Armoury";
+ req_access = null;
+ req_one_access_txt = "1;3"
},
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "cargo_arrow"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/shipboard/brig/starboard_hallway)
"tCT" = (
/obj/structure/bed/chair/comfy/blue{
dir = 8
@@ -69092,6 +69193,20 @@
icon_state = "test_floor4"
},
/area/almayer/command/airoom)
+"tFJ" = (
+/obj/structure/largecrate/supply/supplies/mre,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
+"tFO" = (
+/obj/structure/largecrate/supply/supplies/flares,
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"tFS" = (
/obj/structure/machinery/computer/supplycomp,
/obj/structure/sign/safety/terminal{
@@ -69183,12 +69298,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliaison)
-"tGW" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"tHk" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
@@ -69339,6 +69448,11 @@
icon_state = "plate"
},
/area/almayer/living/bridgebunks)
+"tJm" = (
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"tJq" = (
/obj/structure/machinery/light/small{
dir = 1
@@ -69439,6 +69553,20 @@
icon_state = "green"
},
/area/almayer/living/grunt_rnr)
+"tLY" = (
+/obj/structure/surface/table/reinforced/almayer_B{
+ climbable = 0;
+ indestructible = 1;
+ unacidable = 1;
+ unslashable = 1
+ },
+/obj/item/desk_bell{
+ pixel_x = -6;
+ pixel_y = 10;
+ anchored = 1
+ },
+/turf/open/floor/almayer/aicore/no_build,
+/area/almayer/command/airoom)
"tLZ" = (
/turf/open/floor/almayer{
icon_state = "green"
@@ -69450,13 +69578,16 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
-"tMT" = (
-/obj/item/tool/weldingtool,
-/obj/structure/surface/rack,
+"tMi" = (
+/obj/effect/step_trigger/clone_cleaner,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
/turf/open/floor/almayer{
- icon_state = "red"
+ dir = 8;
+ icon_state = "green"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/hallways/upper/fore_hallway)
"tMU" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -69506,6 +69637,12 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/alpha)
+"tNY" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"tOr" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -69593,20 +69730,6 @@
icon_state = "bluefull"
},
/area/almayer/living/briefing)
-"tPz" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
-"tPB" = (
-/obj/effect/projector{
- name = "Almayer_Down2";
- vector_x = 1;
- vector_y = -100
- },
-/turf/open/floor/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
"tPI" = (
/obj/structure/bed/chair{
dir = 4
@@ -69640,27 +69763,11 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cryo)
-"tQA" = (
-/obj/structure/machinery/door/airlock/almayer/maint/reinforced{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_f_s)
"tQL" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/light,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"tQO" = (
-/obj/structure/sign/safety/restrictedarea{
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"tQV" = (
/turf/closed/wall/almayer/outer,
/area/almayer/lifeboat_pumps/south1)
@@ -69714,6 +69821,16 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"tSX" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"tTk" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -69752,13 +69869,6 @@
icon_state = "kitchen"
},
/area/almayer/living/captain_mess)
-"tTE" = (
-/obj/structure/sign/safety/hvac_old{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
"tTG" = (
/obj/structure/sign/safety/terminal{
pixel_x = 8;
@@ -69773,6 +69883,11 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
+"tTZ" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"tUh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -69851,12 +69966,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/alpha)
-"tVs" = (
-/obj/structure/closet,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"tVx" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -69872,15 +69981,6 @@
/obj/structure/largecrate/random/case,
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"tWf" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"tWi" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -69925,10 +70025,6 @@
icon_state = "silver"
},
/area/almayer/hallways/lower/repair_bay)
-"tWM" = (
-/obj/docking_port/stationary/escape_pod/north,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_f_s)
"tWY" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -69949,6 +70045,17 @@
icon_state = "test_floor4"
},
/area/almayer/medical/upper_medical)
+"tXa" = (
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 13
+ },
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"tXb" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/bed/chair/comfy/charlie{
@@ -70108,12 +70215,6 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/upper/port)
-"tZM" = (
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"tZZ" = (
/obj/structure/machinery/cryopod,
/obj/effect/decal/warning_stripes{
@@ -70210,6 +70311,14 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"ubv" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/fore_hallway)
"ubA" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -70239,18 +70348,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_aft_hallway)
-"uch" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
"ucp" = (
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
@@ -70325,6 +70422,15 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"udv" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"udx" = (
/obj/structure/machinery/vending/snack,
/turf/open/floor/almayer{
@@ -70402,6 +70508,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_f_p)
+"uey" = (
+/obj/structure/machinery/cm_vending/sorted/medical/bolted,
+/obj/structure/medical_supply_link/green,
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_side"
+ },
+/area/almayer/medical/lockerroom)
"ueG" = (
/obj/item/bedsheet/orange,
/obj/structure/bed{
@@ -70426,6 +70539,10 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
+"ueY" = (
+/obj/structure/machinery/light,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"ueZ" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{
@@ -70472,6 +70589,16 @@
icon_state = "orange"
},
/area/almayer/maint/hull/lower/l_m_s)
+"ugo" = (
+/obj/item/tool/weldpack{
+ pixel_y = 15
+ },
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/welding,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"ugu" = (
/obj/structure/machinery/cm_vending/sorted/marine_food,
/turf/open/floor/almayer,
@@ -70549,11 +70676,6 @@
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"uhI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/fore_hallway)
"uhM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -70568,6 +70690,12 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
+"uig" = (
+/obj/structure/largecrate/supply/floodlights,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"uiC" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -70617,12 +70745,6 @@
icon_state = "test_floor4"
},
/area/almayer/command/cichallway)
-"ujf" = (
-/obj/structure/largecrate/random/barrel/yellow,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"ujz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -70750,22 +70872,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"umD" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"umI" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/hallways/upper/aft_hallway)
"umS" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -70836,16 +70948,6 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"unU" = (
-/obj/structure/machinery/light{
- dir = 4
- },
-/obj/structure/machinery/cm_vending/sorted/medical/bolted,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/medical/lower_medical_medbay)
"unZ" = (
/obj/structure/platform{
dir = 1
@@ -70909,11 +71011,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/living/offices)
-"upQ" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/lifeboat_pumps/north1)
"upR" = (
/obj/structure/machinery/light{
dir = 1
@@ -70931,6 +71028,13 @@
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_m_p)
+"upW" = (
+/obj/structure/sign/safety/intercom{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"uqd" = (
/obj/structure/surface/table/almayer,
/obj/effect/decal/warning_stripes{
@@ -70980,6 +71084,17 @@
"uqo" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
+"uqs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/m41a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"uqA" = (
/obj/structure/machinery/firealarm{
dir = 8;
@@ -70996,15 +71111,6 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"uqJ" = (
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
- },
-/area/almayer/maint/upper/u_a_s)
-"urg" = (
-/obj/docking_port/stationary/escape_pod/east,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_p)
"urk" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -71015,12 +71121,6 @@
icon_state = "orangecorner"
},
/area/almayer/hallways/lower/starboard_umbilical)
-"urs" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"ury" = (
/obj/structure/bed/chair{
dir = 8
@@ -71033,23 +71133,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
-"urL" = (
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = -16;
- pixel_y = 13
- },
-/obj/structure/prop/invuln/overhead_pipe{
- dir = 4;
- pixel_x = 12;
- pixel_y = 13
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"urM" = (
/obj/structure/machinery/light{
dir = 8
@@ -71064,9 +71147,6 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
-"usi" = (
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/aft_hallway)
"usm" = (
/obj/structure/machinery/light,
/obj/structure/sign/safety/waterhazard{
@@ -71090,6 +71170,15 @@
icon_state = "redfull"
},
/area/almayer/shipboard/panic)
+"usu" = (
+/obj/structure/surface/rack,
+/obj/item/roller,
+/obj/item/roller,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"usy" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -71101,10 +71190,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/medical_science)
-"usL" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/port)
"usX" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -71146,15 +71231,9 @@
icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering)
-"utC" = (
-/obj/structure/machinery/portable_atmospherics/canister/air,
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "cargo"
- },
-/area/almayer/maint/upper/u_a_s)
+"utp" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"utK" = (
/obj/structure/machinery/light{
dir = 4
@@ -71185,6 +71264,18 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
+"uul" = (
+/obj/structure/pipes/standard/cap/hidden{
+ dir = 4
+ },
+/obj/structure/sign/safety/life_support{
+ pixel_x = 14;
+ pixel_y = -25
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
"uun" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -71294,18 +71385,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/s_bow)
-"uvq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"uvt" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -71358,10 +71437,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/cells)
-"uwf" = (
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"uws" = (
/obj/structure/machinery/light{
dir = 4
@@ -71436,12 +71511,6 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
-"uxs" = (
-/obj/structure/machinery/pipedispenser/orderable,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"uxC" = (
/obj/structure/machinery/light{
dir = 4
@@ -71471,12 +71540,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
-"uxW" = (
-/obj/structure/largecrate/random/case/small,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"uxX" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer,
@@ -71504,12 +71567,14 @@
"uyH" = (
/turf/closed/wall/almayer/research/containment/wall/divide,
/area/almayer/medical/containment/cell)
-"uyJ" = (
-/obj/structure/machinery/cm_vending/sorted/medical/chemistry,
+"uyQ" = (
+/obj/structure/largecrate/random/case{
+ layer = 2.98
+ },
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "plate"
},
-/area/almayer/medical/chemistry)
+/area/almayer/maint/upper/u_a_s)
"uzv" = (
/obj/structure/bed/chair{
dir = 8;
@@ -71531,37 +71596,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/ce_room)
-"uzH" = (
-/obj/structure/machinery/door/airlock/almayer/medical/glass{
- closeOtherId = "brigmed";
- name = "\improper Brig Medbay";
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "20;3"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/medical)
"uAb" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out"
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/hangar)
-"uAi" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"uAj" = (
/obj/structure/bed/chair,
/obj/effect/decal/cleanable/dirt,
@@ -71624,6 +71664,20 @@
/obj/item/toy/plush/farwa,
/turf/open/floor/wood/ship,
/area/almayer/shipboard/brig/cells)
+"uAP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/safety/autoopenclose{
+ pixel_x = 7;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"uAW" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -71649,10 +71703,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_midship_hallway)
-"uBs" = (
-/obj/effect/landmark/start/pilot/dropship_pilot,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/living/pilotbunks)
"uBx" = (
/obj/structure/prop/invuln/overhead_pipe{
dir = 4;
@@ -71677,6 +71727,13 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_m_p)
+"uBG" = (
+/obj/item/tool/weldingtool,
+/obj/structure/surface/rack,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"uBM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -71907,6 +71964,15 @@
icon_state = "green"
},
/area/almayer/hallways/lower/port_midship_hallway)
+"uGi" = (
+/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
+/obj/structure/machinery/alarm/almayer{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/lower/starboard_umbilical)
"uGN" = (
/obj/structure/pipes/vents/pump,
/turf/open/floor/almayer,
@@ -71949,11 +72015,6 @@
icon_state = "plate"
},
/area/almayer/maint/lower/s_bow)
-"uIa" = (
-/turf/open/floor/almayer{
- icon_state = "greencorner"
- },
-/area/almayer/hallways/upper/fore_hallway)
"uIv" = (
/turf/open/floor/almayer{
icon_state = "orange"
@@ -72052,22 +72113,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_s)
-"uKv" = (
-/obj/structure/surface/table/reinforced/prison,
-/obj/item/device/multitool{
- desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas.";
- icon_state = "multitool_big";
- name = "\improper Oversized Security Access Tuner";
- pixel_y = 11;
- pixel_x = 4
- },
-/obj/item/stack/sheet/cardboard/medium_stack{
- pixel_y = -6;
- pixel_x = -7;
- layer = 3.01
- },
-/turf/open/floor/almayer,
-/area/almayer/squads/alpha_bravo_shared)
"uKH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -72226,17 +72271,17 @@
},
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
-"uOi" = (
-/turf/closed/wall/almayer/outer,
-/area/almayer/lifeboat_pumps/south2)
-"uOE" = (
-/obj/structure/pipes/vents/pump{
- dir = 1
+"uOh" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_a_p)
+/area/almayer/hallways/upper/fore_hallway)
+"uOi" = (
+/turf/closed/wall/almayer/outer,
+/area/almayer/lifeboat_pumps/south2)
"uOJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/almayer{
@@ -72249,21 +72294,9 @@
icon_state = "blue"
},
/area/almayer/living/basketball)
-"uPB" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"uPE" = (
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_aft_hallway)
-"uPN" = (
-/obj/item/tool/wirecutters/clippers,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"uPP" = (
/obj/structure/machinery/door/airlock/almayer/engineering{
dir = 2;
@@ -72295,11 +72328,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/starboard_aft_hallway)
-"uQi" = (
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"uQm" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -72404,6 +72432,15 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
+"uSk" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"uSH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/reagent_dispensers/water_cooler{
@@ -72439,20 +72476,17 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
-"uSZ" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"uTk" = (
/obj/structure/largecrate/random/secure,
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
+"uTl" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"uTs" = (
/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
@@ -72472,12 +72506,6 @@
},
/turf/open/floor/almayer,
/area/almayer/squads/bravo)
-"uTD" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/hallways/upper/fore_hallway)
"uTE" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -72636,15 +72664,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"uVg" = (
-/obj/structure/sign/safety/maint{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"uVh" = (
/obj/structure/filingcabinet/seeds,
/turf/open/floor/almayer{
@@ -72697,18 +72716,27 @@
icon_state = "plate"
},
/area/almayer/living/pilotbunks)
-"uVZ" = (
+"uVY" = (
+/obj/structure/largecrate/random/case/small,
/turf/open/floor/almayer{
- dir = 5;
- icon_state = "green"
+ icon_state = "plate"
},
-/area/almayer/hallways/upper/fore_hallway)
+/area/almayer/maint/upper/u_m_p)
"uWc" = (
/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
+"uWk" = (
+/obj/structure/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"uWm" = (
/obj/effect/projector{
name = "Almayer_Up4";
@@ -72795,6 +72823,13 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/interrogation)
+"uXE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"uXL" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -72884,12 +72919,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"uZI" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"uZV" = (
/obj/structure/reagent_dispensers/fueltank/gas/methane{
anchored = 1
@@ -72921,25 +72950,6 @@
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/starboard_fore_hallway)
-"vaM" = (
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/obj/structure/sign/safety/airlock{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/lower/starboard_umbilical)
"vaQ" = (
/obj/structure/machinery/door/airlock/almayer/medical{
dir = 1;
@@ -72980,16 +72990,29 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
-"vbu" = (
-/obj/structure/surface/table/almayer,
-/obj/item/tool/weldpack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/reagent_container/spray/cleaner,
-/turf/open/floor/almayer{
+"vbo" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigcells";
+ name = "\improper Brig Prisoner Yard"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
dir = 4;
- icon_state = "orange"
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
},
-/area/almayer/maint/upper/u_a_s)
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
"vbB" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/lifeboat_pumps/south1)
@@ -73042,6 +73065,15 @@
icon_state = "plate"
},
/area/almayer/medical/morgue)
+"vbU" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"vbV" = (
/obj/structure/bed/chair/wheelchair{
dir = 1
@@ -73094,6 +73126,14 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south2)
+"vcG" = (
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ name = "General Listening Channel";
+ pixel_y = 28
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"vcI" = (
/obj/effect/decal/cleanable/blood/oil/streak,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -73148,14 +73188,15 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"vdT" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+"vdR" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = -17
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 9;
+ icon_state = "red"
},
-/area/almayer/maint/upper/u_f_s)
+/area/almayer/lifeboat_pumps/south2)
"ven" = (
/obj/structure/bed/chair,
/turf/open/floor/almayer{
@@ -73178,27 +73219,6 @@
icon_state = "emeraldfull"
},
/area/almayer/living/briefing)
-"veO" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/l42a,
-/obj/item/weapon/gun/rifle/l42a{
- pixel_y = -6
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
-"veW" = (
-/obj/structure/machinery/door/airlock/almayer/generic/glass{
- name = "\improper Passenger Cryogenics Bay"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_m_p)
"vfa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73336,6 +73356,12 @@
"vgO" = (
/turf/closed/wall/almayer/research/containment/wall/east,
/area/almayer/medical/containment/cell)
+"vhb" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/almayer/maint/upper/u_a_p)
"vhe" = (
/obj/structure/filingcabinet{
density = 0;
@@ -73445,6 +73471,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/port_emb)
+"viv" = (
+/obj/structure/bed/sofa/south/white/right{
+ pixel_y = 16
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
+ },
+/area/almayer/maint/upper/u_m_p)
"viB" = (
/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{
dir = 1
@@ -73482,13 +73517,6 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south1)
-"vjd" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer,
-/area/almayer/command/lifeboat)
"vjg" = (
/obj/structure/prop/almayer/missile_tube{
icon_state = "missiletubesouth"
@@ -73499,26 +73527,6 @@
icon_state = "plating"
},
/area/almayer/shipboard/port_missiles)
-"vjk" = (
-/obj/structure/machinery/camera/autoname/almayer{
- name = "ship-grade camera"
- },
-/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
-/obj/structure/sign/safety/hazard{
- pixel_y = 32
- },
-/obj/structure/sign/safety/airlock{
- pixel_x = 15;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/hallways/lower/starboard_umbilical)
"vjv" = (
/obj/effect/decal/cleanable/blood/oil,
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -73669,12 +73677,6 @@
icon_state = "plate"
},
/area/almayer/maint/lower/s_bow)
-"vkQ" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"vkR" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -73685,15 +73687,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"vkV" = (
-/obj/effect/landmark/start/liaison,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_p)
-"vle" = (
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"vlk" = (
/obj/structure/closet/emcloset,
/obj/item/clothing/mask/gas,
@@ -73762,13 +73755,6 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
-"vlR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"vlX" = (
/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep,
/turf/open/floor/almayer{
@@ -73794,12 +73780,6 @@
"vmq" = (
/turf/open/floor/almayer,
/area/almayer/maint/hull/lower/l_m_s)
-"vmu" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
"vmE" = (
/turf/open/floor/almayer{
icon_state = "orangecorner"
@@ -73856,16 +73836,13 @@
"vnY" = (
/turf/open/floor/almayer,
/area/almayer/hallways/lower/repair_bay)
-"vnZ" = (
-/obj/structure/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/manifold/hidden/supply,
+"voj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer{
- icon_state = "orange"
+ icon_state = "mono"
},
-/area/almayer/hallways/upper/midship_hallway)
+/area/almayer/hallways/upper/fore_hallway)
"vop" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -73882,6 +73859,77 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_p)
+"vou" = (
+/obj/structure/surface/rack{
+ desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards."
+ },
+/obj/structure/machinery/light/small{
+ dir = 4;
+ icon_state = "bulb-burned";
+ status = 3
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/item/prop{
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag"
+ },
+/obj/item/prop{
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag"
+ },
+/obj/item/prop{
+ desc = "A blood bag with a hole in it. The rats must have gotten to it first.";
+ icon = 'icons/obj/items/bloodpack.dmi';
+ icon_state = "bloodpack";
+ name = "blood bag"
+ },
+/obj/item/prop{
+ desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged.";
+ icon = 'icons/obj/items/circuitboards.dmi';
+ icon_state = "id_mod";
+ layer = 2.78;
+ name = "circuit board";
+ pixel_x = 8;
+ pixel_y = 10
+ },
+/obj/item/prop{
+ desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged.";
+ icon = 'icons/obj/items/circuitboards.dmi';
+ icon_state = "id_mod";
+ layer = 2.79;
+ name = "circuit board";
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ icon_state = "sterile_green_corner"
+ },
+/area/almayer/medical/lower_medical_medbay)
+"voV" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ closeOtherId = "containment_n";
+ dir = 8;
+ name = "\improper Containment Airlock"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/containment)
"vpe" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{
@@ -73897,12 +73945,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_m_p)
-"vpi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"vpn" = (
/turf/open/floor/almayer{
dir = 9;
@@ -73961,9 +74003,6 @@
icon_state = "test_floor4"
},
/area/almayer/shipboard/brig/processing)
-"vqh" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_s)
"vqz" = (
/obj/structure/machinery/light{
dir = 4
@@ -73991,6 +74030,20 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
+"vqI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/device/camera_film{
+ pixel_x = 4;
+ pixel_y = 1;
+ layer = 3.03
+ },
+/obj/item/stack/sheet/cardboard/small_stack{
+ pixel_x = -5;
+ pixel_y = 3;
+ layer = 3.02
+ },
+/turf/open/floor/almayer,
+/area/almayer/squads/charlie_delta_shared)
"vqK" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/almayer{
@@ -74240,16 +74293,6 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"vuE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out";
- pixel_y = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/starboard)
"vuF" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
access_modified = 1;
@@ -74390,6 +74433,12 @@
icon_state = "dark_sterile"
},
/area/almayer/living/port_emb)
+"vwj" = (
+/obj/structure/machinery/power/apc/almayer,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"vwC" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -74419,13 +74468,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/grunt_rnr)
-"vwJ" = (
-/obj/structure/largecrate/random/case/double,
-/obj/structure/machinery/light/small,
+"vwT" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 4;
+ icon_state = "blue"
},
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/hallways/upper/midship_hallway)
"vwU" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
@@ -74447,22 +74495,6 @@
/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/almayer/hallways/hangar)
-"vxh" = (
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 2;
- id = "Warden Office Shutters";
- name = "\improper Privacy Shutters"
- },
-/obj/structure/pipes/standard/simple/hidden/supply,
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigwarden";
- dir = 1;
- name = "\improper Warden's Office"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/warden_office)
"vxu" = (
/obj/structure/machinery/meter,
/obj/structure/pipes/standard/simple/visible{
@@ -74571,6 +74603,15 @@
"vyB" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hallways/lower/vehiclehangar)
+"vyE" = (
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 4;
+ icon_state = "ai_arrow"
+ },
+/area/almayer/command/airoom)
"vyH" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -74638,15 +74679,6 @@
"vzK" = (
/turf/open/floor/almayer,
/area/almayer/engineering/ce_room)
-"vzO" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- req_one_access = null;
- req_one_access_txt = "2;30;34"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_f_s)
"vzP" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/box/cups,
@@ -74742,15 +74774,6 @@
icon_state = "mono"
},
/area/almayer/medical/medical_science)
-"vAU" = (
-/obj/structure/pipes/vents/scrubber/no_boom{
- dir = 4
- },
-/turf/open/floor/almayer/aicore/no_build{
- dir = 8;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
"vBp" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -74808,6 +74831,18 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/hydroponics)
+"vCt" = (
+/obj/structure/sign/safety/storage{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
+"vCv" = (
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"vCx" = (
/obj/structure/machinery/status_display{
pixel_y = -30
@@ -74862,13 +74897,6 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_aft_hallway)
-"vDt" = (
-/obj/item/stool,
-/obj/effect/landmark/yautja_teleport,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_f_s)
"vDz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 9
@@ -74882,14 +74910,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_m_p)
-"vDR" = (
-/obj/structure/surface/rack,
-/obj/item/tool/wet_sign,
-/obj/item/tool/wet_sign,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_p)
"vEf" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -74952,6 +74972,12 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
+"vER" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"vEV" = (
/obj/effect/decal/warning_stripes{
icon_state = "SE-out";
@@ -74993,19 +75019,6 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/north1)
-"vFy" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NW-out"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/obj/structure/sign/safety/stairs{
- pixel_x = -17
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"vFH" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -75025,6 +75038,16 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_f_p)
+"vGi" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"vGn" = (
/turf/open/floor/almayer{
dir = 1;
@@ -75053,6 +75076,15 @@
icon_state = "dark_sterile"
},
/area/almayer/living/numbertwobunks)
+"vGQ" = (
+/obj/structure/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north1)
"vHa" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/computer/ares_console{
@@ -75172,6 +75204,16 @@
icon_state = "containment_corner_variant_2"
},
/area/almayer/medical/containment/cell)
+"vHP" = (
+/obj/structure/surface/table/almayer,
+/obj/item/paper_bin{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/tool/pen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"vHW" = (
/obj/structure/surface/rack,
/obj/item/tool/extinguisher,
@@ -75198,20 +75240,22 @@
icon_state = "test_floor4"
},
/area/almayer/maint/hull/lower/l_a_s)
-"vIr" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/fore_hallway)
+"vIo" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_f_p)
"vIu" = (
/obj/structure/machinery/light{
dir = 4
},
/turf/open/floor/almayer,
/area/almayer/command/cichallway)
+"vIZ" = (
+/obj/structure/pipes/standard/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"vJc" = (
/turf/open/floor/almayer{
dir = 4;
@@ -75281,6 +75325,23 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"vKr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigcells";
+ dir = 1;
+ name = "\improper Brig Prison Yard And Offices"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/processing)
"vKB" = (
/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle,
/obj/structure/machinery/light/small{
@@ -75288,13 +75349,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/armory)
-"vKF" = (
-/obj/structure/machinery/cm_vending/sorted/medical,
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "sterile_green_side"
- },
-/area/almayer/shipboard/brig/medical)
"vKI" = (
/obj/structure/machinery/light{
dir = 1
@@ -75346,14 +75400,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/squads/charlie)
-"vLM" = (
-/obj/structure/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_p)
"vMb" = (
/obj/item/stool{
pixel_x = -15;
@@ -75368,6 +75414,12 @@
/obj/effect/landmark/start/otech,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/offices)
+"vMt" = (
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"vMA" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -75430,10 +75482,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"vMQ" = (
-/obj/docking_port/stationary/escape_pod/north,
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_m_p)
"vMU" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -75444,6 +75492,13 @@
icon_state = "redcorner"
},
/area/almayer/hallways/lower/port_fore_hallway)
+"vNo" = (
+/obj/structure/largecrate/random/case/double,
+/obj/structure/machinery/light/small,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_p)
"vNp" = (
/obj/structure/sign/safety/three{
pixel_x = -17
@@ -75638,6 +75693,12 @@
icon_state = "redfull"
},
/area/almayer/engineering/lower/workshop/hangar)
+"vPT" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"vPW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75671,6 +75732,14 @@
/obj/item/device/camera,
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
+"vQN" = (
+/obj/structure/sign/safety/restrictedarea{
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"vQR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood/ship,
@@ -75716,16 +75785,6 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/starboard)
-"vRJ" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1;
- name = "\improper Emergency Air Storage"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_s)
"vRR" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -75854,6 +75913,14 @@
icon_state = "plate"
},
/area/almayer/engineering/upper_engineering)
+"vTE" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_s)
"vTM" = (
/obj/structure/surface/rack,
/obj/effect/spawner/random/toolbox,
@@ -75876,23 +75943,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
-"vTV" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/obj/structure/machinery/door_control{
- id = "OTStore";
- name = "Shutters";
- pixel_y = -24;
- access_modified = 1;
- req_one_access_txt = "35"
- },
-/obj/structure/surface/rack,
-/obj/item/reagent_container/glass/bucket/janibucket,
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/engineering/lower/workshop/hangar)
"vTX" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_y = -32
@@ -75922,6 +75972,20 @@
/obj/structure/machinery/light,
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
+"vUn" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 8;
+ name = "ship-grade camera"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/almayer/hallways/upper/port)
"vUI" = (
/obj/structure/bed/chair/comfy/orange{
dir = 8
@@ -75943,15 +76007,6 @@
icon_state = "plate"
},
/area/almayer/maint/hull/lower/l_a_p)
-"vUO" = (
-/obj/structure/machinery/light{
- dir = 8
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"vUP" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/cic_hallway)
@@ -76208,6 +76263,28 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/vehiclehangar)
+"vYi" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
+ closeOtherId = "brigwarden";
+ name = "\improper Warden's Office"
+ },
+/obj/structure/machinery/door/poddoor/shutters/almayer/open{
+ dir = 4;
+ id = "Warden Office Shutters";
+ name = "\improper Privacy Shutters"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 8
+ },
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "courtyard_cells";
+ name = "\improper Courtyard Lockdown Shutter"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/warden_office)
"vYm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
@@ -76293,22 +76370,24 @@
"vZw" = (
/turf/open/floor/almayer/research/containment/floor2,
/area/almayer/medical/containment/cell/cl)
-"vZU" = (
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/cell_charger,
-/obj/structure/sign/safety/high_rad{
- pixel_x = 32;
- pixel_y = -8
+"vZI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/sign/safety/hazard{
- pixel_x = 32;
- pixel_y = 7
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
/turf/open/floor/almayer{
dir = 4;
- icon_state = "orange"
+ icon_state = "blue"
},
-/area/almayer/engineering/lower)
+/area/almayer/hallways/upper/midship_hallway)
+"vZJ" = (
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"wac" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -76340,17 +76419,12 @@
icon_state = "red"
},
/area/almayer/hallways/upper/port)
-"waV" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1;
- pixel_y = 1
- },
+"waP" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
+ icon_state = "cargo"
},
-/area/almayer/hallways/upper/starboard)
+/area/almayer/hallways/upper/fore_hallway)
"wbu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/machinery/camera/autoname/almayer{
@@ -76515,25 +76589,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"wdo" = (
-/obj/structure/machinery/door/airlock/almayer/research/reinforced{
- closeOtherId = "containment_s";
- dir = 8;
- name = "\improper Containment Airlock"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "S"
- },
-/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/medical/medical_science)
"wdv" = (
/obj/structure/machinery/door/airlock/almayer/maint{
name = "\improper Core Hatch"
@@ -76554,6 +76609,14 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
+"wdE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"wdF" = (
/turf/open/floor/almayer{
allow_construction = 0
@@ -76748,6 +76811,16 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
+"whc" = (
+/obj/structure/sign/safety/medical{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"whm" = (
/obj/structure/prop/invuln/overhead_pipe{
pixel_x = 12
@@ -76774,6 +76847,10 @@
icon_state = "silver"
},
/area/almayer/command/cichallway)
+"whO" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_s)
"whQ" = (
/obj/structure/closet/secure_closet/personal/cabinet{
req_access = null
@@ -76889,29 +76966,11 @@
icon_state = "plate"
},
/area/almayer/shipboard/port_point_defense)
-"wjE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/starboard)
"wjL" = (
/turf/open/floor/almayer{
icon_state = "plate"
},
/area/almayer/hallways/lower/repair_bay)
-"wjP" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"wjQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/prop/invuln/overhead_pipe{
@@ -76957,6 +77016,15 @@
icon_state = "sterile_green"
},
/area/almayer/medical/lockerroom)
+"wks" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"wky" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -77062,12 +77130,12 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"wlB" = (
-/obj/structure/largecrate/random/case/small,
+"wlr" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ dir = 5;
+ icon_state = "silver"
},
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/hallways/upper/midship_hallway)
"wlD" = (
/obj/structure/machinery/suit_storage_unit/compression_suit/uscm,
/obj/effect/decal/warning_stripes{
@@ -77113,6 +77181,19 @@
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
+"wmo" = (
+/obj/structure/sign/safety/bridge{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/west{
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"wmz" = (
/obj/structure/bed/chair/comfy/bravo{
dir = 1
@@ -77121,12 +77202,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"wmH" = (
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer{
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"wmK" = (
/obj/structure/surface/table/almayer,
/obj/item/clipboard,
@@ -77160,6 +77235,18 @@
icon_state = "cargo"
},
/area/almayer/living/bridgebunks)
+"wnb" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/smg/m39{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/smg/m39{
+ pixel_y = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"wnh" = (
/obj/structure/window/framed/almayer/aicore/hull,
/turf/open/floor/plating,
@@ -77230,21 +77317,24 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
-"wph" = (
-/obj/item/paper_bin/wy,
-/obj/structure/surface/table/woodentable/fancy,
-/obj/item/tool/pen/clicky,
-/obj/item/tool/pen/clicky,
-/obj/structure/machinery/status_display{
- pixel_x = -32
+"wpt" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/machinery/door/poddoor/almayer/open{
+ dir = 4;
+ id = "CIC Lockdown";
+ name = "\improper Combat Information Center Blast Door"
},
-/obj/item/desk_bell{
- anchored = 1;
- pixel_x = -8;
- pixel_y = 8
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/carpet,
-/area/almayer/command/corporateliaison)
+/obj/structure/machinery/door/airlock/almayer/command/reinforced{
+ closeOtherId = "ciclobby_s";
+ name = "\improper Combat Information Center"
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/cic)
"wpu" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/item/device/flashlight/lamp{
@@ -77271,18 +77361,6 @@
icon_state = "plating"
},
/area/almayer/command/airoom)
-"wpz" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/obj/structure/closet,
-/obj/item/clothing/head/bearpelt,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/living/port_emb)
"wpI" = (
/turf/open/floor/almayer{
dir = 4;
@@ -77299,12 +77377,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower)
-"wpT" = (
-/obj/structure/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"wqc" = (
/obj/structure/sign/poster{
pixel_y = 32
@@ -77386,6 +77458,11 @@
},
/turf/open/floor/almayer,
/area/almayer/living/gym)
+"wrI" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_p)
"wrN" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/structure/machinery/camera/autoname/almayer{
@@ -77401,13 +77478,6 @@
allow_construction = 0
},
/area/almayer/hallways/lower/port_fore_hallway)
-"wrQ" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer,
-/area/almayer/lifeboat_pumps/north1)
"wrT" = (
/obj/structure/surface/table/almayer,
/obj/item/device/radio/marine,
@@ -77595,6 +77665,28 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
+"wui" = (
+/obj/structure/machinery/cryopod{
+ pixel_y = 6
+ },
+/obj/structure/sign/safety/cryo{
+ pixel_x = -17
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/maint/upper/u_m_p)
+"wuk" = (
+/obj/structure/sign/safety/maint{
+ pixel_x = 8;
+ pixel_y = -32
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"wup" = (
/obj/structure/supply_drop/echo,
/turf/open/floor/almayer,
@@ -77617,6 +77709,15 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop)
+"wuS" = (
+/obj/structure/machinery/door/airlock/almayer/maint{
+ dir = 1
+ },
+/obj/structure/pipes/standard/simple/hidden/supply,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_a_s)
"wuT" = (
/obj/structure/machinery/light/small{
dir = 8
@@ -77684,15 +77785,19 @@
icon_state = "cargo"
},
/area/almayer/living/synthcloset)
-"wwi" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
+"wvX" = (
+/obj/structure/sign/safety/analysis_lab{
+ pixel_y = 26
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/sign/safety/terminal{
+ pixel_x = 15;
+ pixel_y = 26
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"wwr" = (
/obj/structure/machinery/cryopod{
layer = 3.1;
@@ -77821,9 +77926,6 @@
icon_state = "plate"
},
/area/almayer/living/grunt_rnr)
-"wyc" = (
-/turf/open/floor/plating,
-/area/almayer/maint/upper/u_f_p)
"wyt" = (
/obj/structure/surface/table/reinforced/almayer_B,
/obj/structure/machinery/microwave{
@@ -77840,16 +77942,6 @@
},
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"wyE" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_x = 1
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "silvercorner"
- },
-/area/almayer/hallways/upper/midship_hallway)
"wyG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/machinery/door/airlock/almayer/maint{
@@ -77881,18 +77973,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_aft_hallway)
-"wzL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"wzZ" = (
/obj/structure/machinery/door/airlock/almayer/medical/glass{
dir = 1;
@@ -77906,29 +77986,20 @@
icon_state = "test_floor4"
},
/area/almayer/medical/lower_medical_medbay)
+"wAE" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"wAK" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
},
/turf/open/floor/almayer,
/area/almayer/hallways/lower/port_umbilical)
-"wBd" = (
-/obj/structure/machinery/status_display{
- pixel_x = 32
- },
-/obj/structure/surface/table/almayer,
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 1;
- name = "ship-grade camera"
- },
-/obj/item/desk_bell{
- anchored = 1
- },
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "red"
- },
-/area/almayer/shipboard/brig/lobby)
"wBw" = (
/obj/structure/pipes/vents/pump,
/obj/structure/machinery/status_display{
@@ -77946,6 +78017,12 @@
},
/turf/open/floor/almayer,
/area/almayer/hallways/upper/starboard)
+"wCe" = (
+/obj/structure/machinery/light,
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"wCk" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/cameras/wooden_tv/ot{
@@ -77953,6 +78030,14 @@
},
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop/hangar)
+"wCn" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out"
+ },
+/turf/open/floor/almayer{
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"wCs" = (
/obj/structure/machinery/vending/security,
/obj/structure/machinery/power/apc/almayer{
@@ -78109,6 +78194,10 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
+"wEw" = (
+/obj/effect/landmark/start/pilot/dropship_pilot,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/pilotbunks)
"wEI" = (
/obj/structure/surface/table/reinforced/black,
/obj/item/tool/pen,
@@ -78137,6 +78226,17 @@
icon_state = "red"
},
/area/almayer/lifeboat_pumps/south2)
+"wET" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"wFb" = (
/turf/open/floor/almayer{
dir = 4;
@@ -78279,6 +78379,30 @@
},
/turf/open/floor/almayer,
/area/almayer/lifeboat_pumps/south1)
+"wHr" = (
+/obj/structure/pipes/standard/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/aft_hallway)
+"wHX" = (
+/obj/structure/machinery/door_control{
+ id = "ARES StairsLower";
+ name = "ARES Core Lockdown";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access_txt = "90;91;92"
+ },
+/obj/structure/machinery/camera/autoname/almayer/containment/ares{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/effect/step_trigger/clone_cleaner,
+/turf/open/floor/almayer/aicore/no_build{
+ dir = 8;
+ icon_state = "ai_silver"
+ },
+/area/almayer/command/airoom)
"wIr" = (
/obj/structure/machinery/cm_vending/clothing/senior_officer{
req_access = list();
@@ -78345,12 +78469,6 @@
"wJb" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/medical/lower_medical_medbay)
-"wJd" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "orange"
- },
-/area/almayer/hallways/upper/midship_hallway)
"wJh" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -78445,6 +78563,25 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cells)
+"wKL" = (
+/obj/structure/machinery/door/airlock/almayer/research/reinforced{
+ closeOtherId = "containment_s";
+ dir = 8;
+ name = "\improper Containment Airlock"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply/no_boom{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/medical/medical_science)
"wKN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -78503,6 +78640,40 @@
dir = 1
},
/area/almayer/medical/containment/cell)
+"wLC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/safety/bridge{
+ pixel_y = 32
+ },
+/obj/structure/sign/safety/reception{
+ pixel_x = 15;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"wLF" = (
+/obj/structure/machinery/door/airlock/almayer/medical/glass{
+ closeOtherId = "brigmed";
+ name = "\improper Brig Medbay";
+ req_access = null;
+ req_one_access = null;
+ req_one_access_txt = "20;3"
+ },
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/shipboard/brig/medical)
"wLG" = (
/obj/item/bedsheet/blue{
layer = 3.2
@@ -78568,15 +78739,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/starboard_hallway)
-"wLT" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/hallways/upper/aft_hallway)
"wMl" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 8;
@@ -78612,9 +78774,6 @@
icon_state = "test_floor5"
},
/area/almayer/hallways/lower/starboard_midship_hallway)
-"wMD" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_f_p)
"wMF" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -78690,6 +78849,14 @@
allow_construction = 0
},
/area/almayer/hallways/lower/starboard_midship_hallway)
+"wNC" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"wNG" = (
/obj/effect/projector{
name = "Almayer_Up2";
@@ -78763,18 +78930,6 @@
icon_state = "cargo_arrow"
},
/area/almayer/hallways/lower/port_midship_hallway)
-"wPm" = (
-/obj/structure/pipes/standard/cap/hidden{
- dir = 4
- },
-/obj/structure/sign/safety/life_support{
- pixel_x = 8;
- pixel_y = -25
- },
-/turf/open/floor/almayer{
- icon_state = "mono"
- },
-/area/almayer/lifeboat_pumps/north2)
"wPz" = (
/turf/open/floor/almayer{
icon_state = "mono"
@@ -78801,15 +78956,6 @@
icon_state = "bluefull"
},
/area/almayer/command/cichallway)
-"wPR" = (
-/obj/structure/closet,
-/obj/item/clothing/under/marine,
-/obj/item/clothing/suit/storage/marine,
-/obj/item/clothing/head/helmet/marine,
-/obj/item/clothing/head/beret/cm,
-/obj/item/clothing/head/beret/cm,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_s)
"wQu" = (
/obj/effect/projector{
name = "Almayer_Up3";
@@ -78834,6 +78980,16 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/engine_core)
+"wQI" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/computer/emails{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_f_s)
"wRf" = (
/obj/structure/machinery/light/small,
/obj/structure/sign/safety/nonpress_0g{
@@ -78847,6 +79003,13 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/lower/port_umbilical)
+"wRk" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"wRN" = (
/obj/structure/machinery/portable_atmospherics/hydroponics,
/obj/item/seeds/goldappleseed,
@@ -78919,6 +79082,9 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_a_p)
+"wSB" = (
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"wSQ" = (
/turf/open/floor/almayer{
dir = 1;
@@ -79324,30 +79490,6 @@
},
/turf/open/floor/plating,
/area/almayer/engineering/ce_room)
-"wZk" = (
-/obj/structure/stairs{
- dir = 8;
- icon_state = "ramptop"
- },
-/obj/effect/projector{
- name = "Almayer_Down3";
- vector_x = 1;
- vector_y = -102
- },
-/obj/structure/machinery/light,
-/turf/open/floor/plating/almayer{
- allow_construction = 0
- },
-/area/almayer/hallways/upper/fore_hallway)
-"wZp" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"wZv" = (
/obj/structure/prop/invuln{
desc = "An inflated membrane. This one is puncture proof. Wow!";
@@ -79382,6 +79524,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/lifeboat)
+"xac" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "blue"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"xad" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -79491,26 +79643,6 @@
/obj/item/tool/mop,
/turf/open/floor/plating,
/area/almayer/command/airoom)
-"xci" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/starboard)
-"xcs" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "SE-out"
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "NE-out";
- pixel_y = 1
- },
-/obj/structure/machinery/door/airlock/almayer/maint,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_s)
"xcI" = (
/obj/structure/sign/safety/water{
pixel_x = 8;
@@ -79530,16 +79662,6 @@
icon_state = "plate"
},
/area/almayer/shipboard/panic)
-"xcY" = (
-/obj/structure/machinery/camera/autoname/almayer{
- dir = 8;
- name = "ship-grade camera"
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xdf" = (
/obj/structure/pipes/standard/manifold/fourway/hidden/supply,
/obj/structure/disposalpipe/segment{
@@ -79616,38 +79738,25 @@
icon_state = "plate"
},
/area/almayer/engineering/lower/workshop)
-"xeq" = (
-/obj/structure/sign/safety/distribution_pipes{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "orangecorner"
- },
-/area/almayer/hallways/upper/aft_hallway)
"xer" = (
/obj/structure/machinery/power/apc/almayer,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
-"xew" = (
-/obj/structure/surface/rack,
-/obj/item/facepaint/sniper,
+"xeU" = (
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Laundry Room";
+ req_one_access = list(19,7);
+ req_access = list()
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_m_s)
+/area/almayer/engineering/laundry)
"xfm" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/obj/structure/window/framed/almayer,
/turf/open/floor/plating,
/area/almayer/living/cafeteria_officer)
-"xfo" = (
-/turf/open/floor/almayer{
- dir = 10;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"xfq" = (
/obj/structure/sign/safety/hvac_old{
pixel_x = 8;
@@ -79703,17 +79812,9 @@
icon_state = "sterile_green_corner"
},
/area/almayer/medical/operating_room_one)
-"xfW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/weapon/gun/rifle/m41a{
- pixel_y = 6
- },
-/obj/item/weapon/gun/rifle/m41a,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_m_s)
+"xga" = (
+/turf/closed/wall/almayer,
+/area/almayer/hallways/upper/aft_hallway)
"xgh" = (
/obj/structure/pipes/vents/scrubber{
dir = 4
@@ -79746,16 +79847,6 @@
},
/turf/open/floor/plating/almayer,
/area/almayer/maint/hull/lower/l_a_p)
-"xgE" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"xgJ" = (
/obj/structure/machinery/light{
dir = 1
@@ -79884,6 +79975,12 @@
"xiV" = (
/turf/closed/wall/almayer/outer,
/area/almayer/maint/hull/upper/p_bow)
+"xiW" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_a_p)
"xjb" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{
access_modified = 1;
@@ -79936,12 +80033,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"xjI" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"xjK" = (
/obj/structure/sign/safety/hazard{
pixel_y = 32
@@ -79983,16 +80074,6 @@
"xkd" = (
/turf/closed/wall/almayer/reinforced,
/area/almayer/shipboard/brig/cells)
-"xky" = (
-/obj/structure/sign/safety/maint{
- pixel_x = 8;
- pixel_y = 32
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xkB" = (
/obj/structure/bed/chair/comfy/charlie{
dir = 1
@@ -80077,6 +80158,15 @@
icon_state = "plate"
},
/area/almayer/living/port_emb)
+"xmP" = (
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"xmT" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -80088,6 +80178,14 @@
icon_state = "cargo"
},
/area/almayer/medical/lower_medical_medbay)
+"xnh" = (
+/obj/structure/closet,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"xns" = (
/obj/structure/machinery/door_control{
id = "ARES JoeCryo";
@@ -80114,21 +80212,14 @@
/obj/effect/landmark/start/requisition,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/req)
-"xnR" = (
-/obj/structure/machinery/door/firedoor/border_only/almayer{
+"xnX" = (
+/obj/structure/machinery/power/apc/almayer{
dir = 1
},
-/obj/structure/machinery/door/airlock/almayer/maint{
- access_modified = 1;
- dir = 1;
- name = "\improper Engineering Storage";
- req_one_access = null;
- req_one_access_txt = "2;7"
- },
/turf/open/floor/almayer{
- icon_state = "test_floor4"
+ icon_state = "plate"
},
-/area/almayer/engineering/upper_engineering)
+/area/almayer/maint/upper/u_a_s)
"xoe" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -80144,16 +80235,6 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
-"xog" = (
-/obj/effect/step_trigger/clone_cleaner,
-/obj/effect/decal/warning_stripes{
- icon_state = "W"
- },
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xoj" = (
/turf/open/floor/almayer,
/area/almayer/engineering/lower/workshop)
@@ -80258,6 +80339,11 @@
icon_state = "plating"
},
/area/almayer/engineering/lower/engine_core)
+"xqh" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldingtool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_m_s)
"xqp" = (
/obj/structure/machinery/body_scanconsole{
dir = 8;
@@ -80441,13 +80527,6 @@
/obj/item/weapon/dart/green,
/turf/open/floor/plating,
/area/almayer/maint/lower/constr)
-"xsX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/machinery/light,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/aft_hallway)
"xtM" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer{
@@ -80455,17 +80534,6 @@
icon_state = "sterile_green_side"
},
/area/almayer/medical/lower_medical_lobby)
-"xtO" = (
-/obj/item/device/radio/intercom{
- freerange = 1;
- name = "General Listening Channel";
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xub" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80545,9 +80613,6 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
-"xvB" = (
-/turf/closed/wall/almayer,
-/area/almayer/maint/upper/u_f_p)
"xvE" = (
/obj/structure/machinery/door/firedoor/border_only/almayer,
/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{
@@ -80557,30 +80622,6 @@
icon_state = "test_floor4"
},
/area/almayer/squads/charlie)
-"xvM" = (
-/obj/structure/machinery/door_control{
- id = "ARES StairsLower";
- name = "ARES Core Lockdown";
- pixel_x = 24;
- pixel_y = 8;
- req_one_access_txt = "90;91;92"
- },
-/obj/effect/step_trigger/clone_cleaner,
-/turf/open/floor/almayer/aicore/no_build{
- dir = 4;
- icon_state = "ai_silver"
- },
-/area/almayer/command/airoom)
-"xvO" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"xvQ" = (
/obj/structure/surface/table/almayer,
/obj/structure/machinery/computer/sentencing{
@@ -80661,15 +80702,6 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"xwU" = (
-/obj/structure/sign/safety/medical{
- pixel_x = 8;
- pixel_y = -32
- },
-/turf/open/floor/almayer{
- icon_state = "green"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xwX" = (
/turf/open/floor/almayer{
dir = 9;
@@ -80815,6 +80847,18 @@
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/carpet,
/area/almayer/living/commandbunks)
+"xyp" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"xyt" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/toolbox/mechanical{
@@ -80897,6 +80941,14 @@
"xzh" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/upper/u_m_p)
+"xzx" = (
+/obj/structure/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"xzB" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_s)
@@ -80998,6 +81050,23 @@
icon_state = "plate"
},
/area/almayer/squads/req)
+"xBW" = (
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = -16;
+ pixel_y = 13
+ },
+/obj/structure/prop/invuln/overhead_pipe{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 13
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/maint/upper/u_f_s)
"xBY" = (
/turf/open/floor/almayer,
/area/almayer/engineering/laundry)
@@ -81021,6 +81090,12 @@
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliaison)
+"xCs" = (
+/turf/open/floor/almayer{
+ dir = 10;
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"xCy" = (
/obj/structure/sign/safety/maint{
pixel_x = -19;
@@ -81032,14 +81107,15 @@
},
/turf/open/floor/almayer,
/area/almayer/maint/hull/upper/u_f_p)
-"xCS" = (
-/obj/structure/disposalpipe/segment{
+"xCB" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "orangecorner"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/almayer/hallways/upper/aft_hallway)
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/fore_hallway)
"xDe" = (
/obj/effect/projector{
name = "Almayer_Down4";
@@ -81056,6 +81132,12 @@
icon_state = "silver"
},
/area/almayer/shipboard/brig/cic_hallway)
+"xDy" = (
+/obj/structure/machinery/door/airlock/almayer/maint,
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/maint/upper/u_f_p)
"xDC" = (
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/open/floor/almayer/aicore/no_build,
@@ -81067,15 +81149,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
-"xDG" = (
-/obj/structure/machinery/door/airlock/almayer/maint{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/upper/u_a_s)
"xDV" = (
/obj/effect/step_trigger/clone_cleaner,
/obj/effect/decal/warning_stripes{
@@ -81119,18 +81192,19 @@
"xFt" = (
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/lower/l_f_p)
+"xFx" = (
+/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"xFP" = (
/turf/open/floor/almayer{
dir = 5;
icon_state = "red"
},
/area/almayer/shipboard/starboard_missiles)
-"xFW" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/almayer{
- icon_state = "silver"
- },
-/area/almayer/hallways/upper/midship_hallway)
"xFZ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -81190,6 +81264,19 @@
icon_state = "plate"
},
/area/almayer/maint/hull/upper/u_f_p)
+"xGI" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = -6
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_m_s)
"xGJ" = (
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_22";
@@ -81240,17 +81327,21 @@
icon_state = "orange"
},
/area/almayer/squads/alpha_bravo_shared)
-"xHD" = (
-/obj/structure/machinery/light,
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
+"xHt" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer{
+ dir = 1
+ },
+/obj/structure/machinery/door/airlock/almayer/maint{
+ access_modified = 1;
+ dir = 1;
+ name = "\improper Engineering Storage";
+ req_one_access = null;
+ req_one_access_txt = "2;7"
},
/turf/open/floor/almayer{
- dir = 10;
- icon_state = "silver"
+ icon_state = "test_floor4"
},
-/area/almayer/maint/upper/u_m_p)
+/area/almayer/engineering/upper_engineering)
"xHS" = (
/obj/structure/reagent_dispensers/fueltank/oxygentank{
anchored = 1
@@ -81280,6 +81371,9 @@
icon_state = "cargo"
},
/area/almayer/squads/req)
+"xIj" = (
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"xIk" = (
/obj/structure/machinery/cryopod/right{
pixel_y = 6
@@ -81382,6 +81476,22 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
+"xJV" = (
+/obj/structure/surface/table/almayer,
+/obj/structure/machinery/cell_charger,
+/obj/structure/sign/safety/high_rad{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/safety/hazard{
+ pixel_x = 32;
+ pixel_y = 7
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/lower)
"xKG" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -81440,12 +81550,6 @@
icon_state = "cargo"
},
/area/almayer/shipboard/brig/general_equipment)
-"xLm" = (
-/obj/structure/largecrate/random/case/double,
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/upper/u_a_s)
"xLn" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -81456,6 +81560,11 @@
/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/maint/hull/upper/u_m_s)
+"xLw" = (
+/turf/open/floor/almayer{
+ icon_state = "silver"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"xLX" = (
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -81620,12 +81729,6 @@
icon_state = "cargo"
},
/area/almayer/hallways/hangar)
-"xNl" = (
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"xNu" = (
/obj/structure/toilet{
dir = 1
@@ -81734,12 +81837,6 @@
icon_state = "orange"
},
/area/almayer/engineering/lower/workshop/hangar)
-"xPu" = (
-/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 10
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
"xPZ" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
@@ -81847,12 +81944,6 @@
icon_state = "silver"
},
/area/almayer/command/computerlab)
-"xRn" = (
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "greencorner"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xRw" = (
/turf/open/floor/almayer/uscm/directional{
dir = 1
@@ -81878,16 +81969,6 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"xSl" = (
-/obj/structure/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/almayer{
- dir = 4;
- icon_state = "red"
- },
-/area/almayer/hallways/upper/aft_hallway)
"xSw" = (
/obj/structure/machinery/door/firedoor/border_only/almayer{
dir = 2
@@ -81968,27 +82049,6 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/processing)
-"xTL" = (
-/obj/structure/machinery/cm_vending/gear/executive_officer{
- density = 0;
- pixel_y = 30
- },
-/obj/structure/machinery/power/apc/almayer{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/living/numbertwobunks)
-"xTO" = (
-/obj/structure/machinery/status_display{
- pixel_y = 30
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/fore_hallway)
"xTR" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/poddoor/almayer/open{
@@ -82099,12 +82159,6 @@
icon_state = "red"
},
/area/almayer/hallways/upper/starboard)
-"xVg" = (
-/turf/open/floor/almayer{
- dir = 5;
- icon_state = "red"
- },
-/area/almayer/lifeboat_pumps/north2)
"xVk" = (
/turf/open/space,
/area/space/almayer/lifeboat_dock)
@@ -82197,6 +82251,12 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering/port)
+"xXd" = (
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "silvercorner"
+ },
+/area/almayer/hallways/upper/midship_hallway)
"xXh" = (
/turf/closed/wall/almayer/research/containment/wall/west,
/area/almayer/medical/containment/cell)
@@ -82290,12 +82350,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering)
-"xZf" = (
-/turf/open/floor/almayer{
- dir = 6;
- icon_state = "blue"
- },
-/area/almayer/hallways/upper/midship_hallway)
"xZk" = (
/obj/item/prop/helmetgarb/gunoil{
layer = 4.2;
@@ -82323,10 +82377,22 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
-"xZz" = (
-/obj/item/paper/almayer_storage,
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_a_p)
+"xZt" = (
+/obj/structure/sign/safety/refridgeration{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/medical{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/obj/structure/machinery/camera/autoname/almayer{
+ dir = 1;
+ name = "ship-grade camera"
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
"xZG" = (
/obj/structure/machinery/light{
dir = 4
@@ -82389,6 +82455,9 @@
icon_state = "plate"
},
/area/almayer/hallways/lower/starboard_fore_hallway)
+"yat" = (
+/turf/closed/wall/almayer,
+/area/almayer/maint/upper/u_a_p)
"yaz" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{
name = "\improper Officer's Study"
@@ -82441,9 +82510,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
-"ybk" = (
-/turf/closed/wall/almayer,
-/area/almayer/hallways/upper/midship_hallway)
"ybm" = (
/obj/structure/surface/table/almayer,
/obj/item/clothing/head/hardhat{
@@ -82528,6 +82594,18 @@
icon_state = "plate"
},
/area/almayer/living/briefing)
+"ycA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 10
+ },
+/turf/open/floor/almayer{
+ icon_state = "orangecorner"
+ },
+/area/almayer/hallways/upper/aft_hallway)
"ycH" = (
/obj/structure/surface/table/almayer,
/obj/item/pizzabox/margherita{
@@ -82555,9 +82633,6 @@
icon_state = "blue"
},
/area/almayer/squads/delta)
-"yde" = (
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/hallways/upper/fore_hallway)
"ydf" = (
/obj/structure/platform{
dir = 1
@@ -82645,6 +82720,28 @@
icon_state = "plate"
},
/area/almayer/command/lifeboat)
+"yeg" = (
+/obj/structure/sign/safety/escapepod{
+ pixel_y = -32
+ },
+/obj/structure/sign/safety/east{
+ pixel_x = 15;
+ pixel_y = -32
+ },
+/turf/open/floor/almayer{
+ icon_state = "green"
+ },
+/area/almayer/hallways/upper/fore_hallway)
+"yei" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/midship_hallway)
"yeH" = (
/obj/structure/pipes/standard/simple/hidden/supply,
/turf/open/floor/almayer,
@@ -82713,6 +82810,12 @@
icon_state = "plate"
},
/area/almayer/squads/delta)
+"yfn" = (
+/obj/structure/machinery/pipedispenser/orderable,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/upper/u_a_s)
"yfy" = (
/obj/structure/barricade/handrail{
dir = 1;
@@ -82732,41 +82835,6 @@
},
/turf/open/floor/wood/ship,
/area/almayer/living/commandbunks)
-"yfL" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/obj/structure/bed/sofa/south/white/left{
- pixel_y = 16
- },
-/turf/open/floor/almayer{
- dir = 9;
- icon_state = "silver"
- },
-/area/almayer/maint/upper/u_m_p)
-"yfO" = (
-/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{
- closeOtherId = "brigwarden";
- name = "\improper Warden's Office"
- },
-/obj/structure/machinery/door/poddoor/shutters/almayer/open{
- dir = 4;
- id = "Warden Office Shutters";
- name = "\improper Privacy Shutters"
- },
-/obj/structure/machinery/door/firedoor/border_only/almayer{
- dir = 8
- },
-/obj/structure/machinery/door/poddoor/almayer/open{
- dir = 4;
- id = "courtyard_cells";
- name = "\improper Courtyard Lockdown Shutter"
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/shipboard/brig/warden_office)
"yfS" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -82880,6 +82948,15 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
+"yiu" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/upper/midship_hallway)
"yiW" = (
/obj/structure/machinery/cryopod/right{
layer = 3.1;
@@ -82920,6 +82997,10 @@
icon_state = "test_floor4"
},
/area/almayer/engineering/upper_engineering/notunnel)
+"yjr" = (
+/obj/docking_port/stationary/escape_pod/north,
+/turf/open/floor/plating,
+/area/almayer/maint/upper/u_f_s)
"yjE" = (
/obj/structure/sign/safety/water{
pixel_x = 8;
@@ -82990,82 +83071,6 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/lower)
-"ykY" = (
-/obj/structure/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/obj/item/ammo_magazine/rifle/l42a/ap{
- current_rounds = 0
- },
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/upper/u_m_s)
-"ylc" = (
-/obj/effect/decal/warning_stripes{
- icon_state = "E";
- pixel_x = 1
- },
-/obj/effect/decal/warning_stripes{
- icon_state = "W";
- pixel_x = -1
- },
-/obj/structure/machinery/door/airlock/almayer/research/reinforced{
- closeOtherId = "containment_s";
- dir = 8;
- name = "\improper Containment Airlock"
- },
-/obj/structure/machinery/door/poddoor/almayer/biohazard/white{
- dir = 4
- },
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/medical/containment)
"yle" = (
/obj/effect/landmark/start/marine/engineer/delta,
/obj/effect/landmark/late_join/delta,
@@ -91457,7 +91462,7 @@ cth
gkr
xkc
oGj
-hSj
+iVD
xkc
mph
nlh
@@ -91474,9 +91479,9 @@ qPD
qPD
quJ
rdA
-alF
+jyY
sql
-alF
+jyY
rwe
pdp
hZw
@@ -91866,7 +91871,7 @@ hvd
hvd
hvd
hvd
-mze
+bLF
eyD
naB
kry
@@ -93708,7 +93713,7 @@ kuJ
sLA
jSw
xkd
-cJh
+qFu
xkd
xkd
icM
@@ -94317,7 +94322,7 @@ wdF
kQu
cqM
xkd
-cJh
+qFu
xkd
xkd
pns
@@ -95119,7 +95124,7 @@ ksm
bxE
cmM
oeZ
-uzH
+wLF
oeZ
oeZ
ptq
@@ -95530,7 +95535,7 @@ aIY
oeZ
cFC
oIh
-lUm
+sBQ
skj
tXc
cqM
@@ -95630,9 +95635,9 @@ bIy
alU
alU
alU
-cmI
+syg
alU
-cmJ
+noo
alU
alU
alU
@@ -95727,7 +95732,7 @@ cQv
kYU
tUK
kTp
-vKF
+krO
nWS
glG
oeZ
@@ -95928,14 +95933,14 @@ cQv
tlk
cQv
uhA
-bKN
+tCH
oeZ
oeZ
-uzH
+wLF
oeZ
oeZ
mFc
-eKa
+fbr
emp
lze
wSm
@@ -95951,7 +95956,7 @@ cHk
rkV
rkV
cHk
-yfO
+vYi
cHk
pRs
pdp
@@ -96147,7 +96152,7 @@ emp
emp
emp
emp
-lFJ
+vbo
emp
emp
cHk
@@ -96239,9 +96244,9 @@ kcp
alU
alU
alU
-mBp
+iTW
alU
-cmJ
+noo
alU
alU
alU
@@ -96538,7 +96543,7 @@ oJm
cQG
cQG
hzG
-asC
+nzT
tff
cDN
oFY
@@ -96549,14 +96554,14 @@ jcf
bju
cMW
qEy
-iis
+vKr
rQc
oDy
oDy
wsq
vxK
gwj
-vxh
+oiz
csy
csy
bWQ
@@ -96747,7 +96752,7 @@ uFq
wsl
wSu
xIW
-wBd
+nah
emp
gbw
oRk
@@ -98453,12 +98458,12 @@ aaa
fwK
elY
uaG
-vjk
+sbZ
lxd
dPk
nBV
dyq
-eKm
+uGi
uaG
lYN
byr
@@ -99468,7 +99473,7 @@ aaa
fwK
jru
uaG
-vaM
+aEf
lxd
cif
jaz
@@ -104866,11 +104871,11 @@ wVW
wVW
wVW
aCf
-ayt
+kcx
aCf
wVW
aCf
-hzL
+wpt
aCf
wVW
wVW
@@ -105882,13 +105887,13 @@ awX
wVW
wVW
wVW
-aAl
+lMF
jnX
-dum
+rdz
wVW
wVW
wVW
-jOc
+cbF
aGZ
awF
cST
@@ -106080,14 +106085,14 @@ aiX
wbO
avU
avU
-awY
-uBs
+mKN
+wEw
kOB
awZ
aiX
-opN
-bDi
-vIr
+wLC
+mGb
+uOh
awF
aEM
aGV
@@ -106288,9 +106293,9 @@ pXx
jrm
evg
aiX
-dCb
-dDc
-rdo
+iiU
+eAx
+cmS
awF
aFg
aGY
@@ -106491,9 +106496,9 @@ wWC
auZ
aiX
aiX
-mJp
-jZl
-cbK
+qmK
+oIp
+pTS
awF
hRk
aGY
@@ -106694,11 +106699,11 @@ pQV
apq
ana
aiX
-cKp
-jZl
-dgI
+gwh
+oIp
+qUK
awF
-xTL
+gyh
lmA
rvA
aqm
@@ -106897,9 +106902,9 @@ xQg
wWC
szO
aiX
-xTO
-jZl
-iPU
+jkT
+oIp
+fNX
awF
awF
aEW
@@ -107100,10 +107105,10 @@ yjM
qbO
aqw
hnI
-ash
-jZl
-gFN
-kED
+dME
+oIp
+oGI
+waP
awF
nvG
vGI
@@ -107303,10 +107308,10 @@ aqy
nBE
pOD
bZa
-evG
-duR
-gFN
-oeN
+voj
+sUS
+oGI
+qUu
awF
aHn
szU
@@ -107506,9 +107511,9 @@ aiX
aiX
aiX
aiX
-rPB
-jZl
-sQu
+diw
+oIp
+wCn
tsr
tsr
tsr
@@ -107709,9 +107714,9 @@ aiX
aKG
amb
aiX
-juM
-jZl
-dgI
+hOd
+oIp
+qUK
tsr
sOL
jIC
@@ -107912,9 +107917,9 @@ aqz
aKH
and
aiX
-umD
-jZl
-ash
+aaE
+oIp
+dME
fyT
xIV
xIV
@@ -108115,9 +108120,9 @@ aiX
aiX
aiX
aiX
-cwi
-jZl
-fBA
+qIF
+oIp
+aPV
tsr
iPN
dbX
@@ -108318,9 +108323,9 @@ aqz
mBe
atT
aiX
-fXf
-jZl
-sPk
+bhR
+oIp
+mYA
tsr
tsr
vOY
@@ -108521,9 +108526,9 @@ aiX
asf
atT
aiX
-juM
-qNe
-dgI
+hOd
+lSN
+qUK
lIj
tBY
gkE
@@ -108724,9 +108729,9 @@ aiX
aiX
aiX
aiX
-dRo
-ewL
-enz
+wmo
+icQ
+pwl
lIj
lIj
dvZ
@@ -108819,7 +108824,7 @@ kLE
bkA
bcC
bej
-uyJ
+tzO
fVG
qpQ
nvM
@@ -108831,11 +108836,11 @@ ham
qjN
oDY
omo
-fvJ
+eTC
fdZ
ixj
fdZ
-bET
+uey
gfW
kSA
tpB
@@ -108902,12 +108907,12 @@ adq
aei
aka
aWn
-lfc
-lfc
-lfc
-lfc
-lfc
-lfc
+gLl
+gLl
+gLl
+gLl
+gLl
+gLl
oGC
awW
acW
@@ -108916,31 +108921,31 @@ awW
awW
fSm
hiy
-ddp
-fCP
-fCP
-stk
-fCP
-ash
-ash
-sVA
-fCP
-vUO
-fCP
-fCP
-wzL
-fCP
-fCP
-vUO
-pwd
-sVA
-fCP
-fCP
-fCP
-fCP
-stk
-fCP
-uVg
+esQ
+iKy
+iKy
+oyB
+iKy
+dME
+dME
+gJC
+iKy
+udv
+iKy
+iKy
+gji
+iKy
+iKy
+udv
+oGW
+gJC
+iKy
+iKy
+iKy
+iKy
+oyB
+iKy
+kmT
pEY
jsP
baw
@@ -108949,12 +108954,12 @@ baw
sgU
baw
baw
-xvB
-xvB
-xvB
-xvB
-xvB
-xvB
+vIo
+vIo
+vIo
+vIo
+vIo
+vIo
gnv
yhI
tTu
@@ -109105,12 +109110,12 @@ adq
afr
akc
apg
-lfc
-mjR
-mjR
-mjR
-tWM
-lfc
+gLl
+mis
+mis
+mis
+yjr
+gLl
aea
oGC
xjD
@@ -109119,31 +109124,31 @@ ajf
ajf
oAO
pIZ
-qwf
-jRm
-dsS
-dsS
-dsS
-rsN
-dsS
-dsS
-dFd
-uhI
-uhI
-dsS
-saT
-dsS
-rsN
-rsN
-bxt
-tPz
-tPz
-rpP
-tPz
-tPz
-tPz
-jRm
-rHn
+nsr
+fSx
+tTZ
+tTZ
+tTZ
+dNj
+tTZ
+tTZ
+pcs
+fCW
+fCW
+tTZ
+bjv
+tTZ
+dNj
+dNj
+ubv
+plK
+plK
+tuX
+plK
+plK
+plK
+fSx
+xFx
tFW
dGC
aZz
@@ -109152,12 +109157,12 @@ aZz
nsc
baw
cxk
-xvB
-wyc
-wyc
-wyc
-nTc
-xvB
+vIo
+ojX
+ojX
+ojX
+mxo
+vIo
crh
csI
qhb
@@ -109305,15 +109310,15 @@ aaa
aaa
abs
adq
-aub
+nfC
akt
awW
-lfc
-mjR
-mjR
-mjR
-mjR
-lfc
+gLl
+mis
+mis
+mis
+mis
+gLl
oGC
sHp
oGC
@@ -109322,31 +109327,31 @@ awW
awW
aSJ
isI
-dgP
-mKG
-uIa
-qxK
-rYG
-qxK
-qxK
-iRi
-qxK
-qxK
-qxK
-qxK
-xcY
-qxK
-iRi
-qxK
-qxK
-qxK
-qxK
-qxK
-rYG
-qxK
-bTD
-mKG
-uQi
+gvu
+xCB
+nyK
+llo
+epT
+llo
+llo
+pub
+llo
+llo
+llo
+llo
+aVK
+llo
+pub
+llo
+llo
+llo
+llo
+llo
+epT
+llo
+aWM
+xCB
+tJm
dCD
aXe
baw
@@ -109355,15 +109360,15 @@ baw
mnA
baw
baw
-xvB
-wyc
-wyc
-wyc
-wyc
-xvB
+vIo
+ojX
+ojX
+ojX
+ojX
+vIo
baw
sMM
-nqG
+rSH
pgD
tQV
aaa
@@ -109512,22 +109517,22 @@ avd
akt
awW
qHq
-mjR
-mjR
-mjR
-mjR
-lfc
-vzO
-lfc
-lfc
-lfc
-lfc
-lfc
-lfc
-lfc
-dgP
-mKG
-uQi
+mis
+mis
+mis
+mis
+gLl
+eHX
+gLl
+gLl
+gLl
+gLl
+gLl
+gLl
+gLl
+gvu
+xCB
+tJm
aoe
aoe
aoe
@@ -109547,22 +109552,22 @@ aoe
aoe
aoe
aoe
-maF
-mKG
-mOw
-xvB
-xvB
-xvB
-xvB
-xvB
-xvB
-abz
-xvB
-xvB
-wyc
-wyc
-wyc
-wyc
+hwB
+xCB
+kaj
+vIo
+vIo
+vIo
+vIo
+vIo
+vIo
+xDy
+vIo
+vIo
+ojX
+ojX
+ojX
+ojX
eOM
baw
sMM
@@ -109714,23 +109719,23 @@ adq
aGP
aka
aWu
-lfc
-mjR
-mjR
-mjR
-mjR
-lfc
-gur
-osn
-vDt
-puJ
-deA
-olC
-ujf
-lfc
-xky
-mKG
-uQi
+gLl
+mis
+mis
+mis
+mis
+gLl
+lNL
+kUJ
+qgn
+eIf
+mfL
+hto
+qhg
+gLl
+pzw
+xCB
+tJm
aoe
aoh
jHQ
@@ -109750,23 +109755,23 @@ cnV
isN
cnZ
aoe
-dgP
-mKG
-uQi
-xvB
-cHn
-cHn
-ftw
-nZK
-ftw
-wMD
-dcZ
-xvB
-wyc
-wyc
-wyc
-wyc
-xvB
+gvu
+xCB
+tJm
+vIo
+giD
+giD
+wrI
+lST
+wrI
+pep
+mCJ
+vIo
+ojX
+ojX
+ojX
+ojX
+vIo
hWB
yhI
qSX
@@ -109862,9 +109867,9 @@ aId
vjv
gOR
aId
-vTV
+ary
nmY
-pdy
+nZm
smW
prP
xXl
@@ -109917,23 +109922,23 @@ adq
aGQ
akc
apg
-lfc
-mjR
-mjR
-mjR
-mjR
-lfc
-aHo
-vqh
-tey
-urL
-tey
-vqh
-aHo
-tQA
-ash
-wwi
-uQi
+gLl
+mis
+mis
+mis
+mis
+gLl
+gtI
+utp
+cZq
+xBW
+cZq
+utp
+gtI
+kYF
+dME
+nbH
+tJm
aoe
vbS
arb
@@ -109953,23 +109958,23 @@ cnW
aEi
coa
aoe
-tWf
-wwi
-ash
-nZK
-ftw
-wMD
-wMD
-xvB
-gJY
-ftw
-ftw
-xvB
-wyc
-wyc
-wyc
-wyc
-xvB
+lXR
+nbH
+dME
+lST
+wrI
+pep
+pep
+vIo
+fzt
+wrI
+wrI
+vIo
+ojX
+ojX
+ojX
+ojX
+vIo
wvj
csI
iPH
@@ -110120,11 +110125,11 @@ aee
avd
akt
qWI
-lfc
-lfc
-lfc
-lfc
-lfc
+gLl
+gLl
+gLl
+gLl
+gLl
gxm
gxm
gxm
@@ -110134,9 +110139,9 @@ gxm
gxm
gxm
gxm
-tWf
-wwi
-uQi
+lXR
+nbH
+tJm
aoe
qQc
fXg
@@ -110156,9 +110161,9 @@ jBy
aEi
fFh
aoe
-dgP
-wwi
-uQi
+gvu
+nbH
+tJm
gxm
gxm
gxm
@@ -110168,11 +110173,11 @@ gxm
gxm
gxm
gxm
-xvB
-xvB
-xvB
-xvB
-xvB
+vIo
+vIo
+vIo
+vIo
+vIo
ehj
irS
ilJ
@@ -110247,7 +110252,7 @@ mKw
rcx
kan
ojZ
-jjn
+toS
ojZ
kan
leY
@@ -110320,26 +110325,26 @@ aaa
aaa
abs
adq
-lpJ
+nAv
akt
awW
-lfc
-mfR
-sqP
-tVs
-tVs
+gLl
+vHP
+wQI
+cIS
+cIS
gxm
-tPB
-tPB
-tPB
+sWb
+sWb
+sWb
dkO
aps
aps
aps
gxm
-xtO
-mKG
-uQi
+gpp
+xCB
+tJm
aoe
vbS
koB
@@ -110359,26 +110364,26 @@ aoe
hFF
aoe
aoe
-dgP
-mKG
-uQi
+gvu
+xCB
+tJm
gxm
aiJ
aiJ
aiJ
qYr
-cJV
-cJV
-cJV
+kEA
+kEA
+kEA
gxm
-ear
-pqR
-wMD
-ear
-xvB
+qTA
+bMZ
+pep
+qTA
+vIo
baw
sMM
-tmI
+noO
pgD
tQV
aaa
@@ -110526,23 +110531,23 @@ adq
aWm
aka
kyY
-lfc
-hzl
-vdT
-aHo
-aHo
+gLl
+lfZ
+lWS
+gtI
+gtI
gxm
-tPB
-tPB
-tPB
+sWb
+sWb
+sWb
vQe
aps
aps
aps
gxm
-hGo
-wwi
-uQi
+sHC
+nbH
+tJm
aoe
aop
koB
@@ -110562,23 +110567,23 @@ uRt
aQz
aRJ
ajl
-dgP
-wwi
-uQi
+gvu
+nbH
+tJm
gxm
aiJ
aiJ
aiJ
str
-cJV
-cJV
-cJV
+kEA
+kEA
+kEA
gxm
-pqR
-wMD
-wMD
-moq
-xvB
+bMZ
+pep
+pep
+osr
+vIo
rQW
yhI
rRz
@@ -110652,9 +110657,9 @@ tlA
nyj
vVW
vhX
-unU
+ctJ
rlZ
-twq
+pGE
vhX
jCK
nyj
@@ -110729,23 +110734,23 @@ adq
afr
akc
apg
-lfc
-lfc
-lBB
-vqh
-mOR
+gLl
+gLl
+nlI
+utp
+usu
gxm
-gHX
-gHX
-gHX
+sRZ
+sRZ
+sRZ
vQe
aps
aps
aps
gxm
-dgP
-hBy
-dlT
+gvu
+lYS
+mzn
hSI
pMp
gzK
@@ -110765,23 +110770,23 @@ akw
aQz
aRK
ajl
-kUs
-wwi
-uQi
+aUB
+nbH
+tJm
gxm
aiJ
aiJ
aiJ
str
-oAY
-oAY
-oAY
+jcu
+jcu
+jcu
gxm
-rTe
-wMD
-ftw
-xvB
-xvB
+cAa
+pep
+wrI
+vIo
+vIo
vpn
csI
goL
@@ -110928,27 +110933,27 @@ aaf
aaf
aaf
abw
-eCC
+eJU
awW
akt
awW
-upQ
-fFs
-vqh
-fwP
-mOR
+cUo
+dwu
+utp
+qxS
+usu
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-qNe
-mnV
+gvu
+lSN
+xZt
aoe
pjF
wUd
@@ -110968,22 +110973,22 @@ akw
fOL
aRS
ajl
-hGo
-mKG
-uQi
+sHC
+xCB
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-pqR
-ear
-ftw
-nZK
+bMZ
+qTA
+wrI
+lST
aJU
baw
sMM
@@ -111131,27 +111136,27 @@ aag
aag
aag
abw
-eCC
+eJU
awW
akt
-wrQ
-lfc
-lfc
-lfc
-lfc
-lfc
+vCt
+gLl
+gLl
+gLl
+gLl
+gLl
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-wwi
-tQO
+gvu
+nbH
+vQN
sqf
sqf
sqf
@@ -111171,23 +111176,23 @@ upM
akw
alD
vEx
-ash
-wwi
-uQi
+dME
+nbH
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-xvB
-xvB
-xvB
-xvB
-xvB
+vIo
+vIo
+vIo
+vIo
+vIo
nTH
sMM
baw
@@ -111253,10 +111258,10 @@ qPk
hKe
qPk
kan
-qWS
+mBk
oDJ
vaQ
-iIH
+iTt
rlZ
buu
rlZ
@@ -111338,23 +111343,23 @@ adq
aeZ
aka
aoI
-lfc
-mjR
-mjR
-mjR
-tWM
+gLl
+mis
+mis
+mis
+yjr
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-wwi
-uQi
+gvu
+nbH
+tJm
sqf
anp
wjz
@@ -111374,23 +111379,23 @@ ajl
onQ
alD
ajl
-bNI
-wwi
-uQi
+bgN
+nbH
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-wyc
-wyc
-wyc
-nTc
-xvB
+ojX
+ojX
+ojX
+mxo
+vIo
gnv
yhI
tTu
@@ -111456,7 +111461,7 @@ qPk
hKe
qPk
kan
-kAp
+vou
dYU
kan
cWm
@@ -111541,23 +111546,23 @@ adq
afr
akc
apg
-lfc
-mjR
-mjR
-mjR
-mjR
+gLl
+mis
+mis
+mis
+mis
gxm
-lbc
-tpj
-tpj
+aoz
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-mKG
-uQi
+gvu
+xCB
+tJm
sqf
sOZ
oNJ
@@ -111577,23 +111582,23 @@ ajl
aCp
alD
ajl
-kiq
-mKG
-uQi
+evM
+xCB
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-wZk
+mWJ
+mWJ
+kbl
gxm
-wyc
-wyc
-wyc
-wyc
-xvB
+ojX
+ojX
+ojX
+ojX
+vIo
vpn
csI
goL
@@ -111740,27 +111745,27 @@ aag
aag
aag
abw
-eCC
+eJU
awW
akt
awW
avJ
-mjR
-mjR
-mjR
-mjR
+mis
+mis
+mis
+mis
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-qNe
-mOw
+gvu
+lSN
+kaj
sqf
anq
awn
@@ -111780,22 +111785,22 @@ fQu
akx
alD
gWG
-dgP
-mKG
-uQi
+gvu
+xCB
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-wyc
-wyc
-wyc
-wyc
+ojX
+ojX
+ojX
+ojX
qxz
baw
sMM
@@ -111943,27 +111948,27 @@ aag
aag
aag
abw
-eCC
+eJU
awW
akt
-aqk
-lfc
-mjR
-mjR
-mjR
-mjR
+aAn
+gLl
+mis
+mis
+mis
+mis
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-dgP
-mKG
-uQi
+gvu
+xCB
+tJm
sqf
anr
awn
@@ -111983,23 +111988,23 @@ fQu
akx
alD
gWG
-dgP
-mKG
-uQi
+gvu
+xCB
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-wyc
-wyc
-wyc
-wyc
-xvB
+ojX
+ojX
+ojX
+ojX
+vIo
xuY
sMM
baw
@@ -112150,23 +112155,23 @@ adq
aeZ
aka
aoI
-lfc
-mjR
-mjR
-mjR
-mjR
+gLl
+mis
+mis
+mis
+mis
gxm
-tpj
-tpj
-tpj
+lmG
+lmG
+lmG
gxm
asm
asm
asm
gxm
-maF
-mKG
-uQi
+hwB
+xCB
+tJm
sqf
sqf
awp
@@ -112186,23 +112191,23 @@ ajl
hVz
alD
ajl
-tWf
-mKG
-uQi
+lXR
+xCB
+tJm
gxm
alW
alW
alW
gxm
-nVA
-nVA
-nVA
+mWJ
+mWJ
+mWJ
gxm
-wyc
-wyc
-wyc
-wyc
-xvB
+ojX
+ojX
+ojX
+ojX
+vIo
gnv
yhI
tTu
@@ -112350,26 +112355,26 @@ aag
aag
abs
adq
-afB
+sSj
akc
-biT
-lfc
-lfc
-lfc
-lfc
-lfc
+rMh
+gLl
+gLl
+gLl
+gLl
+gLl
gxm
-hWV
-hWV
-hWV
+qqa
+qqa
+qqa
gxm
gxm
gxm
gxm
gxm
-mYd
-wwi
-xwU
+atz
+nbH
+tyC
ajl
qhx
akw
@@ -112389,23 +112394,23 @@ ajl
nMV
vIf
ajl
-maF
-wwi
-nwu
+hwB
+nbH
+yeg
gxm
gxm
gxm
gxm
gxm
-hWV
-hWV
-hWV
+qqa
+qqa
+qqa
gxm
-xvB
-xvB
-xvB
-xvB
-xvB
+vIo
+vIo
+vIo
+vIo
+vIo
crh
csI
qhb
@@ -112552,27 +112557,27 @@ aag
aag
aag
abw
-eCC
+eJU
awW
awW
awW
-pEA
-fCP
-fCP
-fCP
-fCP
-omp
-ocX
-xog
-xog
-vFy
-fCP
-fCP
-vUO
-fCP
-xRn
-wwi
-ash
+wAE
+iKy
+iKy
+iKy
+iKy
+tMi
+lCg
+knb
+knb
+jsd
+iKy
+iKy
+udv
+iKy
+gre
+nbH
+dME
bVE
aos
akw
@@ -112592,23 +112597,23 @@ ans
aos
alE
bVE
-ash
-wwi
-mnC
-fCP
-qRx
-fCP
-fCP
-cuI
-ocX
-ocX
-ocX
-pVI
-fCP
-fCP
-fCP
-fCP
-pEA
+dME
+nbH
+kPa
+iKy
+gDk
+iKy
+iKy
+gOa
+lCg
+lCg
+lCg
+ccx
+iKy
+iKy
+iKy
+iKy
+wAE
baw
baw
qYC
@@ -112755,27 +112760,27 @@ aag
aag
aag
abw
-eCC
+eJU
awW
aTm
awW
-pEA
-orV
-orV
-orV
-orV
-fGD
-fGD
-qEc
-qEc
-qEc
-orV
-yde
-yde
-yde
-yde
-gkV
-uTD
+wAE
+qQu
+qQu
+qQu
+qQu
+kVW
+kVW
+oFz
+oFz
+oFz
+qQu
+dcR
+dcR
+dcR
+dcR
+hWa
+cEG
aEe
akA
akA
@@ -112795,23 +112800,23 @@ akA
oap
aSb
aEe
-uTD
-lzF
-yde
-yde
-yde
-yde
-orV
-qEc
-qEc
-qEc
-fGD
-fGD
-orV
-orV
-orV
-orV
-pEA
+cEG
+rxQ
+dcR
+dcR
+dcR
+dcR
+qQu
+oFz
+oFz
+oFz
+kVW
+kVW
+qQu
+qQu
+qQu
+qQu
+wAE
baw
vbB
ley
@@ -112885,7 +112890,7 @@ bst
cjW
rlZ
rlZ
-hrJ
+oRy
kan
biy
boX
@@ -112960,25 +112965,25 @@ aah
abs
abs
awW
-ale
+vGQ
ajE
-pEA
-ash
-rYG
-ash
-xcY
-qxK
-qxK
-qxK
-qxK
-rYG
-qxK
-qxK
-qxK
-qxK
-bTD
-qNe
-uQi
+wAE
+dME
+epT
+dME
+aVK
+llo
+llo
+llo
+llo
+epT
+llo
+llo
+llo
+llo
+aWM
+lSN
+tJm
vOy
vOy
vOy
@@ -112998,23 +113003,23 @@ vOy
wMO
wky
sqf
-bNI
-qNe
-uIa
-qxK
-rYG
-qxK
-qxK
-qxK
-qxK
-qxK
-qxK
-rYG
-qxK
-ash
-ftZ
-qxK
-pEA
+bgN
+lSN
+nyK
+llo
+epT
+llo
+llo
+llo
+llo
+llo
+llo
+epT
+llo
+dME
+bRO
+llo
+wAE
baw
dBp
gVA
@@ -113179,9 +113184,9 @@ abE
abE
abE
abE
-bff
-rnd
-fdf
+cXq
+bXc
+vZJ
vOy
nos
fcy
@@ -113195,15 +113200,15 @@ vAQ
qIL
ncE
vWt
-kNx
+gei
vOy
ayX
kXw
pxo
sqf
-uVZ
-rnd
-fdf
+lPY
+bXc
+vZJ
pBG
pBG
pBG
@@ -113382,9 +113387,9 @@ gwo
aed
aeG
abE
-umI
-dzV
-umI
+rSW
+dNv
+rSW
vOy
oNp
aSn
@@ -113404,15 +113409,15 @@ niL
kXw
pxo
sqf
-umI
-uch
-umI
+rSW
+dYl
+rSW
pBG
-idM
-idM
-idM
-idM
-fHM
+rdZ
+rdZ
+rdZ
+rdZ
+bCs
pBG
rLp
ttX
@@ -113585,9 +113590,9 @@ adF
aef
dWw
agA
-okx
-hgA
-xfo
+mRJ
+fjA
+gqH
vOy
anz
vgx
@@ -113607,15 +113612,15 @@ aCC
kXw
pxo
asn
-okx
-cFH
-xfo
+mRJ
+oEn
+gqH
pBG
-idM
-idM
-idM
-idM
-idM
+rdZ
+rdZ
+rdZ
+rdZ
+rdZ
pBG
jZU
jAe
@@ -113697,7 +113702,7 @@ xMs
cjW
rlZ
rlZ
-jbO
+kSC
kan
quv
rZB
@@ -113788,9 +113793,9 @@ adF
aef
aef
uZZ
-kGS
-bNT
-rmB
+muW
+lGh
+bBH
vOy
awQ
oLU
@@ -113810,15 +113815,15 @@ edv
kXw
pxo
asn
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
pBG
-idM
-idM
-idM
-idM
-idM
+rdZ
+rdZ
+rdZ
+rdZ
+rdZ
pBG
cVq
nOb
@@ -113991,9 +113996,9 @@ adF
bls
aeH
agq
-nIF
-ijn
-rmB
+ijd
+efV
+bBH
vOy
hng
dnC
@@ -114013,15 +114018,15 @@ aCt
kXw
pxo
asn
-eWN
-jao
-hCF
+lXl
+poD
+qmW
pBG
-idM
-idM
-idM
-idM
-idM
+rdZ
+rdZ
+rdZ
+rdZ
+rdZ
pBG
dzp
ngV
@@ -114194,9 +114199,9 @@ adF
aef
kqN
agA
-eWN
-mxg
-hCF
+lXl
+qdJ
+qmW
vOy
xyt
wiW
@@ -114216,9 +114221,9 @@ vOy
mFq
vqW
sqf
-jMP
-jao
-rmB
+rnM
+poD
+bBH
pBG
pBG
pBG
@@ -114397,9 +114402,9 @@ aef
aef
tRD
abE
-ciI
-mxg
-rmB
+tkF
+qdJ
+bBH
vOy
iYf
bIM
@@ -114419,15 +114424,15 @@ hPe
sdu
btC
vLj
-nIF
-ijn
-rmB
-dyJ
+ijd
+efV
+bBH
+rRT
pBG
gqQ
cHG
nQA
-wph
+dAl
pyx
lKO
pBG
@@ -114600,9 +114605,9 @@ adF
aef
afs
agA
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
vOy
mTp
wiW
@@ -114622,10 +114627,10 @@ lON
dVu
oDR
vOP
-kGS
-fAW
-vlR
-qPv
+muW
+cDI
+tru
+uXE
qvL
wmP
wmP
@@ -114803,9 +114808,9 @@ adD
sOw
afs
agA
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
vOy
axn
dRh
@@ -114825,10 +114830,10 @@ vOy
aRd
aIo
vOy
-gyb
-lOn
-rmB
-aRl
+whc
+yiu
+bBH
+mxq
pBG
lvb
eAN
@@ -115006,9 +115011,9 @@ adF
aef
afs
agA
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
vOy
aAr
pGK
@@ -115028,9 +115033,9 @@ aCD
hFC
qmy
vOy
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
pBG
pBG
hEl
@@ -115209,9 +115214,9 @@ aef
aef
pHG
abE
-ciI
-jao
-rmB
+tkF
+poD
+bBH
vOy
aID
gLc
@@ -115220,9 +115225,9 @@ iit
kZV
vOy
vOy
-oIr
+jpl
vOy
-wdo
+wKL
vOy
vOy
vOy
@@ -115231,9 +115236,9 @@ aoM
aoM
vgB
kgs
-eWN
-jao
-rmB
+lXl
+poD
+bBH
bvX
ojQ
eAN
@@ -115412,9 +115417,9 @@ adF
aef
aGS
agA
-eWN
-jao
-rmB
+lXl
+poD
+bBH
vOy
aMd
pGK
@@ -115434,9 +115439,9 @@ prx
fpT
eVT
kgs
-eWN
-jao
-rmB
+lXl
+poD
+bBH
bvX
kVV
vQR
@@ -115615,9 +115620,9 @@ adF
aef
nIS
uZZ
-kGS
-jao
-rmB
+muW
+poD
+bBH
vOy
aMg
aSo
@@ -115637,9 +115642,9 @@ ger
aoM
aFf
mmN
-eWN
-jao
-rmB
+lXl
+poD
+bBH
bvX
maO
lPm
@@ -115818,9 +115823,9 @@ adF
aef
nIS
eWF
-kGS
-jao
-rmB
+muW
+poD
+bBH
vOy
aQZ
bkT
@@ -115838,11 +115843,11 @@ ggl
jjS
qMP
kBP
-aSl
+kqo
vOy
-ciI
-jao
-hCF
+tkF
+poD
+qmW
pBG
pBG
pBG
@@ -116021,9 +116026,9 @@ adF
aef
kqN
agA
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
vOy
dVd
lea
@@ -116043,9 +116048,9 @@ vti
vti
aEZ
vOy
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
fKh
gQk
trU
@@ -116224,9 +116229,9 @@ fcE
aef
uNN
abE
-ftb
-lOn
-rmB
+dfA
+yiu
+bBH
vOy
vOy
vOy
@@ -116235,9 +116240,9 @@ mSK
mSK
vOy
vOy
-ccc
+voV
wKP
-ylc
+hLr
vOy
vOy
rhO
@@ -116246,9 +116251,9 @@ nPE
oqZ
uaI
vOy
-eFI
-lOn
-rmB
+hUu
+yiu
+bBH
fKh
iuG
sOv
@@ -116427,11 +116432,11 @@ aeI
eva
xzf
abE
-ciI
-jao
-uZI
-cSM
-xfo
+tkF
+poD
+dSI
+iLL
+gqH
vOy
vOy
vOy
@@ -116449,9 +116454,9 @@ vOy
vOy
vOy
vOy
-czJ
-jao
-rmB
+qQD
+poD
+bBH
fKh
ubI
nQA
@@ -116630,11 +116635,11 @@ aNi
aNi
aNi
aNi
-eFI
-jao
-gfv
-gfv
-rmB
+hUu
+poD
+tsn
+tsn
+bBH
vOy
elR
xXh
@@ -116652,9 +116657,9 @@ dMK
vOy
vOy
vOy
-eWN
-jao
-rmB
+lXl
+poD
+bBH
pBG
mGT
nQA
@@ -116833,11 +116838,11 @@ bhx
vif
aOR
bsw
-eWN
-uSZ
-rDm
-ldq
-rmB
+lXl
+hPZ
+bPi
+ava
+bBH
vOy
wWz
vHO
@@ -116853,11 +116858,11 @@ ruc
xOY
wTM
vOy
-qqb
-cSM
-fvE
-jao
-hCF
+uWk
+iLL
+lRh
+poD
+qmW
pBG
tGT
nQA
@@ -117036,11 +117041,11 @@ aco
aco
dYu
bsw
-kON
-xNl
-dpS
-jao
-hCF
+cOe
+vwT
+akh
+poD
+qmW
vOy
wWz
anw
@@ -117056,11 +117061,11 @@ wLy
eiE
wTM
vOy
-eWN
-gFL
-gDQ
-xgE
-rmB
+lXl
+mfO
+mHY
+yei
+bBH
fKh
eYn
nQA
@@ -117241,9 +117246,9 @@ cCa
aNi
aNi
aNi
-jMP
-mxg
-rmB
+rnM
+qdJ
+bBH
vOy
wWz
ovG
@@ -117259,11 +117264,11 @@ gxP
aOe
wTM
vOy
-nLM
-lOn
-acQ
-acQ
-rmB
+piQ
+yiu
+xIj
+xIj
+bBH
fKh
wvo
nQA
@@ -117444,9 +117449,9 @@ qiy
ahR
ahR
egt
-tzF
-gIN
-rmB
+shC
+vIZ
+bBH
vOy
woh
vgO
@@ -117462,11 +117467,11 @@ qxm
vgO
xAe
vOy
-oxg
-jao
-iUV
-xNl
-xZf
+psk
+poD
+sin
+vwT
+gsJ
fKh
lDa
eAN
@@ -117647,9 +117652,9 @@ hpY
aOR
aOR
bgK
-kGS
-mxg
-rmB
+muW
+qdJ
+bBH
vOy
vOy
vOy
@@ -117665,9 +117670,9 @@ aoK
vOy
vOy
vOy
-glc
-jao
-rmB
+pLE
+poD
+bBH
mRU
mRU
pBG
@@ -117850,9 +117855,9 @@ aOR
aOR
agr
aNi
-eWN
-bNT
-rmB
+lXl
+lGh
+bBH
vOy
vOy
vOy
@@ -117868,9 +117873,9 @@ vOy
vOy
vOy
vOy
-kbT
-bNT
-rmB
+mIR
+lGh
+bBH
mRU
vpf
pBG
@@ -118053,9 +118058,9 @@ aNi
aNi
aNi
aNi
-glc
-bNT
-rmB
+pLE
+lGh
+bBH
bPF
aqG
ata
@@ -118071,9 +118076,9 @@ vOy
jyJ
niF
bPF
-ciI
-lOn
-rmB
+tkF
+yiu
+bBH
mRU
vpf
pBG
@@ -118256,9 +118261,9 @@ hoT
tob
tob
fkK
-kGS
-bNT
-kGS
+muW
+lGh
+muW
cbg
aqG
atb
@@ -118274,9 +118279,9 @@ vOy
sLk
niF
cbg
-kGS
-lOn
-kGS
+muW
+yiu
+muW
rXF
jtU
jtU
@@ -118459,9 +118464,9 @@ aej
aej
aej
aej
-jZW
-bNT
-rZC
+gpT
+lGh
+cQF
vOy
vOy
vOy
@@ -118477,9 +118482,9 @@ vOy
vOy
vOy
vOy
-bxV
-lOn
-uAi
+xac
+yiu
+vbU
nIN
nIN
nIN
@@ -118651,20 +118656,20 @@ rWz
rWz
rWz
rWz
-kLB
+rCZ
rWz
rWz
rWz
rWz
-kLB
+rCZ
aej
aeO
afG
ags
aej
-eWN
-bNT
-rmB
+lXl
+lGh
+bBH
vOy
elR
xXh
@@ -118680,24 +118685,24 @@ xXh
xXh
dMK
vOy
-eWN
-lOn
-rmB
+lXl
+yiu
+bBH
nIN
-bnF
-lBw
-bnF
+iIb
+wui
+iIb
nIN
rgL
rgL
rgL
rgL
-urg
+lAW
rgL
rgL
rgL
rgL
-urg
+lAW
nIN
jtU
nVE
@@ -118865,9 +118870,9 @@ aeP
agI
aia
yaz
-kGS
-mxg
-rmB
+muW
+qdJ
+bBH
vOy
wWz
vHO
@@ -118883,13 +118888,13 @@ uXj
rdt
wTM
vOy
-eWN
-jao
-rmB
-eyI
+lXl
+poD
+bBH
+aQx
xzh
-jaW
-vkV
+sjM
+oIn
nIN
rgL
rgL
@@ -119068,9 +119073,9 @@ aeQ
agK
agu
eup
-kGS
-mxg
-rmB
+muW
+qdJ
+bBH
vOy
wWz
uwZ
@@ -119086,13 +119091,13 @@ coZ
sNz
wTM
vOy
-eWN
-jao
-rmB
-eyI
-yfL
-sjw
-xHD
+lXl
+poD
+bBH
+aQx
+bcg
+bkM
+gYp
nIN
rgL
rgL
@@ -119145,7 +119150,7 @@ vvH
bwG
bwG
nsY
-wpz
+gAP
oEX
irT
tyb
@@ -119271,9 +119276,9 @@ aeR
agK
agu
aej
-ftb
-mxg
-hCF
+dfA
+qdJ
+qmW
vOy
wWz
pEJ
@@ -119289,13 +119294,13 @@ xQm
tfH
wTM
vOy
-nLM
-jao
-rmB
-eyI
-byH
+piQ
+poD
+bBH
+aQx
+viv
xzh
-nvd
+syp
nIN
rgL
rgL
@@ -119474,9 +119479,9 @@ aej
agO
aid
aej
-kON
-fsu
-xZf
+cOe
+vZI
+gsJ
vOy
wWz
uwZ
@@ -119492,12 +119497,12 @@ vfP
sNz
wTM
vOy
-kON
-fsu
-xZf
+cOe
+vZI
+gsJ
nIN
nIN
-veW
+cyh
nIN
nIN
nIN
@@ -119662,8 +119667,8 @@ fTj
jOD
oOw
cPK
-wjE
-loz
+sPb
+dlo
sAz
jZC
uyd
@@ -119671,15 +119676,15 @@ ito
cuN
cQW
lQa
-wjE
-vuE
+sPb
+gtg
ilq
-aLh
-aLh
-ltt
-bgh
-spW
-pjQ
+aMy
+aMy
+wNC
+hOn
+sYU
+xCs
vOy
wWz
qxP
@@ -119695,15 +119700,15 @@ gxP
nMe
wTM
vOy
-bgh
-spW
-pjQ
-ltt
-bkb
-bWx
-rRf
-pOC
-qtj
+hOn
+sYU
+xCs
+wNC
+kin
+oQI
+laI
+qwU
+neZ
fpA
qUx
gUS
@@ -119879,10 +119884,10 @@ sVV
sVV
sVV
sVV
-ltt
-klr
-bNT
-dOW
+wNC
+sfz
+lGh
+xLw
vOy
woh
vgO
@@ -119898,10 +119903,10 @@ vgO
vgO
xAe
vOy
-gTV
-mGk
-xFW
-lrd
+uAP
+rgO
+kak
+nOp
cMz
cMz
cMz
@@ -119915,7 +119920,7 @@ cMz
cMz
gsC
cMz
-usL
+bTY
qLg
iup
ryY
@@ -120069,7 +120074,7 @@ dVn
vwC
fbR
xMz
-xci
+kMV
eON
gxn
vEV
@@ -120078,14 +120083,14 @@ sdv
xMO
wDg
xMz
-waV
+lIY
gxn
-aLh
-aLh
-ltt
-gqv
-hKJ
-nww
+aMy
+aMy
+wNC
+wlr
+xyp
+mnf
vOy
vOy
vOy
@@ -120101,15 +120106,15 @@ vOy
vOy
vOy
vOy
-xvO
-peu
-nww
-ltt
-ssF
-bWx
-bij
-hux
-kfo
+gPA
+eWf
+mnf
+wNC
+gVW
+oQI
+iaO
+vUn
+atJ
rCl
ePM
pzd
@@ -120278,7 +120283,7 @@ sVV
oON
njn
njn
-cva
+daI
njn
njn
ael
@@ -120286,27 +120291,27 @@ ael
agQ
aih
ael
-htF
-bNT
-jvz
-uPB
-uPB
-uPB
-ecz
-uPB
-uPB
-uPB
-uPB
-uPB
-llt
-uPB
-ecz
-uPB
-uPB
-uPB
-riK
-bNT
-hmB
+hyT
+lGh
+iCg
+cGO
+cGO
+cGO
+rpV
+cGO
+cGO
+cGO
+cGO
+cGO
+kaO
+cGO
+rpV
+cGO
+cGO
+cGO
+cDP
+lGh
+tkd
nIN
nIN
rBD
@@ -120474,60 +120479,60 @@ njn
rWz
rWz
rWz
-tvS
+jXN
njn
xVe
sVV
mbx
njn
-orq
-rRb
-qjT
-kRk
+tXa
+gJg
+tSX
+lzt
ael
afE
agT
agT
ael
-qHu
-lOn
-acQ
-acQ
-acQ
-gfv
-gfv
-gfv
-acQ
-gfv
-gfv
-gfv
-acQ
-gfv
-gfv
-gfv
-jRg
-acQ
-acQ
-bNT
-oNa
+ogT
+yiu
+xIj
+xIj
+xIj
+tsn
+tsn
+tsn
+xIj
+tsn
+tsn
+tsn
+xIj
+tsn
+tsn
+tsn
+tsH
+xIj
+xIj
+lGh
+syO
nIN
aGm
gNo
aGm
nIN
-jwM
+uig
xzh
xzh
-jHX
+fje
nIN
-kSL
+aNO
sfT
hGV
nIN
rgL
rgL
rgL
-vMQ
+laD
nIN
upS
jtU
@@ -120683,45 +120688,45 @@ hHe
gxn
ioH
njn
-mNS
+jXk
cGR
-hvq
-pCQ
+wks
+jFM
ael
afH
agV
ain
ael
-bMV
-jao
-tbF
-imM
-imM
-tbF
-imM
-eQh
-mTo
-tCD
-tCD
-tCD
-mTo
-wyE
-imM
-dKD
-imM
-imM
-dKD
-bNT
-enF
+cQC
+poD
+rjr
+aMl
+aMl
+rjr
+aMl
+iSx
+dUR
+kaE
+kaE
+kaE
+dUR
+qvh
+aMl
+xXd
+aMl
+aMl
+xXd
+lGh
+iMD
nIN
nIN
xzh
-wlB
+uVY
nIN
-bBc
+lbO
gNo
xzh
-bBc
+lbO
nIN
uRY
pMA
@@ -120886,18 +120891,18 @@ aGA
kbv
fZo
njn
-nnH
+pKL
jsA
jsA
-eJj
+qTi
ael
afI
agY
oxi
xfm
-tiZ
-gIN
-jvz
+lDH
+vIZ
+iCg
mOi
mOi
mOi
@@ -120913,10 +120918,10 @@ aHq
aHq
aHq
aHq
-klr
-mxg
-qGZ
-bMi
+sfz
+qdJ
+nZK
+mOZ
nIN
xzh
gNo
@@ -121089,18 +121094,18 @@ mAF
ilq
pjj
njn
-dkt
+kCl
cGR
jsA
-xfW
+uqs
ael
afJ
agY
aiq
ajJ
-acQ
-mxg
-acQ
+xIj
+qdJ
+xIj
mOi
rCw
rCw
@@ -121116,18 +121121,18 @@ dgg
xRk
bti
aHq
-rwf
-mxg
-qGZ
-mqd
+wvX
+qdJ
+nZK
+olF
nIN
xzh
-pHj
+lZJ
nIN
-bBc
+lbO
gNo
xzh
-icn
+vwj
nIN
gfN
efj
@@ -121292,18 +121297,18 @@ hZE
kbv
mbx
njn
-gMJ
+ePz
cGR
jsA
-xfW
+uqs
ael
afK
ahc
air
ael
-gar
-mxg
-acQ
+sgH
+qdJ
+xIj
mOi
wCT
sIf
@@ -121319,16 +121324,16 @@ oqv
iqd
rUy
cnS
-klr
-mxg
-pSN
+sfz
+qdJ
+qTS
nIN
nIN
xzh
-iuh
+oIY
nIN
aGm
-vLM
+qoM
xzh
gNo
nIN
@@ -121495,18 +121500,18 @@ laM
kbv
nkH
njn
-eJZ
-rRb
-cXd
-xew
+bVR
+gJg
+sPa
+mSo
ael
afL
ahe
aij
ael
-acQ
-lOn
-acQ
+xIj
+yiu
+xIj
mOi
kbH
kbH
@@ -121522,13 +121527,13 @@ wDy
aGN
dxv
cnS
-riK
-mxg
-kGS
+cDP
+qdJ
+muW
aZv
gNo
gNo
-aBQ
+pga
nIN
nIN
nIN
@@ -121692,13 +121697,13 @@ njn
rWz
rWz
rWz
-tvS
+jXN
njn
hZE
kbv
mbx
njn
-cva
+daI
njn
njn
njn
@@ -121707,9 +121712,9 @@ adO
adO
adO
adO
-frI
-lOn
-oNa
+iWB
+yiu
+syO
mOi
mOi
mOi
@@ -121717,7 +121722,7 @@ mOi
mOi
mOi
asF
-asG
+tLY
iyH
aqU
jVE
@@ -121725,18 +121730,18 @@ nTs
pje
pje
cnT
-meS
-gUk
-naj
+trx
+gnK
+aNE
nIN
nIN
nIN
nIN
nIN
-jwM
-oZn
+uig
+hPL
xzh
-lPW
+dMj
nIN
aDS
aPT
@@ -121745,7 +121750,7 @@ nIN
rgL
rgL
rgL
-vMQ
+laD
nIN
wUJ
vpf
@@ -121795,9 +121800,9 @@ hfa
jwK
wnY
cLC
-eGh
+lyh
rtA
-uKv
+esn
nFK
lEO
xWd
@@ -121841,7 +121846,7 @@ lzq
nyQ
nhx
eiq
-teu
+oEA
wXH
xBQ
mSU
@@ -121903,16 +121908,16 @@ gKd
njn
jsA
jsA
-svV
-rIE
+wET
+gxk
adO
afM
fpR
ahf
adO
-dni
-jao
-acQ
+oDm
+poD
+xIj
aqU
sdl
mLE
@@ -121928,9 +121933,9 @@ rsO
aGN
rbB
cnS
-dKD
-mxg
-jvz
+xXd
+qdJ
+iCg
aUH
aXx
jKI
@@ -122104,18 +122109,18 @@ hmj
kbv
fZo
njn
-ykY
+iSd
jsA
jsA
-tjz
+qbP
adO
afN
ahh
aiw
ahG
-kGS
-mxg
-acQ
+muW
+qdJ
+xIj
aqU
xbN
gfE
@@ -122131,9 +122136,9 @@ liJ
pTj
cnq
cnS
-klr
-jao
-acQ
+sfz
+poD
+xIj
aUH
oyE
mMP
@@ -122307,18 +122312,18 @@ mAF
ilq
pjj
njn
-boU
-nNI
+xqh
+svq
jsA
-veO
+xGI
adO
afO
ahh
aiw
adO
-acQ
-mxg
-acQ
+xIj
+qdJ
+xIj
lmK
lmK
lmK
@@ -122334,9 +122339,9 @@ cnH
kzk
cnR
aHq
-acQ
-mxg
-acQ
+xIj
+qdJ
+xIj
aUH
sIA
gSj
@@ -122345,7 +122350,7 @@ nIN
xzh
gNo
xzh
-bBc
+lbO
nIN
gfN
efj
@@ -122448,7 +122453,7 @@ bNE
wDJ
ivs
nyQ
-dXH
+vqI
vWB
bSK
nyQ
@@ -122510,18 +122515,18 @@ xXT
sVV
tkR
njn
-ipr
-pUL
+ugo
+uTl
cGR
-eQd
+wnb
adO
jkj
ahh
aiw
adO
-ebV
-bNT
-acQ
+eMr
+lGh
+xIj
ioU
pvK
qPE
@@ -122537,9 +122542,9 @@ liJ
hgB
cbn
aHq
-ebV
-qGP
-tzF
+eMr
+gqz
+shC
aUd
ckK
iKM
@@ -122547,8 +122552,8 @@ aHM
nIN
xzh
gNo
-lPW
-vwJ
+dMj
+vNo
nIN
nme
sfT
@@ -122715,16 +122720,16 @@ chb
njn
njn
njn
-htS
+eDe
njn
njn
lFt
ahh
aiw
adO
-qHu
-lOn
-acQ
+ogT
+yiu
+xIj
ioU
qyZ
wTd
@@ -122740,9 +122745,9 @@ liJ
qmP
uoH
aHq
-acQ
-bNT
-acQ
+xIj
+lGh
+xIj
aUH
dbv
lII
@@ -122916,18 +122921,18 @@ cSa
aeA
sjz
hbl
-isB
+qYz
cGR
cGR
jsA
-eoD
+cdZ
aiw
ahh
aiw
nph
-acQ
-jao
-acQ
+xIj
+poD
+xIj
ioU
mSz
nIG
@@ -122943,9 +122948,9 @@ iKf
aGN
qrv
aHq
-hBa
-mxg
-acQ
+vcG
+qdJ
+xIj
aGz
ckd
mQC
@@ -122953,8 +122958,8 @@ aHM
aZv
xzh
xzh
-egQ
-vLM
+kya
+qoM
aZv
wcm
lJY
@@ -123128,9 +123133,9 @@ afP
ahh
aiw
nph
-acQ
-lOn
-acQ
+xIj
+yiu
+xIj
ioU
ioU
ioU
@@ -123146,15 +123151,15 @@ aGN
aGN
pSU
aHq
-qcL
-mxg
-acQ
+upW
+qdJ
+xIj
aGz
drk
mQC
mkG
nIN
-tTE
+qHT
nIN
nIN
nIN
@@ -123238,9 +123243,9 @@ bdl
bdl
bGo
bGo
-bPB
+qjY
pCr
-bRR
+jpD
cpK
cpK
bdl
@@ -123331,9 +123336,9 @@ afQ
aiw
aiw
nph
-acQ
-lOn
-acQ
+xIj
+yiu
+xIj
ioU
lPO
vJg
@@ -123349,15 +123354,15 @@ eEo
aGN
rub
aHq
-gar
-mxg
-acQ
+sgH
+qdJ
+xIj
aGz
eqB
obC
hcf
nIN
-cpQ
+nhN
nIN
lJY
lJY
@@ -123528,15 +123533,15 @@ amF
kmE
aeA
njn
-mtq
+xzx
njn
ahJ
ahJ
ahJ
adO
-acQ
-jao
-acQ
+xIj
+poD
+xIj
ioU
dnS
viN
@@ -123552,15 +123557,15 @@ aRi
aGN
qrv
aHq
-oUO
-mxg
-acQ
+fsh
+qdJ
+xIj
aUH
aGz
aGz
aGz
nIN
-pHj
+lZJ
nIN
lJY
qbx
@@ -123731,15 +123736,15 @@ vOh
gUX
ily
njn
-htS
+eDe
njn
aeC
aeC
aeC
-ybk
-acQ
-jao
-acQ
+mdm
+xIj
+poD
+xIj
ioU
pPM
qKz
@@ -123755,10 +123760,10 @@ xNv
iLO
bUa
aHq
-qHu
-bNT
-acQ
-ybk
+ogT
+lGh
+xIj
+mdm
vcE
vcE
vcE
@@ -123935,14 +123940,14 @@ ajs
aeC
mzS
aeC
-rGc
-izu
-izu
-dRQ
-pBg
-gmZ
-dpN
-txd
+oZI
+fjo
+fjo
+opu
+hlj
+iso
+dPB
+mrO
alL
alL
alL
@@ -123958,14 +123963,14 @@ jvY
alL
alL
alL
-gmZ
-onh
-wJd
-pBg
-pfe
-tiO
-tiO
-roY
+iso
+ceV
+nsH
+hlj
+nvz
+ner
+ner
+vdR
uHr
nuM
vcE
@@ -124136,16 +124141,16 @@ wXh
aeC
ydz
ayb
-tic
-gBZ
-btu
+jxq
+fbV
+msS
asA
asA
-btu
-oOi
-szb
-tiZ
-vnZ
+msS
+nZf
+rho
+lDH
+emL
jvY
jvY
jvY
@@ -124161,16 +124166,16 @@ jvY
jvY
jvY
jvY
-urs
-eEF
-wmH
-oOi
-rao
+gqI
+iCT
+qnH
+nZf
+ohi
yeH
yeH
-rao
-sBK
-mZv
+ohi
+oJK
+qnX
sSl
kkx
vcE
@@ -124339,16 +124344,16 @@ ngl
aeA
ajk
aeA
-xVg
+fXO
aeC
-dwJ
+pdo
nBK
nBK
wYa
-pBg
-vkQ
-brm
-aOw
+hlj
+giW
+mGL
+qXh
jvY
arg
atf
@@ -124364,16 +124369,16 @@ jvY
aMm
aOq
jvY
-biB
-uvq
-cVT
-pBg
+bgM
+puP
+tfF
+hlj
xwX
uHr
uHr
-siS
-aRr
-mJX
+ehm
+nXG
+qYd
lJY
xVS
lJY
@@ -124452,7 +124457,7 @@ mCo
iwZ
jFy
bKA
-mPK
+oNW
dmF
pXV
bNP
@@ -124542,16 +124547,16 @@ nqV
aeA
ajk
ily
-qHA
-qzQ
-qHA
-qnf
+cMx
+fVk
+cMx
+rjX
aeC
-wPm
-ybk
-jkL
-acQ
-nbW
+beN
+mdm
+lLt
+xIj
+oXP
jvY
arh
atm
@@ -124567,16 +124572,16 @@ jvY
nSG
aOs
jvY
-jkL
-jao
-mQF
-ybk
-dJF
+lLt
+poD
+vCv
+mdm
+rmo
vcE
-dAr
-acB
-cWo
-acB
+uul
+yat
+qLk
+yat
cBb
xVS
lJY
@@ -124745,16 +124750,16 @@ wXh
aeC
ajs
qon
-qHA
-obJ
+cMx
+gqx
aep
ggQ
ggQ
aME
aep
-jkL
-jnx
-iPK
+lLt
+kXD
+eol
jvY
ari
aoP
@@ -124770,16 +124775,16 @@ axo
atm
aOr
jvY
-jkL
-jao
-mQF
+lLt
+poD
+vCv
aep
aME
ggQ
aME
aep
-hog
-acB
+dcX
+yat
dHe
kUV
vcE
@@ -124948,16 +124953,16 @@ aeC
aeC
ajs
aeC
-qHA
-qii
+cMx
+qbw
aep
afj
afk
agM
aep
-jkL
-tbD
-fDk
+lLt
+jrc
+wdE
jvY
arj
atm
@@ -124973,16 +124978,16 @@ bzD
atm
aOs
jvY
-jkL
-lOn
-mQF
+lLt
+yiu
+vCv
aep
aHS
afk
sHo
aep
-vmu
-acB
+cnm
+yat
vcE
kUV
vcE
@@ -125151,16 +125156,16 @@ aeC
aeA
ajk
aeA
-qHA
-qii
+cMx
+qbw
aep
afk
afk
afk
aep
-jkL
-tbD
-fDk
+lLt
+jrc
+wdE
jvY
ark
atm
@@ -125176,16 +125181,16 @@ axo
atm
thv
jvY
-jkL
-lOn
-mQF
+lLt
+yiu
+vCv
aep
afk
aHl
afk
aep
-hLt
-acB
+rZZ
+yat
lJY
itR
kKR
@@ -125354,16 +125359,16 @@ asA
amF
ohL
aeA
-qHA
-vle
+cMx
+oVo
aep
aep
aep
aep
aep
-nbY
-wLT
-oAp
+umI
+ddO
+sRC
jvY
alL
atk
@@ -125379,16 +125384,16 @@ jvY
aAy
alL
jvY
-nbY
-hqx
-nbY
+umI
+juj
+umI
aep
aep
aep
aep
aep
-ddF
-acB
+lla
+yat
lJY
ucw
dcp
@@ -125557,16 +125562,16 @@ ntI
aeA
aeC
puO
-qHA
-qii
-eRG
+cMx
+qbw
+xnh
aep
aep
aep
aep
-fes
-vpi
-xCS
+sHI
+cNC
+cla
jvY
arl
atm
@@ -125582,16 +125587,16 @@ alL
aMo
aOt
jvY
-fes
-qKU
-jhm
+sHI
+lOn
+wCe
oIB
jgr
-qUG
+cXz
rtc
oIB
-vmu
-acB
+cnm
+yat
lJY
uxC
lJY
@@ -125754,22 +125759,22 @@ atr
aeC
atr
aeC
-qHA
-qHA
-qHA
-qHA
+cMx
+cMx
+cMx
+cMx
mRI
-qHA
-qHA
-qii
-hja
-qHA
-qHA
-qHA
-qHA
-fes
-vpi
-xCS
+cMx
+cMx
+qbw
+rYU
+cMx
+cMx
+cMx
+cMx
+sHI
+cNC
+cla
jvY
abF
atm
@@ -125785,17 +125790,17 @@ aIT
atm
aVF
jvY
-fes
-wZp
-amc
+sHI
+aPC
+pKH
oIB
fXE
kaS
aiQ
oIB
-vmu
-acB
-acB
+cnm
+yat
+yat
kNq
kNq
qDB
@@ -125957,22 +125962,22 @@ atr
aeC
atr
aeC
-qHA
-hEj
-cvi
-qHA
+cMx
+jrC
+jYa
+cMx
wFX
-qHA
-ncV
-qii
-vle
-qHA
-vle
-vle
-qHA
-pqv
-gqf
-xCS
+cMx
+kqa
+qbw
+oVo
+cMx
+oVo
+oVo
+cMx
+nSw
+pqY
+cla
jvY
jvY
jvY
@@ -125988,17 +125993,17 @@ jvY
jvY
jvY
jvY
-xeq
-qKU
-iZz
+sjG
+lOn
+qhT
oIB
wqr
bZw
xUV
oIB
-vmu
-vDR
-acB
+cnm
+cjm
+yat
toD
wDq
aPO
@@ -126160,22 +126165,22 @@ atu
azU
aeC
ldl
-qHA
-qii
-stA
-qHA
+cMx
+qbw
+iAI
+cMx
tvA
-qHA
-oTc
-nwT
-ocI
-mfH
-nwT
-nwT
-mfH
-kjX
-gqf
-xCS
+cMx
+iml
+fIK
+kZc
+wuS
+fIK
+fIK
+wuS
+tzF
+pqY
+cla
alL
urM
dBG
@@ -126191,17 +126196,17 @@ jvY
wjv
fDG
alL
-fes
-wZp
-kjX
+sHI
+aPC
+tzF
qgK
tEB
uBM
dXo
oIB
-xPu
-uOE
-acB
+fME
+kon
+yat
swG
jei
aPO
@@ -126363,22 +126368,22 @@ taw
taw
mRI
taw
-qHA
-wpT
-stA
-qHA
+cMx
+vPT
+iAI
+cMx
wTn
-qHA
-nQw
-qii
-wjP
-qHA
-vle
-vle
-qHA
-gbR
-vpi
-chC
+cMx
+cLd
+qbw
+pTI
+cMx
+oVo
+oVo
+cMx
+nWf
+cNC
+igC
aqe
amw
anO
@@ -126394,17 +126399,17 @@ arq
anO
qaV
kwd
-usi
-qKU
-iZz
+acQ
+lOn
+qhT
oIB
wKF
hzb
ltU
oIB
-juG
-eDk
-acB
+wSB
+gAO
+yat
bCR
jei
aPO
@@ -126566,22 +126571,22 @@ qlu
taw
wTn
kCu
-qHA
-uPN
-stA
-qHA
+cMx
+sdd
+iAI
+cMx
wFX
-qHA
-lsh
-qii
-hja
-qHA
-vle
-hja
-qHA
-bwN
-gxR
-lCc
+cMx
+nDH
+qbw
+rYU
+cMx
+oVo
+rYU
+cMx
+nXV
+wHr
+vGi
aqg
arr
atn
@@ -126597,17 +126602,17 @@ atn
atn
aOB
aRj
-dZR
-kWc
-cwL
+rUN
+hft
+swn
oIB
phj
vEf
cNK
oIB
-hFt
-lxJ
-oFU
+xiW
+mCg
+ryJ
aPO
aPO
aPO
@@ -126769,22 +126774,22 @@ rWb
taw
oAK
kCu
-qHA
-qzQ
-qHA
-qHA
+cMx
+fVk
+cMx
+cMx
tvA
-qHA
-vle
-qii
-vle
-qHA
-cap
-fiN
-qHA
-fes
-kzR
-ngF
+cMx
+oVo
+qbw
+oVo
+cMx
+iVz
+rAS
+cMx
+sHI
+tof
+jao
kwd
amA
atq
@@ -126800,17 +126805,17 @@ atq
atq
aoT
kwd
-usi
-kzR
-jhm
+acQ
+tof
+wCe
oIB
cHC
dha
pxj
oIB
-juG
-fmX
-acB
+wSB
+hYj
+yat
fPF
jei
nNT
@@ -126977,17 +126982,17 @@ oQL
gqt
oxy
oxy
-pFJ
-qii
-qii
-vle
-qHA
-qHA
-qHA
-qHA
-fes
-kzR
-lCf
+vTE
+qbw
+qbw
+oVo
+cMx
+cMx
+cMx
+cMx
+sHI
+tof
+eLV
alO
ars
amx
@@ -127003,9 +127008,9 @@ amx
amx
aOC
alO
-fes
-kzR
-iZz
+sHI
+tof
+qhT
loP
loP
loP
@@ -127089,7 +127094,7 @@ dJG
sZe
bdl
ntd
-hgO
+jCm
eqb
mLR
hdE
@@ -127173,24 +127178,24 @@ fTl
wIu
wXJ
taw
-ldz
+oNK
kMa
qIa
iSB
oxy
oQL
hdy
-qHA
-vle
-qii
-vle
-qHA
-liF
-wPR
-qHA
-cui
-kzR
-lCf
+cMx
+oVo
+qbw
+oVo
+cMx
+oaP
+jhQ
+cMx
+kYb
+tof
+eLV
inw
amA
amx
@@ -127206,9 +127211,9 @@ atq
amx
aoT
inw
-fes
-kzR
-hPr
+sHI
+tof
+nii
loP
iwB
tOC
@@ -127383,17 +127388,17 @@ iKV
oxy
oQL
oFr
-qHA
-mUL
-qii
-vle
-qHA
-vle
-vle
-qHA
-fes
-kzR
-bLg
+cMx
+xnX
+qbw
+oVo
+cMx
+oVo
+oVo
+cMx
+sHI
+tof
+ycA
aqj
arw
anP
@@ -127409,9 +127414,9 @@ atq
atq
wwJ
inw
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
loP
joG
sDu
@@ -127586,17 +127591,17 @@ qAG
oxy
kMa
gQu
-qHA
-lsh
-qii
-wjP
-qHA
-vle
-vle
-qHA
-gbR
-kzR
-xCS
+cMx
+nDH
+qbw
+pTI
+cMx
+oVo
+oVo
+cMx
+nWf
+tof
+cla
inw
qHM
emn
@@ -127612,9 +127617,9 @@ amx
amx
aBs
inw
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
loP
kxo
wSn
@@ -127789,17 +127794,17 @@ ydf
oxy
wOv
ixu
-qHA
-uxW
-qii
-qii
-pFJ
-qii
-qii
-pFJ
-bKU
-kzR
-xsX
+cMx
+tNY
+qbw
+qbw
+vTE
+qbw
+qbw
+vTE
+kGS
+tof
+dFB
alO
alO
alO
@@ -127815,9 +127820,9 @@ atq
atq
aBs
alO
-fes
-kzR
-bKU
+sHI
+tof
+kGS
fTF
xBY
xBY
@@ -127992,17 +127997,17 @@ cnP
oxy
wOv
qlu
-qHA
-xLm
-qii
-vle
-qHA
-vle
-vle
-lnD
-fes
-kzR
-iea
+cMx
+qbU
+qbw
+oVo
+cMx
+oVo
+oVo
+btb
+sHI
+tof
+sJN
alO
gKZ
vTv
@@ -128018,9 +128023,9 @@ atq
atq
aBs
alO
-pvE
-vpi
-iZz
+uSk
+cNC
+qhT
gdS
wSn
kXN
@@ -128195,17 +128200,17 @@ lUQ
oxy
tBU
iDs
-qHA
-xLm
-qii
-hja
-qHA
-kLZ
-tty
-lnD
-fes
-kzR
-iea
+cMx
+qbU
+qbw
+rYU
+cMx
+pVh
+mSl
+btb
+sHI
+tof
+sJN
alO
arz
atq
@@ -128221,15 +128226,15 @@ auB
atc
aOF
alO
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
gdS
lBg
dXd
loP
loP
-eMh
+xeU
loP
loP
kNq
@@ -128393,22 +128398,22 @@ mOE
gUG
oxy
oQL
-qHA
-qHA
-qzQ
-qHA
-qHA
-qHA
-gDF
-qii
-vle
-qHA
-qHA
-qHA
-qHA
-fes
-kzR
-iea
+cMx
+cMx
+fVk
+cMx
+cMx
+cMx
+uyQ
+qbw
+oVo
+cMx
+cMx
+cMx
+cMx
+sHI
+tof
+sJN
alO
arz
atq
@@ -128424,9 +128429,9 @@ aIU
aMq
aOG
alO
-fes
-kzR
-iZz
+sHI
+tof
+qhT
loP
loP
loP
@@ -128436,10 +128441,10 @@ vyI
lPB
oHl
jWh
-acB
-hJe
-acB
-acB
+yat
+rXq
+yat
+yat
kNq
kNq
kNq
@@ -128596,22 +128601,22 @@ oxy
bCv
oxy
oQL
-qHA
-gCQ
-rEs
-tvr
-qHA
-lsh
-vle
-qii
-vle
-aYU
-uxs
-iQG
-qHA
-fes
-kzR
-iea
+cMx
+aOS
+gNI
+eTm
+cMx
+nDH
+oVo
+qbw
+oVo
+oDa
+yfn
+nkc
+cMx
+sHI
+tof
+sJN
alO
arz
atq
@@ -128627,9 +128632,9 @@ xBe
xBe
xBe
xBe
-fes
-kzR
-iZz
+sHI
+tof
+qhT
jWh
eFK
wGd
@@ -128639,10 +128644,10 @@ hSk
hSk
uIv
jWh
-jZj
-sRP
-oko
-acB
+dnh
+bct
+iDa
+yat
tiY
qAK
xGK
@@ -128799,23 +128804,23 @@ oQL
qmq
oQL
nXo
-qHA
-gCQ
-bNc
-tCC
-qHA
-ftG
-vle
-qii
-vle
-vle
-vle
-keE
-qHA
-pvE
-kzR
-iea
-xnR
+cMx
+aOS
+guP
+mHT
+cMx
+kpL
+oVo
+qbw
+oVo
+oVo
+oVo
+iIU
+cMx
+uSk
+tof
+sJN
+xHt
arm
ats
auO
@@ -128830,9 +128835,9 @@ aIV
qqr
arH
xBe
-fes
-kzR
-iZz
+sHI
+tof
+qhT
vXd
duF
hSk
@@ -128842,10 +128847,10 @@ hSk
hSk
uIv
jWh
-eHz
-juG
-tMT
-acB
+tFJ
+wSB
+uBG
+yat
jei
ltm
oAT
@@ -128998,26 +129003,26 @@ aag
aag
fTl
oxy
-qHA
-qHA
-xcs
-qHA
-qHA
-utC
-qii
-ikC
-vRJ
-gNQ
-laP
-gNQ
-gNQ
-gNQ
-gNQ
-gNQ
-xDG
-jlO
-qpH
-iSu
+cMx
+cMx
+orx
+cMx
+cMx
+dtu
+qbw
+txf
+ncx
+whO
+pJS
+whO
+whO
+whO
+whO
+whO
+bYL
+dlT
+qHD
+qSp
alO
arA
att
@@ -129033,9 +129038,9 @@ azo
aJg
abR
xBe
-fes
-kzR
-jhm
+sHI
+tof
+wCe
jWh
oih
khE
@@ -129045,10 +129050,10 @@ vyI
kpQ
vSE
jWh
-nwA
-xZz
-kRN
-acB
+dhA
+iWn
+mnB
+yat
jei
ltm
ejj
@@ -129201,26 +129206,26 @@ aag
aag
fTl
oxy
-qHA
-tZM
-qEZ
-frV
-qHA
-gCQ
-uqJ
-vbu
-qHA
-qHA
-qHA
-qzQ
-qHA
-qHA
-qHA
-qHA
-qHA
-gbR
-kzR
-iZz
+cMx
+cMH
+qvF
+lat
+cMx
+aOS
+tlM
+dan
+cMx
+cMx
+cMx
+fVk
+cMx
+cMx
+cMx
+cMx
+cMx
+nWf
+tof
+qhT
wDM
wDM
wDM
@@ -129236,9 +129241,9 @@ atv
auV
amE
xBe
-fes
-kzR
-iZz
+sHI
+tof
+qhT
jWh
jWh
uUz
@@ -129248,10 +129253,10 @@ qbZ
jWh
jWh
jWh
-fQl
-juG
-nGZ
-acB
+tFO
+wSB
+flD
+yat
xQe
jei
lVR
@@ -129404,15 +129409,15 @@ aag
aag
fTl
lmq
-qHA
-mDz
-pIf
-uwf
-qHA
-gCQ
-rEs
-bhZ
-qHA
+cMx
+rBY
+pTY
+ueY
+cMx
+aOS
+gNI
+aPg
+cMx
uiG
rTZ
tfb
@@ -129421,9 +129426,9 @@ tfb
tfb
tfb
ptK
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
wDM
aOM
aoW
@@ -129439,9 +129444,9 @@ atv
auV
amE
xBe
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
xXa
xXa
@@ -129451,10 +129456,10 @@ cKL
jbH
rJh
jWh
-rJY
-dPl
-qQG
-acB
+pld
+vhb
+tie
+yat
cfm
jei
oSR
@@ -129607,15 +129612,15 @@ aag
aag
fTl
oxy
-qHA
-qHA
-qHA
-qHA
-qHA
-qHA
-qzQ
-qHA
-qHA
+cMx
+cMx
+cMx
+cMx
+cMx
+cMx
+fVk
+cMx
+cMx
bNM
wkX
jhx
@@ -129624,9 +129629,9 @@ jhx
jhx
dnH
gpc
-kjX
-gqf
-iZz
+tzF
+pqY
+qhT
wDM
uto
aoX
@@ -129642,9 +129647,9 @@ nNY
qKi
abR
xBe
-pvE
-gxR
-kjX
+uSk
+wHr
+tzF
dEt
soP
pDr
@@ -129654,10 +129659,10 @@ soP
eoG
uIv
jWh
-acB
-hJe
-acB
-acB
+yat
+rXq
+yat
+yat
kNq
fJp
ekz
@@ -129827,9 +129832,9 @@ nwU
owg
owg
ptK
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
wDM
aOQ
fxI
@@ -129845,9 +129850,9 @@ azp
qJf
anV
xBe
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
iqH
khE
@@ -130030,9 +130035,9 @@ eNi
eNi
eNi
eNi
-fes
-kzR
-jhm
+sHI
+tof
+wCe
wDM
aOH
aJf
@@ -130048,9 +130053,9 @@ xBe
xBe
xBe
xBe
-fes
-vpi
-rXV
+sHI
+cNC
+xmP
jWh
jWh
jlQ
@@ -130233,9 +130238,9 @@ olO
wiG
nWN
eNi
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
wDM
wDM
wDM
@@ -130251,9 +130256,9 @@ aJh
arq
ufx
alR
-fes
-vpi
-jhm
+sHI
+cNC
+wCe
jWh
hSk
hSk
@@ -130436,9 +130441,9 @@ ueG
rPt
jyE
eNi
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
hwC
rcS
amx
@@ -130454,9 +130459,9 @@ aJi
azs
atq
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jlQ
tst
uUe
@@ -130639,9 +130644,9 @@ iKD
rPt
rPt
eNi
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
alR
amA
atq
@@ -130657,9 +130662,9 @@ aJj
aMD
atq
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jlQ
tZZ
gLz
@@ -130842,9 +130847,9 @@ eNi
eNi
gIh
eNi
-iIQ
-kzR
-iZz
+hGb
+tof
+qhT
alR
amA
atq
@@ -130860,9 +130865,9 @@ amA
ayl
amx
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
jmQ
vcu
@@ -131045,9 +131050,9 @@ aWb
dyK
vzK
wYY
-fes
-kzR
-iZz
+sHI
+tof
+qhT
alR
amA
atq
@@ -131063,9 +131068,9 @@ aJl
amx
atq
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jlQ
snE
sGL
@@ -131248,9 +131253,9 @@ tii
eJX
sAC
wYY
-fes
-kzR
-iZz
+sHI
+tof
+qhT
alR
amA
amx
@@ -131266,9 +131271,9 @@ aJk
amx
atq
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jlQ
tZZ
cBj
@@ -131451,9 +131456,9 @@ sjj
fzP
sAC
wYY
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
alR
amA
atq
@@ -131469,9 +131474,9 @@ xEO
xEO
lnP
alR
-fes
-vpi
-jhm
+sHI
+cNC
+wCe
jWh
qLs
qLs
@@ -131654,9 +131659,9 @@ fcM
uzE
qsL
nim
-prV
-gqf
-iZz
+noe
+pqY
+qhT
alR
amA
atq
@@ -131672,9 +131677,9 @@ iWR
iWR
kbx
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
jWh
jlQ
@@ -131857,9 +131862,9 @@ xlC
gyO
kTN
eNi
-pvE
-vpi
-iZz
+uSk
+cNC
+qhT
alR
amA
atq
@@ -131875,9 +131880,9 @@ xEO
xEO
aOV
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
wFQ
bop
@@ -132060,9 +132065,9 @@ oNb
iFC
qAA
eNi
-fes
-kzR
-iZz
+sHI
+tof
+qhT
alR
arK
atc
@@ -132078,9 +132083,9 @@ aJq
aMG
aOW
alR
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
bXy
bop
@@ -132180,7 +132185,7 @@ oGh
far
vDo
nnr
-lQl
+rKt
ljv
ljv
sUi
@@ -132263,9 +132268,9 @@ eNi
eNi
eNi
eNi
-fes
-kzR
-iZz
+sHI
+tof
+qhT
alO
alO
alO
@@ -132281,9 +132286,9 @@ alO
alO
alO
alO
-fes
-vpi
-iZz
+sHI
+cNC
+qhT
jWh
wFQ
bop
@@ -132466,9 +132471,9 @@ dWX
owg
owg
ptK
-bZq
-hfc
-jgS
+knU
+oOZ
+hdP
aqq
aPa
eky
@@ -132484,9 +132489,9 @@ eky
eky
aPa
aqq
-bZq
-hfc
-lBf
+knU
+oOZ
+doX
jWh
xXa
xXa
@@ -132669,9 +132674,9 @@ keR
jhx
keR
dwI
-kjX
-jae
-tGW
+tzF
+eIY
+vER
hal
uYg
nau
@@ -132687,9 +132692,9 @@ uYg
nau
uYg
hal
-rrG
-jae
-kjX
+sVv
+eIY
+tzF
mPh
soP
tWi
@@ -132872,9 +132877,9 @@ kPG
kPG
cVw
ptK
-iOP
-xjI
-fzm
+eJg
+bkb
+pvi
aqq
eky
aNl
@@ -132890,9 +132895,9 @@ eky
aNl
eky
aqq
-iOP
-xSl
-fzm
+eJg
+lqL
+pvi
jWh
tim
uWV
@@ -132975,7 +132980,7 @@ lKM
sqg
nSq
oBr
-eSc
+sKf
gdJ
cjt
pRZ
@@ -133075,9 +133080,9 @@ ucp
cIW
ptK
ptK
-qDX
-sDe
-qDX
+xga
+kgV
+xga
aHe
jlT
exi
@@ -134499,7 +134504,7 @@ haO
iYm
fLl
fLl
-vjd
+wRk
eky
wZX
vUh
@@ -134513,7 +134518,7 @@ aHe
svf
wZX
eky
-quy
+wuk
eZm
eZm
bjt
@@ -134600,7 +134605,7 @@ sqg
ppM
eTb
hbs
-vZU
+xJV
elx
jnI
oJk
@@ -140849,15 +140854,15 @@ fmv
ubA
gMN
mRn
-itf
-mHE
-vAU
-qwJ
-fJY
-kzT
+dJO
+vMt
+dkz
+aGk
+ktQ
+teZ
wkM
-oLm
-fcX
+wHX
+hWP
kKv
kKv
dGl
@@ -141255,15 +141260,15 @@ awu
ydI
aKs
fMt
-gOs
-kXj
-pYi
-fMl
-gUN
-bLv
+mEs
+gbm
+gCx
+lFj
+vyE
+bha
wkM
-xvM
-osy
+qNc
+jdl
cBm
cBm
iZw
diff --git a/tgui/packages/tgui/interfaces/Cryo.jsx b/tgui/packages/tgui/interfaces/Cryo.jsx
index 338717f2d0ca..be1dce801ada 100644
--- a/tgui/packages/tgui/interfaces/Cryo.jsx
+++ b/tgui/packages/tgui/interfaces/Cryo.jsx
@@ -34,6 +34,11 @@ export const Cryo = () => {
const CryoContent = (props) => {
const { act, data } = useBackend();
+
+ let soundicon = 'volume-high';
+ if (!data.notify) {
+ soundicon = 'volume-xmark';
+ }
return (
<>
@@ -89,12 +94,30 @@ const CryoContent = (props) => {
icon="eject"
disabled={!data.hasOccupant}
onClick={() => act('eject')}
- content="eject patient"
+ content="Eject Patient"
/>