"
+ update_icon()
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index bce7051abb1c..b210dbac2947 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -1266,6 +1266,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list(
//Damage and destruction acts
/obj/structure/machinery/power/apc/emp_act(severity)
+ . = ..()
if(cell)
cell.emp_act(severity)
lighting = 0
@@ -1274,7 +1275,6 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list(
spawn(1 MINUTES)
equipment = 3
environ = 3
- ..()
/obj/structure/machinery/power/apc/ex_act(severity)
switch(severity)
diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm
index 992e0f3464ff..31a096a3a2ee 100644
--- a/code/modules/power/cell.dm
+++ b/code/modules/power/cell.dm
@@ -71,12 +71,12 @@
/obj/item/cell/emp_act(severity)
+ . = ..()
charge -= 1000 / severity
if (charge < 0)
charge = 0
if(reliability != 100 && prob(50/severity))
reliability -= 10 / severity
- ..()
/obj/item/cell/ex_act(severity)
diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm
index ac19d1ba0c67..0e469a7fe577 100644
--- a/code/modules/power/smes.dm
+++ b/code/modules/power/smes.dm
@@ -390,6 +390,7 @@
/obj/structure/machinery/power/smes/emp_act(severity)
+ . = ..()
outputting = 0
inputting = 0
output_level = 0
@@ -400,7 +401,6 @@
output_level = initial(output_level)
inputting = initial(inputting)
outputting = initial(outputting)
- ..()
diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm
index bd1b546dcf8c..8d7ab1532ade 100644
--- a/code/modules/projectiles/gun.dm
+++ b/code/modules/projectiles/gun.dm
@@ -480,6 +480,7 @@
/obj/item/weapon/gun/emp_act(severity)
+ . = ..()
for(var/obj/O in contents)
O.emp_act(severity)
diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm
index adca6a7cce6f..ee122d8f8edd 100644
--- a/code/modules/projectiles/guns/energy.dm
+++ b/code/modules/projectiles/guns/energy.dm
@@ -66,9 +66,9 @@
overlays += charge_icon + "_0"
/obj/item/weapon/gun/energy/emp_act(severity)
+ . = ..()
cell.use(round(cell.maxcharge / severity))
update_icon()
- ..()
/obj/item/weapon/gun/energy/load_into_chamber()
if(!cell || cell.charge < charge_cost)
diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm
index 9f0d37e00bc6..1cab3e0d8061 100644
--- a/code/modules/recycling/disposal.dm
+++ b/code/modules/recycling/disposal.dm
@@ -221,7 +221,7 @@
update()
///Attempt to move while inside
-/obj/structure/machinery/disposal/relaymove(mob/user)
+/obj/structure/machinery/disposal/relaymove(mob/living/user)
if(user.is_mob_incapacitated(TRUE) || flushing)
return FALSE
if(user.loc == src)
diff --git a/code/modules/shuttle/computers/escape_pod_computer.dm b/code/modules/shuttle/computers/escape_pod_computer.dm
index eb81a4a98a8a..ec523747e18d 100644
--- a/code/modules/shuttle/computers/escape_pod_computer.dm
+++ b/code/modules/shuttle/computers/escape_pod_computer.dm
@@ -209,7 +209,6 @@
/obj/structure/machinery/door/airlock/evacuation
name = "\improper Evacuation Airlock"
icon = 'icons/obj/structures/doors/pod_doors.dmi'
- heat_proof = 1
unslashable = TRUE
unacidable = TRUE
var/obj/docking_port/mobile/crashable/escape_shuttle/linked_shuttle
diff --git a/code/modules/shuttle/helpers.dm b/code/modules/shuttle/helpers.dm
index 1d841581faa0..6ab5d88da1b7 100644
--- a/code/modules/shuttle/helpers.dm
+++ b/code/modules/shuttle/helpers.dm
@@ -117,7 +117,7 @@
var/list/door_turfs = list(get_turf(air))
if(istype(air, /obj/structure/machinery/door/airlock/multi_tile))
var/obj/structure/machinery/door/airlock/multi_tile/multi_door = air
- door_turfs = multi_door.get_filler_turfs()
+ door_turfs = multi_door.locate_filler_turfs()
for(var/turf/door_turf in door_turfs)
bump_at_turf(door_turf)
diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm
index e1c2bb9a1f9a..ee91c9b9e5d4 100644
--- a/code/modules/shuttle/shuttles/dropship.dm
+++ b/code/modules/shuttle/shuttles/dropship.dm
@@ -234,8 +234,8 @@
/obj/docking_port/stationary/marine_dropship/on_departure(obj/docking_port/mobile/departing_shuttle)
. = ..()
turn_off_landing_lights()
- var/obj/docking_port/mobile/marine_dropship/shuttle = departing_shuttle
- for(var/obj/structure/dropship_equipment/eq as anything in shuttle.equipments)
+ var/obj/docking_port/mobile/marine_dropship/dropship = departing_shuttle
+ for(var/obj/structure/dropship_equipment/eq as anything in dropship.equipments)
eq.on_launch()
/obj/docking_port/stationary/marine_dropship/lz1
diff --git a/code/modules/shuttles/marine_ferry.dm b/code/modules/shuttles/marine_ferry.dm
index 032294a45b39..79988bbb8da3 100644
--- a/code/modules/shuttles/marine_ferry.dm
+++ b/code/modules/shuttles/marine_ferry.dm
@@ -58,7 +58,7 @@
for(var/obj/vehicle/multitile/M in D.loc)
if(M) return 0
- for(var/turf/T in D.get_filler_turfs())
+ for(var/turf/T in D.locate_filler_turfs())
for(var/obj/vehicle/multitile/M in T)
if(M) return 0
diff --git a/code/modules/vehicles/interior/interactable/vehicle_locker.dm b/code/modules/vehicles/interior/interactable/vehicle_locker.dm
index ab536c7637c6..5571995594f0 100644
--- a/code/modules/vehicles/interior/interactable/vehicle_locker.dm
+++ b/code/modules/vehicles/interior/interactable/vehicle_locker.dm
@@ -117,8 +117,8 @@
return container.attackby(W, user)
/obj/structure/vehicle_locker/emp_act(severity)
+ . = ..()
container.emp_act(severity)
- ..()
/obj/structure/vehicle_locker/hear_talk(mob/M, msg)
container.hear_talk(M, msg)
diff --git a/code/modules/vehicles/multitile/multitile_bump.dm b/code/modules/vehicles/multitile/multitile_bump.dm
index d9b480866f99..1f9e7897b0d3 100644
--- a/code/modules/vehicles/multitile/multitile_bump.dm
+++ b/code/modules/vehicles/multitile/multitile_bump.dm
@@ -106,14 +106,12 @@
return TRUE
/obj/structure/surface/handle_vehicle_bump(obj/vehicle/multitile/V)
- detach_all()
playsound(V, 'sound/effects/metal_crash.ogg', 20)
visible_message(SPAN_DANGER("\The [V] crushes \the [src]!"))
qdel(src)
return TRUE
/obj/structure/surface/table/handle_vehicle_bump(obj/vehicle/multitile/V)
- detach_all()
playsound(V, 'sound/effects/metal_crash.ogg', 20)
visible_message(SPAN_DANGER("\The [V] crushes \the [src]!"))
if(prob(50))
@@ -122,7 +120,6 @@
return TRUE
/obj/structure/surface/rack/handle_vehicle_bump(obj/vehicle/multitile/V)
- detach_all()
playsound(V, 'sound/effects/metal_crash.ogg', 20)
visible_message(SPAN_DANGER("\The [V] crushes \the [src]!"))
deconstruct()
@@ -740,7 +737,7 @@
//BURROWER
/mob/living/carbon/xenomorph/burrower/handle_vehicle_bump(obj/vehicle/multitile/V)
- if(burrow)
+ if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED))
return TRUE
else
return . = ..()
diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm
index 5192a6834050..2239329d3e44 100644
--- a/code/modules/vehicles/vehicle.dm
+++ b/code/modules/vehicles/vehicle.dm
@@ -112,6 +112,7 @@
return
/obj/vehicle/emp_act(severity)
+ . = ..()
var/was_on = on
stat |= EMPED
new /obj/effect/overlay/temp/emp_sparks (loc)
diff --git a/colonialmarines.dme b/colonialmarines.dme
index 974e30b7a64c..29d7b5e1969a 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -125,6 +125,7 @@
#include "code\__DEFINES\dcs\signals\signals_global.dm"
#include "code\__DEFINES\dcs\signals\signals_subsystem.dm"
#include "code\__DEFINES\dcs\signals\atom\signals_atom.dm"
+#include "code\__DEFINES\dcs\signals\atom\signals_cell.dm"
#include "code\__DEFINES\dcs\signals\atom\signals_item.dm"
#include "code\__DEFINES\dcs\signals\atom\signals_movable.dm"
#include "code\__DEFINES\dcs\signals\atom\signals_obj.dm"
@@ -375,6 +376,7 @@
#include "code\datums\components\armor_link.dm"
#include "code\datums\components\bad_leg.dm"
#include "code\datums\components\bonus_damage_stack.dm"
+#include "code\datums\components\cell.dm"
#include "code\datums\components\cluster_stack.dm"
#include "code\datums\components\connect_mob_behalf.dm"
#include "code\datums\components\crate_tag.dm"
diff --git a/html/changelogs/AutoChangeLog-pr-4863.yml b/html/changelogs/AutoChangeLog-pr-4863.yml
deleted file mode 100644
index 3fb781dcb8be..000000000000
--- a/html/changelogs/AutoChangeLog-pr-4863.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - bugfix: "Fixed imaginary friend merge ability preventing hearing if ghost ears are set to only nearby."
- - bugfix: "Fixed imaginary friend hide ability not updating its icons."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4872.yml b/html/changelogs/AutoChangeLog-pr-4872.yml
deleted file mode 100644
index 2d08135f4a9f..000000000000
--- a/html/changelogs/AutoChangeLog-pr-4872.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Drathek"
-delete-after: True
-changes:
- - bugfix: "Fixed fax template images in CDN mode"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4874.yml b/html/changelogs/AutoChangeLog-pr-4874.yml
new file mode 100644
index 000000000000..27ca1368c5f5
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4874.yml
@@ -0,0 +1,4 @@
+author: "Releasethesea"
+delete-after: True
+changes:
+ - rscadd: "Adds functional bedrolls to the game."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4879.yml b/html/changelogs/AutoChangeLog-pr-4879.yml
new file mode 100644
index 000000000000..cede9d3da3ff
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4879.yml
@@ -0,0 +1,4 @@
+author: "fira"
+delete-after: True
+changes:
+ - bugfix: "Fixed an issue in traits backend update causing among others leadership action buttons to be missing."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4882.yml b/html/changelogs/AutoChangeLog-pr-4882.yml
new file mode 100644
index 000000000000..c7fb30820171
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4882.yml
@@ -0,0 +1,4 @@
+author: "BraveMole, Zonespace"
+delete-after: True
+changes:
+ - bugfix: "Guns should no longer very rarely jam mid-burst."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4884.yml b/html/changelogs/AutoChangeLog-pr-4884.yml
new file mode 100644
index 000000000000..78950c4b43e9
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4884.yml
@@ -0,0 +1,4 @@
+author: "Releasethesea"
+delete-after: True
+changes:
+ - rscadd: "Adds Colonial Space Grunts to rec vend aswell as several pens and Dice for playing the game."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4890.yml b/html/changelogs/AutoChangeLog-pr-4890.yml
new file mode 100644
index 000000000000..a97e5129371c
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4890.yml
@@ -0,0 +1,4 @@
+author: "Birdtalon"
+delete-after: True
+changes:
+ - rscadd: "Observer with Security HUD enabled can examine and read security records."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4891.yml b/html/changelogs/AutoChangeLog-pr-4891.yml
new file mode 100644
index 000000000000..171d7447fa24
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4891.yml
@@ -0,0 +1,4 @@
+author: "Birdtalon"
+delete-after: True
+changes:
+ - rscadd: "Toggle HUD button to ghost UI"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4893.yml b/html/changelogs/AutoChangeLog-pr-4893.yml
new file mode 100644
index 000000000000..b07b3b6f66d3
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4893.yml
@@ -0,0 +1,4 @@
+author: "Birdtalon"
+delete-after: True
+changes:
+ - code_imp: "Replaces burrow var from Xenomorph with burrowed trait"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4894.yml b/html/changelogs/AutoChangeLog-pr-4894.yml
new file mode 100644
index 000000000000..c55c2cdc4086
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4894.yml
@@ -0,0 +1,4 @@
+author: "BeagleGaming1"
+delete-after: True
+changes:
+ - rscdel: "Removes icon baking on surfaces (primarily seen on tables)"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4897.yml b/html/changelogs/AutoChangeLog-pr-4897.yml
new file mode 100644
index 000000000000..2afee7c29f7f
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4897.yml
@@ -0,0 +1,5 @@
+author: "Birdtalon"
+delete-after: True
+changes:
+ - bugfix: "Boiler acid shroud now works on hotkey 5"
+ - code_imp: "Replaces single letter vars and removes unused code for boiler."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4899.yml b/html/changelogs/AutoChangeLog-pr-4899.yml
new file mode 100644
index 000000000000..3fbcc6ec0be8
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4899.yml
@@ -0,0 +1,4 @@
+author: "Birdtalon"
+delete-after: True
+changes:
+ - code_imp: "Starts refactoring some vars on xenomorph class"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4906.yml b/html/changelogs/AutoChangeLog-pr-4906.yml
new file mode 100644
index 000000000000..4b058bcd6a76
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4906.yml
@@ -0,0 +1,4 @@
+author: "SpartanBobby"
+delete-after: True
+changes:
+ - maptweak: "fixes broken sidewalk on bigred"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-4910.yml b/html/changelogs/AutoChangeLog-pr-4910.yml
new file mode 100644
index 000000000000..dbc366c56510
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4910.yml
@@ -0,0 +1,4 @@
+author: "Ediblebomb"
+delete-after: True
+changes:
+ - qol: "Changed \"Subject is brain-dead.\" to \"Subject has taken extreme amounts of brain damage.\" when scanning somebody with 100 brain damage."
\ No newline at end of file
diff --git a/html/changelogs/archive/2023-11.yml b/html/changelogs/archive/2023-11.yml
index 728ad07e8a98..f72503ae13eb 100644
--- a/html/changelogs/archive/2023-11.yml
+++ b/html/changelogs/archive/2023-11.yml
@@ -152,3 +152,27 @@
- rscadd: You can now label crate with package wrap, which will also be shown during
overwatch supply drop alert.
- mapadd: Added more packaging wrap to Requisitions.
+2023-11-10:
+ Drathek:
+ - bugfix: Fixed fax template images in CDN mode
+ - bugfix: Fixed imaginary friend merge ability preventing hearing if ghost ears
+ are set to only nearby.
+ - bugfix: Fixed imaginary friend hide ability not updating its icons.
+ MorrowWolf:
+ - bugfix: Fixed Pumpkins appearing past season.
+ MrDas:
+ - bugfix: You can no longer see through solid rear drop ship doors.
+ - code_imp: Moved filler turf logic from almayer airlocks to its parent door.
+ SpartanBobby:
+ - maptweak: fixes conflicting tiles on USS Almayer squad bunks
+ - maptweak: updates multiple bedrooms and closet area detailing
+2023-11-11:
+ QuickLode:
+ - rscadd: SUPERLIGHT armor category.
+ - balance: M4 Synthetic Armor slows by 10% to justify having 1 extra storage slot.
+ - spellcheck: Clarifies M4 Synthetic Armor description that it does not have any
+ armor whatsoever.
+2023-11-12:
+ SpartanBobby Tophatpenguin:
+ - maptweak: redetails a room on the upper deck of the USS Almayer, places a few
+ L42As in this room
diff --git a/html/images/ColonialSpaceGruntsEZ.png b/html/images/ColonialSpaceGruntsEZ.png
new file mode 100644
index 000000000000..7db4ca5ba768
Binary files /dev/null and b/html/images/ColonialSpaceGruntsEZ.png differ
diff --git a/icons/mob/screen_ghost.dmi b/icons/mob/screen_ghost.dmi
index 195cf31e3689..3fedae4c80b1 100644
Binary files a/icons/mob/screen_ghost.dmi and b/icons/mob/screen_ghost.dmi differ
diff --git a/icons/obj/items/bedrolls.dmi b/icons/obj/items/bedrolls.dmi
new file mode 100644
index 000000000000..c36e07002a3d
Binary files /dev/null and b/icons/obj/items/bedrolls.dmi differ
diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
index 652b4df3bdd3..e0c625805375 100644
--- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
+++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm
@@ -23,8 +23,9 @@
},
/area/bigredv2/outside/c)
"ag" = (
-/turf/open/mars_cave{
- icon_state = "mars_dirt_4"
+/turf/open/floor{
+ dir = 8;
+ icon_state = "asteroidwarning"
},
/area/bigredv2/outside/e)
"ah" = (
@@ -38,13 +39,12 @@
/area/bigredv2/outside/e)
"aj" = (
/turf/open/mars{
- icon_state = "mars_dirt_11"
+ icon_state = "mars_dirt_12"
},
/area/bigredv2/outside/e)
"ak" = (
-/turf/open/floor{
- dir = 8;
- icon_state = "asteroidwarning"
+/turf/open/mars{
+ icon_state = "mars_dirt_11"
},
/area/bigredv2/outside/e)
"al" = (
@@ -54,8 +54,8 @@
},
/area/bigredv2/outside/e)
"am" = (
-/turf/open/mars{
- icon_state = "mars_dirt_12"
+/turf/open/mars_cave{
+ icon_state = "mars_dirt_4"
},
/area/bigredv2/outside/e)
"an" = (
@@ -2147,8 +2147,8 @@ Ha
dq
"}
(20,1,1) = {"
-aj
-ag
+ai
+at
aA
dX
dX
@@ -2175,7 +2175,7 @@ PR
"}
(21,1,1) = {"
ak
-ak
+am
aA
aG
dX
@@ -2201,9 +2201,9 @@ Ha
PR
"}
(22,1,1) = {"
-al
-al
-aA
+ag
+ag
+aG
aG
dX
ap
@@ -2228,9 +2228,9 @@ Ha
PR
"}
(23,1,1) = {"
-am
-ag
-aA
+al
+al
+aG
aG
aG
ap
@@ -2255,8 +2255,8 @@ Ha
dq
"}
(24,1,1) = {"
-ai
-at
+aj
+am
aA
aG
aG
diff --git a/maps/map_files/LV624/hydro/30.destroyed.dmm b/maps/map_files/LV624/hydro/30.destroyed.dmm
index 84e9ebb5c814..09eb12287a58 100644
--- a/maps/map_files/LV624/hydro/30.destroyed.dmm
+++ b/maps/map_files/LV624/hydro/30.destroyed.dmm
@@ -164,8 +164,8 @@
/area/lv624/lazarus/hydroponics)
"mK" = (
/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth{
- desc = "A modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, offering protection and storage while not restricting movement. This set seems damaged...";
- name = "damaged M4 synthetic PMC armor";
+ desc = "A serious modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, with every armor insert removed. It's designed with the idea of a high speed lifesaver in mind. This set seems damaged...";
+ name = "damaged M4 Synthetic PMC armor";
pixel_x = -5;
pixel_y = -5
},
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index a37cd9d07230..e858c128f1d7 100644
--- a/maps/map_files/USS_Almayer/USS_Almayer.dmm
+++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm
@@ -790,7 +790,7 @@
"acE" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/north2)
"acF" = (
@@ -918,7 +918,7 @@
"acT" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/north2)
"acU" = (
@@ -1177,11 +1177,14 @@
},
/area/almayer/lifeboat_pumps/north1)
"adQ" = (
-/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
icon_state = "mono"
},
-/area/almayer/lifeboat_pumps/north1)
+/area/almayer/lifeboat_pumps/north2)
"adR" = (
/obj/structure/machinery/door/airlock/almayer/generic{
access_modified = 1;
@@ -1211,11 +1214,12 @@
},
/area/almayer/hallways/aft_hallway)
"adZ" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/almayer{
- icon_state = "mono"
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
},
-/area/almayer/lifeboat_pumps/north1)
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/north2)
"aea" = (
/obj/structure/machinery/light{
dir = 1
@@ -1580,6 +1584,10 @@
density = 0;
pixel_y = 17
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
/turf/open/floor/almayer,
/area/almayer/hull/upper_hull/u_f_s)
"afd" = (
@@ -3060,6 +3068,10 @@
/obj/structure/machinery/light{
dir = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
@@ -3336,21 +3348,22 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/starboard_garden)
"alb" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/living/commandbunks)
+"alc" = (
/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 4;
+ pixel_x = 11
},
/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ pixel_x = 28
},
-/area/almayer/living/commandbunks)
-"alc" = (
-/obj/structure/toilet{
- dir = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
},
/turf/open/floor/almayer{
icon_state = "dark_sterile"
@@ -6144,7 +6157,7 @@
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/command/lifeboat)
"atZ" = (
@@ -8939,6 +8952,14 @@
icon_state = "orangecorner"
},
/area/almayer/command/telecomms)
+"aDc" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
"aDe" = (
/obj/structure/machinery/light{
dir = 8
@@ -11229,7 +11250,7 @@
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/command/lifeboat)
"aNi" = (
@@ -12638,11 +12659,9 @@
/area/almayer/living/basketball)
"aTV" = (
/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ dir = 4
},
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
"aTW" = (
/obj/structure/bed/chair{
@@ -13182,9 +13201,7 @@
pixel_x = -6;
pixel_y = -10
},
-/turf/open/floor/almayer{
- icon_state = "plate"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/living/captain_mess)
"aWD" = (
/obj/structure/window/framed/almayer,
@@ -14800,6 +14817,16 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/lower_hull/l_m_p)
+"bfe" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
"bfl" = (
/turf/open/floor/almayer{
dir = 5;
@@ -19931,6 +19958,16 @@
/obj/docking_port/stationary/marine_dropship/almayer_hangar_1,
/turf/open/floor/plating,
/area/almayer/hallways/hangar)
+"bGa" = (
+/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/hull/upper_hull/u_m_s)
"bGb" = (
/turf/closed/wall/almayer,
/area/almayer/hallways/port_hallway)
@@ -20549,8 +20586,11 @@
unacidable = 1;
unslashable = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "dark_sterile"
},
/area/almayer/living/auxiliary_officer_office)
"bII" = (
@@ -22639,9 +22679,7 @@
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/airoom)
"bRr" = (
/obj/structure/machinery/fuelcell_recycler,
@@ -23386,6 +23424,10 @@
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"
},
@@ -26493,41 +26535,14 @@
},
/area/almayer/hull/upper_hull/u_a_s)
"ckE" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3.3;
- pixel_y = 4
- },
-/obj/structure/bed{
- can_buckle = 0
- },
-/obj/structure/bed{
- buckling_y = 13;
- layer = 3.5;
- pixel_y = 13
- },
-/obj/item/bedsheet/yellow{
- layer = 3.2
- },
-/obj/item/bedsheet/yellow{
- pixel_y = 13
- },
-/obj/structure/sign/safety/bathunisex{
- pixel_x = -16;
- pixel_y = 8
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
},
-/obj/item/toy/plush/barricade,
-/obj{
- name = "---Merge conflict marker---"
+/turf/open/floor/almayer{
+ icon_state = "mono"
},
-/obj/structure/pipes/standard/simple/hidden/supply,
-/turf/open/floor/almayer,
-/area/almayer/living/briefing)
+/area/almayer/lifeboat_pumps/north1)
"ckI" = (
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -27869,8 +27884,8 @@
/area/almayer/shipboard/brig/execution)
"czG" = (
/obj/structure/machinery/recharge_station,
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
+/turf/open/floor/almayer{
+ icon_state = "cargo"
},
/area/almayer/command/airoom)
"czJ" = (
@@ -29652,6 +29667,14 @@
icon_state = "orange"
},
/area/almayer/engineering/engineering_workshop/hangar)
+"djN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/upper_engineering/port)
"djQ" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -29740,9 +29763,7 @@
dir = 2
},
/obj/item/clothing/mask/cigarette/weed,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
"dll" = (
/obj/structure/surface/table/almayer,
@@ -29867,6 +29888,10 @@
/obj/structure/machinery/camera/autoname/almayer{
name = "ship-grade camera"
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
dir = 1;
icon_state = "red"
@@ -30164,6 +30189,12 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/cryo)
+"dtv" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"dtH" = (
/obj/structure/bed/chair/comfy{
dir = 8
@@ -31327,6 +31358,13 @@
/area/almayer/shipboard/brig/main_office)
"dSn" = (
/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
@@ -31684,6 +31722,17 @@
icon_state = "orange"
},
/area/almayer/engineering/upper_engineering)
+"dZN" = (
+/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/hull/upper_hull/u_m_s)
"eaf" = (
/obj/structure/machinery/cm_vending/clothing/military_police{
density = 0;
@@ -31733,7 +31782,7 @@
"eaX" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
"ebd" = (
@@ -31904,13 +31953,19 @@
pixel_x = 8;
pixel_y = -32
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
/area/almayer/command/lifeboat)
"edM" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/almayer,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
/area/almayer/hallways/vehiclehangar)
"eed" = (
/turf/open/floor/almayer{
@@ -32202,15 +32257,13 @@
},
/area/almayer/medical/containment/cell)
"eiH" = (
-/obj/structure/sink{
- pixel_y = 24
- },
/obj/structure/machinery/light{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/structure/toilet{
+ dir = 4
},
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
"eiK" = (
/obj/structure/bed/chair{
@@ -32844,7 +32897,7 @@
"euY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
"eva" = (
@@ -34792,9 +34845,7 @@
/obj/structure/machinery/door/window/tinted{
dir = 1
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
"fnZ" = (
/obj/structure/machinery/portable_atmospherics/canister/air,
@@ -34916,6 +34967,12 @@
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliason)
+"fqg" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/lifeboat_pumps/south2)
"fqu" = (
/obj/structure/largecrate/random/barrel/red,
/turf/open/floor/almayer,
@@ -36351,6 +36408,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/hallways/aft_hallway)
+"fXM" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"fXN" = (
/obj/effect/landmark/start/marine/delta,
/obj/effect/landmark/late_join/delta,
@@ -36837,19 +36900,12 @@
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/upper_hull/u_m_p)
"ghX" = (
-/obj/structure/window/reinforced/tinted{
- pixel_y = -8
- },
/obj/structure/machinery/shower{
dir = 8
},
-/obj/structure/machinery/door/window/tinted{
- dir = 8
- },
/obj/item/toy/inflatable_duck,
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
"gio" = (
/obj/structure/closet/emcloset,
@@ -37462,6 +37518,9 @@
/area/almayer/living/basketball)
"gwu" = (
/obj/structure/machinery/light,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out"
+ },
/turf/open/floor/almayer{
icon_state = "red"
},
@@ -37881,6 +37940,10 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 10
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
/turf/open/floor/almayer,
/area/almayer/hull/upper_hull/u_f_p)
"gDW" = (
@@ -37937,12 +38000,12 @@
},
/obj/structure/surface/table/woodentable/fancy,
/obj/structure/machinery/door_control{
+ id = "cl_evac";
+ name = "Evac Pod Door Control";
+ normaldoorcontrol = 1;
pixel_x = -5;
pixel_y = 2;
- req_access_txt = "200";
- name = "Evac Pod Door Control";
- id = "cl_evac";
- normaldoorcontrol = 1
+ req_access_txt = "200"
},
/turf/open/floor/carpet,
/area/almayer/command/corporateliason)
@@ -39215,6 +39278,10 @@
dir = 1;
name = "ship-grade camera"
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
icon_state = "red"
},
@@ -39377,6 +39444,13 @@
},
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
+"hiN" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"hiQ" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 8
@@ -39599,6 +39673,18 @@
icon_state = "sterile_green"
},
/area/almayer/medical/hydroponics)
+"hnE" = (
+/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/hull/upper_hull/u_m_s)
"hnV" = (
/obj/structure/machinery/light,
/turf/open/floor/almayer,
@@ -41117,6 +41203,12 @@
icon_state = "plate"
},
/area/almayer/hull/upper_hull/u_a_s)
+"hWX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
"hXb" = (
/turf/open/floor/almayer{
dir = 1;
@@ -41154,6 +41246,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/shipboard/brig/cic_hallway)
+"hXD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south1)
"hXS" = (
/obj/structure/sign/safety/water{
pixel_x = 8;
@@ -42206,6 +42307,16 @@
},
/turf/open/floor/plating,
/area/almayer/hull/lower_hull/l_f_p)
+"iuw" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 9;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
"iuy" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -42240,7 +42351,7 @@
name = "ship-grade camera"
},
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/hull/upper_hull/u_f_s)
"ivf" = (
@@ -42624,6 +42735,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/lower_hull/l_a_s)
+"iDK" = (
+/obj/structure/bed/chair{
+ dir = 8;
+ pixel_y = 3
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
"iDN" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -43792,6 +43912,10 @@
/obj/structure/machinery/light{
dir = 8
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
dir = 9;
icon_state = "red"
@@ -44033,8 +44157,12 @@
/obj/structure/mirror{
pixel_x = 29
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
- icon_state = "sterile"
+ icon_state = "dark_sterile"
},
/area/almayer/living/captain_mess)
"jgw" = (
@@ -44479,8 +44607,8 @@
pixel_y = 5
},
/obj/item/folder/black{
- pixel_y = -3;
- pixel_x = 7
+ pixel_x = 7;
+ pixel_y = -3
},
/turf/open/floor/almayer{
icon_state = "plate"
@@ -45843,11 +45971,25 @@
icon_state = "plate"
},
/area/almayer/living/offices)
+"jWC" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
"jWH" = (
/obj/structure/machinery/power/apc/almayer/hardened{
cell_type = /obj/item/cell/hyper;
dir = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
icon_state = "mono"
},
@@ -45883,7 +46025,7 @@
"jXW" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/command/lifeboat)
"jXY" = (
@@ -49827,6 +49969,13 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/starboard_hallway)
+"lDj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
"lDJ" = (
/obj/structure/sign/safety/distribution_pipes{
pixel_x = -17
@@ -50457,6 +50606,13 @@
icon_state = "silver"
},
/area/almayer/command/securestorage)
+"lPW" = (
+/obj/structure/surface/table/almayer,
+/obj/item/weapon/gun/rifle/m41a,
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hull/upper_hull/u_m_s)
"lQj" = (
/obj/structure/machinery/door_control{
id = "InnerShutter";
@@ -50856,6 +51012,16 @@
icon_state = "greencorner"
},
/area/almayer/hallways/aft_hallway)
+"mcl" = (
+/obj/structure/sign/safety/ladder{
+ pixel_x = -16
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/vehiclehangar)
"mcL" = (
/obj/structure/machinery/vending/snack,
/obj/structure/sign/safety/maint{
@@ -51722,6 +51888,15 @@
icon_state = "bluecorner"
},
/area/almayer/squads/delta)
+"mvH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "mono"
+ },
+/area/almayer/lifeboat_pumps/south2)
"mvI" = (
/obj/structure/machinery/camera/autoname/almayer{
dir = 4;
@@ -51858,6 +52033,20 @@
icon_state = "emerald"
},
/area/almayer/squads/charlie)
+"mzl" = (
+/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/hull/upper_hull/u_m_s)
"mzo" = (
/turf/closed/wall/almayer,
/area/almayer/hull/lower_hull/l_f_p)
@@ -52008,6 +52197,10 @@
},
/turf/open/floor/almayer,
/area/almayer/living/chapel)
+"mCe" = (
+/obj/structure/largecrate/supply/weapons/pistols,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
"mCo" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -52236,7 +52429,7 @@
"mIA" = (
/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south2)
"mIB" = (
@@ -52742,6 +52935,13 @@
icon_state = "test_floor4"
},
/area/almayer/hallways/starboard_hallway)
+"mRU" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
"mRW" = (
/turf/open/floor/almayer/research/containment/corner1,
/area/almayer/medical/containment/cell/cl)
@@ -53157,8 +53357,11 @@
/obj/structure/machinery/light/small{
dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
"naR" = (
@@ -53723,10 +53926,11 @@
},
/area/almayer/command/securestorage)
"nna" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+ icon_state = "cargo"
},
-/area/almayer/living/port_emb)
+/area/almayer/hull/upper_hull/u_f_s)
"nnc" = (
/obj/structure/largecrate/random/case/double,
/turf/open/floor/almayer{
@@ -53855,21 +54059,12 @@
},
/area/almayer/medical/containment)
"npB" = (
-/obj/structure/sink{
- dir = 1;
- pixel_y = -10
- },
-/obj/structure/pipes/vents/scrubber{
- dir = 1
- },
-/obj/structure/surface/rack{
- density = 0;
- pixel_x = 26
- },
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
},
-/area/almayer/living/port_emb)
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_s)
"nqx" = (
/obj/structure/pipes/standard/manifold/hidden/supply,
/turf/open/floor/plating/plating_catwalk,
@@ -54359,6 +54554,9 @@
/obj/structure/machinery/light{
dir = 8
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
/turf/open/floor/almayer{
dir = 10;
icon_state = "red"
@@ -54946,51 +55144,15 @@
},
/area/almayer/hull/lower_hull/l_m_s)
"nMM" = (
-/obj/item/bedsheet/blue{
- layer = 3.2
- },
-/obj/item/bedsheet/blue{
- pixel_y = 13
- },
-/obj/item/toy/plush/therapy/red{
- desc = "A USCM approved plush doll. It's not soft and hardly comforting!";
- force = 15;
- layer = 4.1;
- name = "Sergeant Huggs";
- pixel_y = 15;
- throwforce = 15
- },
-/obj/item/clothing/head/cmcap{
- layer = 4.1;
- pixel_x = -1;
- pixel_y = 22
- },
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3.3;
- pixel_y = 4
- },
-/obj/structure/bed{
- can_buckle = 0
- },
-/obj/structure/bed{
- buckling_y = 13;
- layer = 3.5;
- pixel_y = 13
- },
-/obj{
- name = "---Merge conflict marker---"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/bed/chair/comfy/charlie,
-/turf/open/floor/almayer{
- icon_state = "emeraldfull"
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 2
},
-/area/almayer/living/briefing)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
"nMV" = (
/obj/structure/machinery/cm_vending/sorted/medical/wall_med{
pixel_y = 25
@@ -56072,12 +56234,16 @@
},
/area/almayer/shipboard/brig/execution)
"olk" = (
-/obj/structure/machinery/door/airlock/almayer/generic{
- name = "\improper Bathroom"
- },
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 2
+ },
+/obj/structure/machinery/door/airlock/almayer/generic{
+ name = "\improper Bathroom"
+ },
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
@@ -56572,6 +56738,36 @@
icon_state = "ai_floors"
},
/area/almayer/command/airoom)
+"ouu" = (
+/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/hull/upper_hull/u_m_s)
"ouB" = (
/obj/structure/bed/sofa/vert/grey/bot,
/turf/open/floor/almayer,
@@ -57202,6 +57398,15 @@
"oIB" = (
/turf/closed/wall/almayer,
/area/almayer/command/combat_correspondent)
+"oIY" = (
+/obj/structure/machinery/cryopod/right{
+ layer = 3.1;
+ pixel_y = 13
+ },
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/command/airoom)
"oJp" = (
/obj/structure/pipes/standard/manifold/hidden/supply{
dir = 1
@@ -58152,8 +58357,11 @@
/obj/structure/machinery/light/small{
dir = 8
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
"pfH" = (
@@ -59359,6 +59567,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_medbay)
+"pLJ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
"pLO" = (
/obj/structure/machinery/door/poddoor/shutters/almayer{
dir = 4;
@@ -59438,6 +59652,14 @@
/obj/structure/largecrate/random/case/double,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/lower_hull/l_m_p)
+"pNK" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/living/auxiliary_officer_office)
"pNM" = (
/obj/structure/platform{
dir = 4
@@ -59546,6 +59768,10 @@
/area/almayer/hull/upper_hull/u_a_s)
"pPF" = (
/obj/structure/machinery/power/apc/almayer/hardened,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
icon_state = "mono"
},
@@ -59579,6 +59805,9 @@
pixel_x = 23;
specialfunctions = 4
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
@@ -59766,6 +59995,10 @@
/area/almayer/command/computerlab)
"pUe" = (
/obj/structure/machinery/power/apc/almayer/hardened,
+/obj/effect/decal/warning_stripes{
+ icon_state = "SE-out";
+ pixel_x = 1
+ },
/turf/open/floor/almayer{
icon_state = "mono"
},
@@ -59793,6 +60026,15 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/upper_hull/u_m_p)
+"pUl" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/hallways/vehiclehangar)
"pUp" = (
/obj/item/device/radio/intercom{
freerange = 1;
@@ -60654,6 +60896,15 @@
/obj/effect/landmark/late_join/charlie,
/turf/open/floor/plating/plating_catwalk,
/area/almayer/squads/charlie)
+"qkj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
"qkn" = (
/obj/structure/sign/safety/maint{
pixel_x = -17
@@ -60949,8 +61200,10 @@
/area/almayer/medical/chemistry)
"qpU" = (
/obj/structure/flora/pottedplant{
- icon_state = "pottedplant_22"
+ icon_state = "pottedplant_22";
+ pixel_y = 12
},
+/obj/structure/surface/table/almayer,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -61073,7 +61326,7 @@
"qtR" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/command/lifeboat)
"qtS" = (
@@ -61346,6 +61599,13 @@
icon_state = "plating"
},
/area/almayer/hallways/vehiclehangar)
+"qyH" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/command/lifeboat)
"qyJ" = (
/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun,
/turf/open/floor/almayer{
@@ -61454,16 +61714,13 @@
/turf/open/floor/almayer,
/area/almayer/living/briefing)
"qCg" = (
-/obj/structure/pipes/vents/pump,
/obj/structure/mirror{
pixel_y = 32
},
/obj/structure/sink{
pixel_y = 24
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
"qCi" = (
/obj/structure/pipes/standard/simple/hidden/supply{
@@ -62126,6 +62383,16 @@
icon_state = "mono"
},
/area/almayer/lifeboat_pumps/south1)
+"qQL" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
+ },
+/area/almayer/engineering/upper_engineering/port)
"qQM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -63483,8 +63750,13 @@
/turf/open/floor/almayer,
/area/almayer/command/computerlab)
"rsW" = (
-/turf/open/floor/prison{
- icon_state = "kitchen"
+/obj/structure/pipes/vents/pump,
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
"rsY" = (
@@ -63685,9 +63957,7 @@
"rzf" = (
/obj/effect/landmark/late_join/working_joe,
/obj/effect/landmark/start/working_joe,
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/airoom)
"rzj" = (
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -63731,15 +64001,11 @@
},
/area/almayer/living/briefing)
"rAv" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/structure/machinery/door/window/tinted{
+/obj/structure/machinery/shower{
dir = 8
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
- },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cells)
"rAx" = (
/obj/structure/disposalpipe/junction{
@@ -64710,11 +64976,21 @@
/area/almayer/command/computerlab)
"rUB" = (
/obj/structure/pipes/vents/pump,
+/obj/item/tool/soap,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/warning_stripes{
+ icon_state = "W"
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 1
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
/obj/structure/mirror{
pixel_y = 32
},
-/obj/item/tool/soap,
-/obj/effect/decal/cleanable/blood,
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
@@ -64754,6 +65030,14 @@
},
/turf/open/floor/plating/plating_catwalk,
/area/almayer/shipboard/brig/cic_hallway)
+"rWF" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/command/lifeboat)
"rWL" = (
/obj/structure/barricade/metal,
/turf/open/floor/almayer{
@@ -64860,6 +65144,14 @@
icon_state = "plate"
},
/area/almayer/living/offices/flight)
+"rYZ" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/vehiclehangar)
"rZz" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 5
@@ -65334,6 +65626,9 @@
/obj/structure/machinery/light/small{
dir = 8
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
/turf/open/floor/almayer{
dir = 10;
icon_state = "orange"
@@ -65492,6 +65787,15 @@
/area/almayer/squads/delta)
"soa" = (
/obj/structure/pipes/standard/simple/hidden/supply,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 1;
+ pixel_y = 1
+ },
/obj/structure/machinery/door/airlock/almayer/generic{
dir = 1;
name = "Bathroom"
@@ -65823,11 +66127,15 @@
},
/area/almayer/command/lifeboat)
"svp" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/almayer{
- icon_state = "mono"
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/area/almayer/lifeboat_pumps/south1)
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
"swn" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -66554,6 +66862,15 @@
icon_state = "orange"
},
/area/almayer/squads/bravo)
+"sNx" = (
+/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/hull/upper_hull/u_m_s)
"sNz" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -67228,6 +67545,19 @@
icon_state = "test_floor4"
},
/area/almayer/medical/containment/cell)
+"tbC" = (
+/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/hull/upper_hull/u_m_s)
"tbD" = (
/obj/structure/ladder{
height = 2;
@@ -67379,6 +67709,9 @@
/obj/structure/machinery/light/small{
dir = 1
},
+/obj/structure/largecrate/random/secure{
+ pixel_x = -5
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -67591,6 +67924,10 @@
pixel_x = -2;
pixel_y = 8
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "SW-out";
+ pixel_x = -1
+ },
/turf/open/floor/almayer{
dir = 6;
icon_state = "orange"
@@ -67999,6 +68336,10 @@
/obj/structure/machinery/light{
dir = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
dir = 1;
icon_state = "red"
@@ -68017,6 +68358,61 @@
/obj/structure/window/framed/almayer/hull,
/turf/open/floor/plating,
/area/almayer/lifeboat_pumps/south1)
+"trg" = (
+/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/hull/upper_hull/u_m_s)
"trB" = (
/turf/open/floor/almayer{
dir = 10;
@@ -68450,7 +68846,7 @@
"tAh" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/port)
"tAi" = (
@@ -68584,6 +68980,8 @@
/obj/item/tool/weldpack{
pixel_y = 15
},
+/obj/structure/surface/table/almayer,
+/obj/item/clothing/head/welding,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -68858,6 +69256,11 @@
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_x = 2;
+ pixel_y = 2
+ },
/turf/open/floor/plating/plating_catwalk,
/area/almayer/hull/upper_hull/u_f_p)
"tJp" = (
@@ -69124,7 +69527,9 @@
},
/area/almayer/hallways/port_hallway)
"tQE" = (
-/obj/item/clothing/head/welding,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 13
+ },
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -69233,8 +69638,8 @@
pixel_y = 12
},
/obj/item/paper_bin/uscm{
- pixel_y = 6;
- pixel_x = 6
+ pixel_x = 6;
+ pixel_y = 6
},
/obj/item/tool/pen{
pixel_x = 4;
@@ -69414,6 +69819,13 @@
icon_state = "plate"
},
/area/almayer/shipboard/brig/cryo)
+"tXz" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
+ },
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hallways/vehiclehangar)
"tXM" = (
/obj/structure/pipes/vents/pump{
dir = 8
@@ -69472,6 +69884,12 @@
icon_state = "dark_sterile"
},
/area/almayer/medical/lower_medical_lobby)
+"tYv" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
+ },
+/area/almayer/hull/upper_hull/u_f_p)
"tYw" = (
/obj/effect/decal/medical_decals{
icon_state = "triagedecalbottomleft";
@@ -69650,7 +70068,10 @@
/area/almayer/command/computerlab)
"uaZ" = (
/obj/structure/surface/table/almayer,
-/obj/item/weapon/gun/rifle/m41a,
+/obj/item/weapon/gun/rifle/l42a{
+ pixel_y = 6
+ },
+/obj/item/weapon/gun/rifle/l42a,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -70168,6 +70589,10 @@
cell_type = /obj/item/cell/hyper;
dir = 1
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
/turf/open/floor/almayer{
icon_state = "mono"
},
@@ -70190,13 +70615,16 @@
},
/area/almayer/hull/lower_hull/l_f_p)
"umY" = (
-/obj/structure/pipes/standard/manifold/hidden/supply{
- dir = 8
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
},
-/turf/open/floor/almayer{
- icon_state = "dark_sterile"
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_x = -1;
+ pixel_y = 2
},
-/area/almayer/living/port_emb)
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_f_s)
"unh" = (
/obj/structure/surface/table/almayer,
/obj/item/storage/firstaid/o2,
@@ -70637,11 +71065,13 @@
/turf/open/floor/wood/ship,
/area/almayer/living/basketball)
"uvk" = (
-/obj/structure/closet/firecloset,
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "orange"
},
-/area/almayer/lifeboat_pumps/south1)
+/area/almayer/engineering/upper_engineering/starboard)
"uvs" = (
/obj/structure/machinery/conveyor{
id = "lower_garbage"
@@ -70721,6 +71151,9 @@
/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"
},
@@ -71211,7 +71644,7 @@
"uGa" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "mono"
+ icon_state = "cargo"
},
/area/almayer/lifeboat_pumps/south2)
"uGc" = (
@@ -71264,7 +71697,11 @@
/area/almayer/hull/lower_hull/l_m_s)
"uGz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/largecrate/random/secure,
+/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"
},
@@ -71896,9 +72333,7 @@
/obj/structure/machinery/door/window/tinted{
dir = 2
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
"uVb" = (
/obj/structure/closet/toolcloset,
@@ -72116,6 +72551,15 @@
},
/turf/closed/wall/almayer,
/area/almayer/hallways/starboard_umbilical)
+"vba" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
+ },
+/area/almayer/engineering/upper_engineering/port)
"vbf" = (
/obj/structure/machinery/landinglight/ds2/delaytwo{
dir = 8
@@ -73783,6 +74227,16 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/almayer,
/area/almayer/living/port_emb)
+"vHl" = (
+/obj/structure/machinery/door/firedoor/border_only/almayer,
+/obj/effect/decal/warning_stripes{
+ icon_state = "NW-out";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ icon_state = "test_floor4"
+ },
+/area/almayer/command/lifeboat)
"vHq" = (
/obj/item/device/assembly/mousetrap/armed,
/obj/structure/pipes/standard/manifold/hidden/supply{
@@ -75653,6 +76107,13 @@
icon_state = "rasputin3"
},
/area/almayer/powered/agent)
+"wpj" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "E";
+ pixel_x = 2
+ },
+/turf/open/floor/almayer,
+/area/almayer/hull/upper_hull/u_f_p)
"wpw" = (
/obj/structure/bed/chair/comfy/ares{
dir = 1
@@ -75816,6 +76277,8 @@
/area/almayer/squads/bravo)
"wta" = (
/obj/structure/closet/crate,
+/obj/item/ammo_box/magazine/l42a,
+/obj/item/ammo_box/magazine/l42a,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -76085,9 +76548,7 @@
},
/obj/effect/landmark/late_join/working_joe,
/obj/effect/landmark/start/working_joe,
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/command/airoom)
"wyO" = (
/obj/structure/largecrate/random/barrel/red,
@@ -76578,6 +77039,15 @@
},
/turf/open/floor/plating,
/area/almayer/medical/containment)
+"wKS" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "S"
+ },
+/turf/open/floor/almayer{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
"wLi" = (
/obj/structure/machinery/door_control/airlock{
id = "s_engi";
@@ -76624,6 +77094,11 @@
dir = 1
},
/area/almayer/medical/containment/cell)
+"wLE" = (
+/obj/structure/surface/table/almayer,
+/obj/item/tool/weldingtool,
+/turf/open/floor/plating/plating_catwalk,
+/area/almayer/hull/upper_hull/u_m_s)
"wLG" = (
/obj/item/bedsheet/blue{
layer = 3.2
@@ -77206,6 +77681,14 @@
/obj/structure/machinery/light{
dir = 8
},
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/obj/effect/decal/warning_stripes{
+ icon_state = "S";
+ pixel_y = -1
+ },
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
@@ -77780,10 +78263,14 @@
/area/almayer/living/grunt_rnr)
"xjw" = (
/obj/structure/pipes/standard/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/open/floor/prison{
- icon_state = "kitchen"
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 2
+ },
+/turf/open/floor/almayer{
+ icon_state = "dark_sterile"
},
/area/almayer/engineering/upper_engineering/port)
"xjz" = (
@@ -78654,9 +79141,7 @@
/area/almayer/squads/req)
"xAC" = (
/obj/structure/surface/rack,
-/turf/open/floor/prison{
- icon_state = "kitchen"
- },
+/turf/open/floor/plating/plating_catwalk,
/area/almayer/engineering/upper_engineering/port)
"xAI" = (
/obj/structure/platform{
@@ -79058,7 +79543,7 @@
"xJn" = (
/obj/structure/closet/emcloset,
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "cargo"
},
/area/almayer/engineering/upper_engineering/starboard)
"xJC" = (
@@ -80210,6 +80695,17 @@
icon_state = "plate"
},
/area/almayer/hull/lower_hull/l_m_s)
+"yfQ" = (
+/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/hull/upper_hull/u_m_s)
"yfS" = (
/obj/structure/window/framed/almayer,
/obj/structure/machinery/door/firedoor/border_only/almayer{
@@ -80227,6 +80723,10 @@
},
/area/almayer/command/lifeboat)
"ygs" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "NE-out";
+ pixel_y = 1
+ },
/obj/structure/machinery/door/airlock/almayer/generic{
name = "\improper Bathroom"
},
@@ -80380,6 +80880,16 @@
icon_state = "cargo"
},
/area/almayer/hull/lower_hull/l_m_s)
+"ykD" = (
+/obj/effect/decal/warning_stripes{
+ icon_state = "N";
+ pixel_y = 1
+ },
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/almayer/command/lifeboat)
"ykF" = (
/obj/structure/machinery/cm_vending/sorted/tech/tool_storage,
/turf/open/floor/almayer{
@@ -80431,9 +80941,9 @@
},
/area/almayer/squads/delta)
"ylg" = (
-/obj/structure/machinery/cryopod,
-/turf/open/floor/almayer/no_build{
- icon_state = "ai_floors"
+/obj/structure/machinery/cryopod/right,
+/turf/open/floor/almayer{
+ icon_state = "cargo"
},
/area/almayer/command/airoom)
"ylJ" = (
@@ -93408,7 +93918,7 @@ poR
mGL
pNp
kcp
-bTS
+pNK
bIA
alU
uDn
@@ -93816,9 +94326,9 @@ bTS
lxo
qcy
kcp
-bAg
edM
-egq
+edM
+mcl
bLt
bXX
bKh
@@ -94019,9 +94529,9 @@ oQM
aqI
aqI
kcp
-bzA
-bBB
-bBB
+pUl
+tXz
+rYZ
bLu
bBB
bBB
@@ -98812,7 +99322,7 @@ vCO
vCO
vCO
jxB
-gpe
+wpj
gDq
tJo
bGr
@@ -99015,9 +99525,9 @@ wmT
jhW
mWD
jxB
-fGN
-dtN
-gpe
+hWX
+tYv
+mRU
xuB
gpe
xEF
@@ -99178,7 +99688,7 @@ aad
aai
aai
pCi
-lFb
+nMM
avl
avl
agj
@@ -99220,7 +99730,7 @@ aES
aES
aES
aES
-gpe
+lDj
uEv
gpe
xEF
@@ -99380,8 +99890,8 @@ aaa
aad
ahE
iuT
-naf
-lFb
+nna
+svp
avl
agj
agj
@@ -99583,8 +100093,8 @@ aaa
aad
ahE
afc
-avl
-lFb
+npB
+umY
avl
agj
yeo
@@ -104448,8 +104958,8 @@ bdH
bdH
aaC
abw
-adQ
-awW
+aee
+avd
acW
awW
auK
@@ -104507,8 +105017,8 @@ mlz
sOy
baw
sgU
-baw
-svp
+xVF
+njD
trb
aaC
bdH
@@ -104651,8 +105161,8 @@ bdH
aaa
aaY
abw
-adZ
-awW
+aec
+avd
acW
awW
avc
@@ -104710,8 +105220,8 @@ fDS
iLd
baw
sgU
-baw
-uvk
+xVF
+dLz
trb
aaC
bdH
@@ -104855,7 +105365,7 @@ aaa
aaY
abs
adq
-add
+ckE
ajI
add
fsU
@@ -104913,7 +105423,7 @@ qys
gBW
aJU
tiW
-aJU
+hXD
pgD
tQV
aaY
@@ -115309,7 +115819,7 @@ kxd
viu
nsY
iIP
-nna
+kxd
dDt
nsY
xiz
@@ -115512,8 +116022,8 @@ vHq
vvY
nsY
pPV
-umY
-npB
+bxC
+jiU
nsY
glr
mhl
@@ -115932,7 +116442,7 @@ aLJ
eBg
dAO
cEG
-ckE
+eBg
dYX
tBF
lBz
@@ -116573,7 +117083,7 @@ bJz
bdg
wLV
wLV
-nMM
+wLV
wLV
wLV
wNT
@@ -117655,7 +118165,7 @@ abg
caF
aar
aar
-tiM
+sNx
aar
aar
ael
@@ -117857,7 +118367,7 @@ bWs
abg
caF
aar
-nuY
+tQE
sTB
uaZ
bUA
@@ -118060,9 +118570,9 @@ acO
aJs
cbN
aar
-sTB
+mzl
aap
-aao
+iDK
vFb
ael
afH
@@ -118466,10 +118976,10 @@ acP
bUE
qFQ
aar
-aao
+ouu
aap
aao
-sTB
+yfQ
ael
afJ
agY
@@ -118669,10 +119179,10 @@ acG
abx
caF
aar
-aap
+mCe
aap
aao
-sTB
+yfQ
ael
afK
ahc
@@ -119075,7 +119585,7 @@ acG
abx
caF
aar
-tiM
+sNx
aar
aar
aar
@@ -119281,7 +119791,7 @@ aar
aao
aao
uGz
-uGz
+dZN
adO
afM
fpR
@@ -119481,10 +119991,10 @@ jSY
abx
hTy
aar
-wFm
-tQE
+trg
aao
-sTB
+aao
+bGa
adO
afN
ahh
@@ -119684,10 +120194,10 @@ acP
bUE
qFQ
aar
-aap
-aap
+wLE
+pLJ
aao
-fZF
+tbC
adO
afO
ahh
@@ -119888,9 +120398,9 @@ abg
ccf
aar
tDA
-aao
+lPW
aap
-fZF
+hnE
adO
jkj
ahh
@@ -121500,7 +122010,7 @@ aag
aag
abh
acx
-aeC
+adQ
ajs
aeC
wXh
@@ -121560,7 +122070,7 @@ eyG
kpo
vcE
kUV
-vcE
+mvH
rRq
uOi
aag
@@ -121703,7 +122213,7 @@ aah
aah
abi
acE
-aeA
+adZ
ajk
aeA
asY
@@ -121763,7 +122273,7 @@ deg
wLu
lJY
xVS
-lJY
+fqg
uGa
uyC
aah
@@ -121906,7 +122416,7 @@ bdH
bdH
abi
acT
-aeA
+adZ
ajk
aeA
atp
@@ -121966,7 +122476,7 @@ pfH
wlF
lJY
xVS
-lJY
+fqg
mIA
uyC
bdH
@@ -130882,7 +131392,7 @@ cxo
jWh
uUV
rsW
-rsW
+djN
fnQ
jWh
lbB
@@ -131084,7 +131594,7 @@ xct
cxo
jWh
dkS
-rsW
+vba
naQ
fnQ
jWh
@@ -131267,7 +131777,7 @@ ptK
dmQ
psm
psm
-eky
+qyH
arV
wZX
eky
@@ -131281,7 +131791,7 @@ aDQ
eky
wZX
arV
-eky
+dtv
vuv
vuv
cxo
@@ -131470,7 +131980,7 @@ dmQ
aeq
psm
aNe
-eky
+hiN
arV
wZX
eky
@@ -131484,7 +131994,7 @@ aHe
eky
wZX
arV
-eky
+fXM
aNe
vuv
ahb
@@ -131673,7 +132183,7 @@ dmQ
jXY
psm
atY
-aMT
+qkj
aMT
svl
pzJ
@@ -131687,7 +132197,7 @@ qDt
pzJ
sQO
aMT
-aMT
+rWF
atY
vuv
woM
@@ -131876,7 +132386,7 @@ dmQ
atD
psm
psm
-aRp
+vHl
aRp
jBX
akS
@@ -132306,7 +132816,7 @@ qMu
qMu
qMu
euY
-vME
+iuw
jHL
wOK
uIv
@@ -132475,7 +132985,7 @@ cuC
riJ
kHY
uhM
-fcP
+uvk
xJn
cuC
aag
@@ -132509,7 +133019,7 @@ aag
aag
bYn
tAh
-thV
+bfe
rDb
qjV
rID
@@ -132712,7 +133222,7 @@ mNX
qOk
bYn
bYn
-tjj
+qQL
kHS
rID
bYn
@@ -133909,7 +134419,7 @@ xVk
aad
jbq
qtR
-avu
+jWC
eky
eky
nJu
@@ -133917,7 +134427,7 @@ aNl
eky
eky
eky
-aMU
+aDc
qtR
jbq
ajZ
@@ -136142,7 +136652,7 @@ xVk
aad
jbq
aNe
-avu
+jWC
eky
eky
esT
@@ -136150,7 +136660,7 @@ nYE
orH
eky
eky
-aMU
+aDc
aNe
jbq
ajZ
@@ -136345,7 +136855,7 @@ xVk
aad
jbq
atY
-avu
+jWC
eky
eky
bAe
@@ -136353,7 +136863,7 @@ aBG
sGh
eky
eky
-aMU
+aDc
atY
jbq
ajZ
@@ -136548,7 +137058,7 @@ xVk
aad
aPw
qpU
-aqJ
+ykD
dqj
eky
xaS
@@ -136556,7 +137066,7 @@ ejt
mPf
eky
gUV
-aqp
+wKS
qpU
aPw
ajZ
@@ -139849,7 +140359,7 @@ lmz
daz
czG
ylg
-ylg
+oIY
daz
daz
daz